ffmpeg converting m4s to mp4

I’m working on DASH, trying to optimize QoE for the end user. I had a video and encoded it using ffmpeg into different bitrates and everything is fine, and the video is playable using dash. What I want is to combine the received segments from the users into one m4s and convert that m4s to … Read more

What steps are needed to stream RTSP from FFmpeg?

You can use FFserver to stream a video using RTSP. Just change console syntax to something like this: Create a ffserver.config file (sample) where you declare HTTPPort, RTSPPort and SDP stream. Your config file could look like this (some important stuff might be missing): With such setup you can watch the stream with i.e. VLC … Read more

Meaning of ffmpeg output (tbc, tbn, tbr)

Well it’s all about time. FFMpeg uses in fact three different timestamps in different bases in order to work. tbn = the time base in AVStream that has come from the container tbc = the time base in AVCodecContext for the codec used for a particular stream tbr = tbr is guessed from the video stream and is … Read more