Changes between Version 12 and Version 13 of How to speed up / slow down a video
- Timestamp:
- Oct 31, 2017, 5:11:21 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
How to speed up / slow down a video
v12 v13 20 20 }}} 21 21 22 == Speeding up/slowing down audio == 22 == Smooth == 23 24 You can smooth out slow/fast video with the [http://ffmpeg.org/ffmpeg-filters.html#minterpolate minterpolate] video filter. This is also known as "motion interpolation" or "optical flow". 25 26 {{{ 27 ffmpeg -i input.mkv -filter "minterpolate='mi_mode=mci:mc_mode=aobmc:vsbmc=1:fps=120'" output.mkv 28 }}} 29 30 Other options include [https://github.com/slowmoVideo/slowmoVideo/ slowmoVideo] and [https://github.com/dthpham/butterflow Butterflow]. 31 32 = Speeding up/slowing down audio = 23 33 24 34 You can speed up or slow down audio with the [http://ffmpeg.org/ffmpeg-all.html#atempo atempo] audio filter. To double the speed of audio:
