Howto merge two avi files using ffmpeg?

心不动则不痛 提交于 2019-12-03 07:44:05

问题


I'm unable to merge two avi videos together. google is full of below examples:

cat file1.avi file2.avi file3.avi > video_draft.avi
after appending the data together using cat above, you need to re-index the draft movie like this:

mencoder video_draft.avi -o video_final.avi -forceidx -ovc copy -oac copy
Now you're video_final.avi file will be right to go.

but it doesn't work for me, the first video is converted and that's it.


回答1:


You should look into the concat demux and concat protocol that was added in ffmpeg 1.1. Assuming the codecs are the same you create a file (example mylist.txt):

file '/path/here/file1.avi'
file '/path/here/file2.avi'
file '/path/here/file3.avi'

Then pass that file to ffmpeg

ffmpeg -f concat -i mylist.txt -c copy video_draft.avi

You can use this command to make the list:

ls *.avi | while read each; do echo "file '$each'" >> mylist.txt; done

The linked page has more advanced examples for dealing with issue like different codecs/formats.




回答2:


you need to add -safe 0 for recent versions of ffmpeg, and it needs to be before the file list.

ffmpeg -f concat -safe 0 -I mylist.txt ...


来源:https://stackoverflow.com/questions/15186500/howto-merge-two-avi-files-using-ffmpeg

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!