I'm new to writing Lua scripts in Wireshark, so maybe my question is stupid, but is it possible to write a Lua script that will export all audio/mpeg packets from a capture? I can do this manually in Wireshark by applying a display filter ( asked 02 Aug '11, 05:41 Jesper edited 02 Aug '11, 17:19 helloworld |
One Answer:
Yes, it's possible. See another post where Lua was used to extract the XML payload from TCP into a file. In your case, your tap would be defined as:
If your capture contains multiple audio/mpeg streams, you'd also have to modify that Lua to separate the streams into their own files (assuming that's detectable from your protocol). answered 02 Aug '11, 17:14 helloworld |