On 05/31/2011 04:17 PM, Bill Weinman wrote: > > Where I'm stuck is with RTP. I have the results from my RTSP SETUP > request, and I have video and audio frames, now I need to establish the > RTP session, create the streams, and send them to the server.
Given it is wowza you might better off using rtmp, if you still need rtsp the libavformat code should do that part for you: ffmpeg -i source -vcodec .... -f rtsp rtsp://path/to/server should work fine for your purpose. (in code what you have in libavformat/output-example.c should cover it. lu -- Luca Barbato Gentoo/linux http://dev.gentoo.org/~lu_zero _______________________________________________ libav-api mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-api
