Record mjpeg with ffmpeg

0

I want to record a mjpeg stream via ffmpeg, but as the framerate of the mjpeg is very unreliable the result video is at first to fast and the speed changes.

The source i used to test is: http://c-cam.uchicago.edu/mjpg/video.mjpg

Johni

Posted 2011-10-17T19:13:45.180

Reputation: 103

Have you tried the "-sameq" option from this question or the "-re" option from this other question? I've no idea if they work, but worth a shot...

– Mokubai – 2011-10-17T19:26:37.613

Answers

0

Try to adjust the bit-rate, and the tolerance setting (it's controlled by the -bt switch). it needs to be higher than the bitrate divided by the fps, as in:

tolerante > bitrate / fps

This script might be helpful.

CORE

Posted 2011-10-17T19:13:45.180

Reputation: 11