Change frame rate without changing film speed/duration

11

1

I've made a mistake and I need to re-encode video from 30 fps to 24fps, while maintaining the same speed/duration.

Does anyone know how I might do this in FFMPEG?

I've tried changing the -r value and this changes the rate, but changes the video length.

Thanks

beek

Posted 2017-03-10T02:40:44.533

Reputation: 225

1Show the full command you used. – Gyan – 2017-03-10T05:01:41.257

Answers

13

To change the frame rate without modifying the total length of the video, FFmpeg has to duplicate or drop some frames. Unfortunately this process can turn a steady smooth movemen to become clumsy and unnatural in the video.

ffmpeg -i input.mov -r 24 -y output.mov

This method is very slow so be patient. The audio will remain the same, since length does not change.

You can also check this tool if your results are not what you expected: MVTools

Here is a thread that may be helpful Change framerate in ffmpeg without re-encoding

Joe

Posted 2017-03-10T02:40:44.533

Reputation: 523

4-sameq has been removed from ffmpeg a long time ago and never meant "same quality". For encoding with x264 use -crf instead. – llogan – 2017-03-10T06:52:40.720

1Also, without using a filter, ffmpeg does not interpolate frames. It either duplicates or drops them. – Gyan – 2017-03-10T13:17:38.493

0

This command won't change the video playback speed:

ffmpeg -i <input> -filter:v fps=fps=30 <output>

Worked well for reducing fps from 59.6 to 30.

kelin

Posted 2017-03-10T02:40:44.533

Reputation: 103