[FFmpeg-user] using ffmpeg , how to convert live rtp steam which has video encoded in VP8 and audio in iSAC to mpegts format

Maxim Kozlov rogat1y at gmail.com
Wed May 15 12:21:39 CEST 2013


2013/5/14 ravindra pai <ravindrapai34 at gmail.com>

> Hi,
>       I have a server which is sending audio and video stream on rtp(via
> udp) port. I want this stream to be input for ffmpeg and ffmpeg does
> transcoding of this to mpegts in real time.
>
> Can you guys please suggest a ffmpeg command for this?
>
> Thanks in advance,
> Ravindra
> _______________________________________________
> ffmpeg-user mailing list
> ffmpeg-user at ffmpeg.org
> http://ffmpeg.org/mailman/listinfo/ffmpeg-user
>

for example:
ffmpeg -i rtp://x.x.x.x:1234 -c:v libx264 -profile:v baseline -s 640x360
-vb 1024k -x264opts level=31:fps=25:vbv_maxrate=1024:vbv_bufsize=1024
-aspect 16:9 -q:v 0 -c:a libvo_aacenc -ab 128k -ar 44100 -ac 2 -f mpegts
udp://x.x.x.x:port


More information about the ffmpeg-user mailing list