13
2009
Join or merge many avi files with AviMerge in Ubuntu
If you have a movie which is in many parts,you can join them to make one file using the avimerge command in Ubuntu. You need to install the transcode package to use the avimerge tool to Install Transcode <strong>sudo apt-get install transcode </strong> at Terminal To merge avi files use the avimerge command. <strong>avimerge -i part1.avi part2.avi -o mergedavifile.avi</strong> The above command merges part1.avi and part2.avi into a single file called mergedavifile.avi The following video […]
16
2008
Splitting Avi files in Ubuntu
I have a Digital Photo Frame which can play divx and xvid movies. The only problem with the device was that it could not handle very large avi files.It plays avi files of size 150Mb with ease. I had ripped a DVD into a 1.4GB Xvid encoded avi file.To split this file into 150mb chunks I found a tool called Avisplit. To use this tool you must install the transcode package.Run this code terminal to […]