Page 1 of 1

Transcoding using FFmpeg

PostPosted: Thu Jun 16, 2016 6:52 am
by mazen69
Dear All

I have a question about transcoding using FFmpeg from Dvblast.

The input is either rtp or udp and the output must be rtmp .

I need help . examples will be appreciated.

Thanks in advanced

Re: Transcoding using FFmpeg

PostPosted: Mon Oct 24, 2016 7:41 am
by ahmedramze
This example of using TV Headend with RTMP server transcoding using ffmpeg

idea its SAT==> LNB ===> MOI <===> RTMP Linux Server <====> Clients

Code: Select All Code
ffmpeg -re -y -i "http://192.168.1.188:9981/stream/channelid/2?ticket=72E96A4FAE08854FD3E0F0C8863C4F625AF5CCE2" -b 500k -maxrate 500k -bufsize 500k  -r 30  -s 800x600 -acodec libmp3lame  -ar 22100 -f flv "rtmp://127.0.0.1/live/6" >/dev/null &



if you see the line its for change bit rate from HD to 800x600 with 500k for video and 22k for audio.
may be the release of ffmpeg and installation option will be diffrent this done with UBUNTU and ffmpeg with HEVC and RTMP and H264 and mp3 & acc codec option installation.
you can find it by ffmpeg --h

and you can put your steam IP after -i option like -i "udp://224.1.1.1:1234"

any question please send email to [url]support@highspeedtelecom.net[/url] and our team will replay.

Regards