h264extractor icon indicating copy to clipboard operation
h264extractor copied to clipboard

can't work in Ubuntu wireshark

Open liyihuanx opened this issue 2 years ago • 1 comments

get the error message:

Lua: on packet 19377 Error during execution of Listener packet callback: /usr/share/wireshark/rtp_h264_extractor.lua:76: attempt to index upvalue 'fp' (a nil value)

liyihuanx avatar Aug 07 '23 07:08 liyihuanx

The extractor try to dump files in default directory. Seems it is unwritable, try to modify the code like this:

local fp = assert(io.open(os.getenv("HOME").."/dump.264", "wb"))

volvet avatar Nov 01 '23 02:11 volvet