Reputation: 1494
If I have an mp4 with 30 fps, how do I re-encode it to 60 fps using ffmpg without making the movie speeding up faster (still looking normal)?
My ffmpeg
ffmpeg version 3.4.6-0ubuntu0.18.04.1 Copyright (c) 2000-2019 the FFmpeg developers
built with gcc 7 (Ubuntu 7.3.0-16ubuntu3)
Upvotes: 2
Views: 11215
Reputation: 133743
Use the -r
option:
ffmpeg -i input.mp4 -r 60 output.mp4
Or fps filter:
ffmpeg -i input.mp4 -vf fps=60 output.mp4
ffmpeg
will duplicate frames to convert from 30 to 60 fps, but it will still look normal.
Upvotes: 7