Posted: . At: 11:07 AM. This was 3 years ago. Post ID: 15274
Page permalink. WordPress uses cookies, or tiny pieces of information stored on your computer, to verify who you are. There are cookies for logged in users and for commenters.
These cookies expire two weeks after they are set.


How to use FFmpeg to get a slow-motion video clip.


Making a slow-motion clip from a video can be very useful to show off what is happening in a certain scene.

The example below will make a slow-motion clip from a video file. This would be another very useful FFmpeg tip.

> ffmpeg -i qS_lu5dKo9A2qoNW.mp4 -c:v libvpx -b:v 3200k -filter:v "setpts=2.0*PTS" -ss 00:00:03 -t 6.9 -an -sn -copyts -threads 4 slowmotion.webm

This example will slow down the framerate.

> ffmpeg -i qS_lu5dKo9A2qoNW.mp4 -c:v libvpx -b:v 3200k -filter:v fps=15 -t 6 -an -sn -copyts -threads 4 horsie4.webm

Both are very useful video manipulation ideas. Below is a slow-motion example I created using FFmpeg, this worked out quite well.


Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.