Ubuntu Forums Archive Viewer

Making two AVIs into one?

Archived thread 1015005 from Ubuntu Studio. Markdown source: Ubuntu_Studio/thread_1015005_Making_two_AVIs_into_one.md

Original URL About this archive
#1

How can I combine two AVI files into one? Thanks, JP

#2
sudo apt-get install avidemux

File>Open the first avi, File>Append the second.

#3

Or use avimerge.

sudo apt-get update
sudo apt-get install transcode
avimerge -o new_file.avi -i first_file.avi second_file.avi
#4

avimerge, that did the trick, thanks!