Easiest way to cut a stream

It's easy to cut a stream using ffmpeg.
Command will be like this in windows:

ffmpeg.exe -i sourceFile.mkv -ss 00:00:00 -t 00:02:00 -async 1 -c copy targetFile.mkv

-ss means the start the cut;
-t means the duration of the targetFile.mkv.

你可能感兴趣的:(Easiest way to cut a stream)