Changes between Version 4 and Version 5 of How to speed up / slow down a video
- Timestamp:
- 08/16/2012 01:14:17 AM (9 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
How to speed up / slow down a video
v4 v5 6 6 }}} 7 7 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: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 an input of 4 to one that is sped up to 4x that (16 fps): 9 9 10 10 {{{ 11 11 ffmpeg -i Input.mp4 -r 16 -vf setpts=0.125*PTS -an Output.mp4 12 12 }}} 13 14 Or possibly by specifying the vcodec as "copy".15 13 16 14


