Page 1 of 1

dumping raw MPEG2-TS ES not working with "select="

Posted: 08 Jun 2006 14:49
by padrino
I have a MPEG2-TS file that contains an elementary stream with a pid of 144 that I want to just dump to disk. The elementary stream is metadata that I need to process with another external application so I thought a duplicate line with select would do the trick however nothing is output no matter what I try. I guess one question is will VLC output unprocessed elementary streams if it does not understand them?

Code: Select all

#duplicate{dst=std{access=file,mux=raw,url=/testout},select="es=144",dst=rtp{sdp=rtsp://192.168.0.118:5554/test.sdp}}
I also tried mux=es and I changed the select line to try "novideo,noaudio" in the hopes it would pickup this just stream but everything I tried didn't output anything. Someone suggested I try es= 0-6 so I tried that as well, also tried to just disable the video es with "noes=0" but as with everything else it left it outputting nothing.

VLC sees the pid when opening the TS.

Code: Select all

[00000355] ts demuxer debug: * es pid=144 type=6 *unknown*
Does anyone have any ideas on how I might make this work with VLC, or another piece of software?

Thanks