Page 1 of 1

GUI software to join 2 avi files into one

Posted: Tue Aug 04, 2009 11:49 pm
by leo5111
GUI software to join 2 avi files into one, i have a 2 cd dvd rip, its 2 avi files i want to make em into 1 :D

Re: GUI software to join 2 avi files into one

Posted: Wed Aug 05, 2009 5:07 am
by Mike65

Re: GUI software to join 2 avi files into one

Posted: Thu Aug 06, 2009 12:31 pm
by solar1951
A little off topic as you asked for a GUI but terminal does have its uses.
use in terminal

Code: Select all

cat 1.avi 2.avi > 3.avi

to combine 2 avi's together and then

Code: Select all

mencoder -noidx -ovc copy -oac copy -o input.avi 3.avi
to straighten out the result into a file "input.avi"

Personally I then use

Code: Select all

mencoder -oac mp3lame -ovc copy input.avi -o output.avi
to recode the audio as sometimes there are problems.

Bye.