So, you have a bunch of .avi video files (from your cell phone, for example) that you'd like to combine into one (so you can upload the collection to YouTube)?
Here are two options on how to do this. The first one uses a tool from the transcode package:
avimerge -i one.avi two.avi three.avi -o output.avi
avimerge
is appropriately named, and if it works, it works well. Sometimes, however, it produces out-of-sync audio, which is kind of lame if people are actually, you know, talking in your videos.
Second method to the rescue: mencoder
is part of the MPlayer family and can also concatenate avi files:
mencoder -oac copy -ovc copy one.avi two.avi three.avi -o output.avi
Note: Both methods are lossless, as neither the video nor audio stream is re-encoded in any way, but they also require all input files to use the same stream formats. If you took the different videos with the same device though, that shouldn't be a problem.