ffmpeg
合并视频
ffmpeg -f concat -i filelist.txt -c copy out.mkv
filelist.txt
内容如下, 需要加 file
,还要用单引号括起来,或者加选项 -safe 0
file '/home/a1.mkv' file '/home/a2.mkv' ...
转换格式
ffmpeg -i in.mpeg -q:a 0 -q:v 0 out.mkv
选项 | 说明 |
---|---|
-q:a 0 |
最高等级转换音频 |
-q:v 0 |
最高等级转换视频 |
分割视频
ffmpeg -i in.mp4 -ss 00:10:00 -t 00:30:40 -acodec copy -vcodec copy output.mp4
命令的结果是分割得到00:10:00 –> 00:40:40 的原格式视频片段
选项 | 说明 |
---|---|
-ss 00:10:00 |
从00:10:00开始分割 |
-t 00:30:40 |
分割时长00:30:40 |
-acodec copy |
音频与原格式相同 |
-vcodec copy |
视频与原格式相同 |
评论
Comments powered by Disqus