ffmpeg

来源:互联网 发布:淘宝卖的衣服味道刺鼻 编辑:程序博客网 时间:2024/06/16 11:43

切割+转换分辨率

ffmpeg -i 1.mov -ss 开始时间 -t 结束时间 -b:v 200K -s 640x480 -acodec copy -vcodec msmpeg4 out.mov

合并

ffmpeg -y -f concat -i files.txt -c copy output.mov
其中files.txt的格式为:

file '片段1.mov'

file '片段2.mov'


音视频合并

ffmpeg -y -i in.mov -i ritd.mp3 -codec copy -shortest out.mov