Changes between Version 14 and Version 15 of How to speed up / slow down a video
- Timestamp:
- Jan 6, 2019, 7:07:30 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
How to speed up / slow down a video
v14 v15 19 19 ffmpeg -i input.mkv -filter:v "setpts=2.0*PTS" output.mkv 20 20 }}} 21 22 As an alternative when a video needs to speed up to a certain frame rate, `-vsync drop` can be used. For example when the desired frame rate is 59.94 fps: 23 {{{ 24 ffmpeg -i input.mkv -c:v copy -vsync drop -r 59.94 output.mkv 25 }}} 26 With this command a 23.976fps video will be sped up 2.5 times and a 29.97fps video will be sped up 2 times. 21 27 22 28 == Smooth ==
