Trim video in ffmpeg

Posted: | Updated: | Tags: ffmpeg til
ffmpeg -i input.mkv -ss 00:00:03 -t 00:00:08 -async 1 output.mkv
ArugmentDescription
-iSpecify input filename
-ssSeek start position
-tDuration after start position
-async 1Start of audio stream is synchronised

See these StackOverflow answers for a debate on various other methods of trimming a video with ffmpeg.


Related ramblings