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
.
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
.