# How to cut part of a video with ffmpeg

Linux @ 03 November 2013

comes from superuser.com

ffmpeg -ss 00:00:30.0 -t 00:00:10.0 -i input.wmv -acodec copy -vcodec copy -async 1 output.wmv

that is
-ss : start time
-t : duration after the start

Leave a Reply

*