美文网首页
Easiest way to cut a stream

Easiest way to cut a stream

作者: JaedenKil | 来源:发表于2018-04-17 10:49 被阅读6次

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

      本文链接:https://www.haomeiwen.com/subject/ufjukftx.html