我无法将两个 avi 视频合并在一起。谷歌充满了以下例子:
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.
但这对我不起作用,第一个视频已转换,仅此而已。