Merge, join two or more avi files
Ever wanted to merge (join) two or more avi files seemlessly? There are numerous pieces of software to do this in Windows, but in Linux, all you need is a package called transcode, and you are ready to go with a simple command.
Prerequisites
For all this to work you need the transcode package. So install (or make sure that it is there)
yum install transcode
Instructions
- Open up a terminal
- Go to the directory where the files are (this is just to make things simpler)
- Assuming that the file you want the result to be is named foo.avi, and you have two smaller files you want to merge (in order) named foo1.avi and foo2.avi, enter the following command:
avimerge -o foo.avi -i foo1.avi foo2.avi
Explanation
foo can be what ever your files are actually called. -o signifies the name of the outpul file, while -i signifies the names of the input files. You must put the file names in order.
Conclusion
That's it. As easy as can be, assuming no fear of the terminal. Keep in mind, that there is no reason to have to do any of this as root.
Contributors
irc://freenode/fedora

Merge, join two or more avi files
12th Feb 2008, 18:02
14th Mar 2008, 14:27
14th Mar 2008, 14:29
14th Mar 2008, 14:30
23rd Dec 2007, 08:42
26th Jan 2007, 10:13
28th Apr 2008, 12:33
28th Jan 2007, 17:46
28th Sep 2007, 09:06