裁剪
ffmpeg -i in.map4 -ss 00:00:00 -t 10 out.ts
- -ss: 视频从什么时候开始裁剪
- -t 10 裁剪多长时间
合并
ffmpeg -f concat -i inputs.txt out.flv
- -f concat 文件进行拼接
- 文件列表存放在inputs.txt里
inputs.txt 内容file filename格式
eg:file ‘out.ts’
file 'out1.ts'
ffmpeg -i in.map4 -ss 00:00:00 -t 10 out.ts
ffmpeg -f concat -i inputs.txt out.flv
本文标题:ffmpeg裁剪与合并
本文链接:https://www.haomeiwen.com/subject/hwxpdctx.html
网友评论