FFmpeg Video – How to Merge Two AVI Files into One

command lineffmpegguivideo

I have two *.avi files:

sequence1.avi
sequence2.avi

How do I merge these two files using a command-line or GUI?

Best Answer

There's a dedicated tool to do this, avimerge:

avimerge -o cd.avi -i cd1.avi cd2.avi

If not installed, install transcode: Avimerge is part of transcode package: https://manpages.debian.org/jessie/transcode/avimerge.1.en.html http://manpages.ubuntu.com/manpages/bionic/man1/avimerge.1.html

Related Question