How can I combine two AVI files into one? Thanks, JP
Making two AVIs into one?
Archived thread 1015005 from Ubuntu Studio. Markdown source: Ubuntu_Studio/thread_1015005_Making_two_AVIs_into_one.md
sudo apt-get install avidemux
File>Open the first avi, File>Append the second.
Or use avimerge.
sudo apt-get update
sudo apt-get install transcode
avimerge -o new_file.avi -i first_file.avi second_file.aviavimerge, that did the trick, thanks!