Thursday, October 5, 2017

Trim a video

...with ffmpeg!

ffmpeg -i movie.mp4 -ss 00:00:03 -t 8 -async 1 cut.mp4
Easy peasy. Trims a video from second 3 for a length of 8 seconds. The -async 1 is optional... maybe it speeds it up with parallel processing?

Source link. Thanks!