Re: [Libav-user] mpeg-ts, rtp and output-example

2011-12-07 Thread david . weber
Hi, the format mpegts changes are right (fmt = av_guess_format("mpegts", NULL, NULL);). The problem is, that if you have the format MPEG-TS libav don't use rtp as output method. Try to open the stream in vlc with udp://192.168.1.2:9778. To output mpegts with rtp you have to do more than a

Re: [Libav-user] mpeg-ts, rtp and output-example

2011-12-05 Thread Steffen Ebersbach
Am 5.12.2011 23:36, schrieb david.we...@l-3com.com: I am attempting to write a mpeg-ts application. Step one would be getting an existing application working, so I can dissect the code. So, I first took output-example (and the latest release), and modified the av_guess_format to: fmt = av

Re: [Libav-user] mpeg-ts, rtp and output-example

2011-12-05 Thread david . weber
FYI, here are the VLC messages: main debug: processing request item rtp://192.168.1.2:9778 node Playlist skip 0 main debug: resyncing on rtp://192.168.1.2:9778 main debug: rtp://192.168.1.2:9778 is at 1 main debug: starting new item main debug: creating new input thread main debug: Creatin

[Libav-user] mpeg-ts, rtp and output-example

2011-12-05 Thread david . weber
I am attempting to write a mpeg-ts application. Step one would be getting an existing application working, so I can dissect the code. So, I first took output-example (and the latest release), and modified the av_guess_format to: fmt = av_guess_format("mpegts", NULL, NULL); I also mo