
How to Join or Combine Avi Video Files
Comments
Posted July 15, 2009 at 7:54pm · 8 comments · Add Comment
fadhil - March 8, 2013 at 2:51pm
old post but still success for Quicktime X on OSX. Thankyou !
Reply · Like · Mark as Spam

t11chb - March 31, 2010 at 12:24pm
Open Terminal:
cat filename1.avi filename2.avi > finaloutput.avi
Job done
Reply · Like · Mark as Spam
Bernk - December 1, 2012 at 11:16am
Wow. I can not believe this works on something like an AVI file. Amazing! Thank you SO much for sharing that.
Why do all these apps even exist? Jesus.
Reply · Like · Mark as Spam
nathasm - July 15, 2009 at 10:07pm
Or you can use this script I wrote:
#!/bin/sh
set -x
if [ -z "$1" ]; then
echo =e "\nUsage: `basename $0` Base_Movie_Name_To_Be_Joined"
exit 1
fi
cat $1* > _$1_.avi
mencoder -forceidx -oac copy -ovc copy _$1_.avi -o $1.avi
rm _$1_.avi
So you run it like: ./join_avi.sh Video which will combine Video* into 1 avi file and re-encodes it preserving it in divx format.
Reply · Like · Mark as Spam
iamse7en - July 15, 2009 at 8:35pm
Uh, you should also note that the user needs to have Perian installed in order to open a .avi file properly in QuickTime.
Reply · Like · Mark as Spam

iClarified - July 15, 2009 at 8:54pm
done!
Reply · Like · Mark as Spam
iamse7en - July 15, 2009 at 8:34pm
Screw this method. I don't want it to be a .mov file. I have used avi joiner in the passed, but it's screwy, so I just convert and join them together in visualhub, or join them together in SimpleMovieX.
Reply · Like · Mark as Spam
Nathaniel - July 15, 2009 at 10:04pm
This just changes the container to mov it does NOT re-encode the file. Who cares what the extension is?
Reply · Like · Mark as Spam