PDA

View Full Version : Avi Joiner


cox377
May 25th, 2007, 03:58 AM
Hello All

Looking for a bit of advice,

I'm looking for a decent app to join avi files together,

In addition I need an app to convert Avi to Dvd

Would be greatly appreciative of any tips / pointers

CoXen

eye208
May 25th, 2007, 04:54 AM
I'm looking for a decent app to join avi files together,
Avidemux and MEncoder.

In addition I need an app to convert Avi to Dvd
KmPg2 - http://kmpg2.sourceforge.net/ - convert anything to MPEG-2 for DVD use
DVDAuthor Wizard - http://dvdauthorwizard.sourceforge.net/ - make DVD from MPEG-2 clips, with menus etc.

Titus A Duxass
May 25th, 2007, 04:56 AM
For avi files I think it's something along these lines.
At the CLI enter cat filename.avi filename2.avi > endfilename.avi

Do a search of the forum.

regomodo
May 25th, 2007, 04:57 AM
Virtualdubmod is real good for this. Open the 1st avi then "append avi segment" for all the others.

Not sure if Vdub is on Linux, should be.

cox377
May 25th, 2007, 05:38 AM
Cheers guys i shall take a look

nedecor
May 25th, 2007, 09:48 AM
Virtualdubmod is real good for this. Open the 1st avi then "append avi segment" for all the others.

Not sure if Vdub is on Linux, should be.

VirtualDub is not available for linux. It is windows only, AVIDemux is the closest alternative.

Jake

cox377
May 29th, 2007, 06:29 AM
thing is with AVIDEMUX i cannot work out how to join avi files together, do i have to install a plugin for it?

Edit - Just seen it

aeiah
May 30th, 2007, 10:23 AM
a simple mencoder command will join files. as for converting avi to dvd, i use tovid. i made an automated script for tovid that i can get to from nautilus scripts. a terminal will pop up and ask if the film is in one or two parts, then you load the part(s), it joins them together if necessary, then converts to dvd, then converts that to an iso. most of the functionality is already in tovid. ill post the script up when im back at my computer if anyone's interested. its pretty rudimentary though. its set for ntsc but probably easily changed.

C01eMaN
October 21st, 2007, 06:57 PM
a simple mencoder command will join files. as for converting avi to dvd, i use tovid. i made an automated script for tovid that i can get to from nautilus scripts. a terminal will pop up and ask if the film is in one or two parts, then you load the part(s), it joins them together if necessary, then converts to dvd, then converts that to an iso. most of the functionality is already in tovid. ill post the script up when im back at my computer if anyone's interested. its pretty rudimentary though. its set for ntsc but probably easily changed.

that would be awsome if u could post that m8... i think a few ppl could use it

:guitar:

lovejia
January 4th, 2008, 01:03 PM
If you want to join AVI to mpg, wmv, mp4, avi, vcd, svd, dvd, I suggest you use this avi joiner (http://www.mp4videojoiner.com/avi-joiner.html)

FrankVdb
January 19th, 2008, 05:22 PM
As already mentioned, the cat command is an easy way to join files.

Say, I want to join the following files:
film123.avi.001
film123.avi.002
film123.avi.003
film123.avi.004
film123.avi.005

The following command joins them into the eventual movie:
cat film* > film123.avi

yabbies
January 20th, 2008, 10:16 AM
the cat command works great for avi
like posted above

you will also need to install mencoder from synaptic.

so if you have 2 avi files lets call them movie1 and movie 2. Create a folder, put the 2 avis in the folder and put it in a convenient place. Open a terminal and cd (change directories) to the folder.

concatenate the files with

cat movie1.avi movie2.avi > combo.avi

now that they have been joined, almost 99% of the time you will get an src moves backwards error, because of the millisecond space between the two joined files where the time code stamp starts back at 0.

so you need mencoder to fix this error to regenerate the time code.

to do so stay in the directory that you created and type or paste

mencoder -o YOUR_FINAL.avi -noidx -oac copy -ovc copy combo.avi

after which you will have a joined avi that you can transcode to mpg and burn to a working dvd.

cmcfarland21
March 23rd, 2008, 02:48 PM
I followed the above directions except my Final Movie now has no audio.

Can anyone help?

Creative2
March 23rd, 2008, 07:08 PM
avimerge
avimerge -o OUTPUT.avi -i fileavi fileavi fileavi