Changes between Version 2 and Version 3 of How to speed up / slow down a video
- Timestamp:
- 07/25/2012 08:15:53 PM (11 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
How to speed up / slow down a video
v2 v3 6 6 }}} 7 7 8 Note that this method will drop frames to achieve your desired speed. 8 Note that this method will drop frames to achieve your desired speed. You can avoid dropping frames by specifying a higher "output frame rate" than the input, for example, to go from 4 to 16 fps: 9 10 {{{ 11 ffmpeg -i Input.mp4 -r 16 -vf setpts=0.125*PTS -an Output.mp4 12 }}} 13 14 Or possibly by specifying the vcodec as "copy". 15 9 16 10 17 To slow down your video, you can type:


