31Dec/090
How to join/merge mp4 files in ubuntu?
Do you have multiple .m4v files and is looking forward to join them? Then, I hope that this post will help you.
What is required?
ubuntu 9.10 Karmic
Install gpac packages to install MP4Box tools.
sudo apt-get install gpac
Once you’ve done it, you can use the Mp4Box command to concatenate the files together:
MP4Box -cat file_01.m4v -cat file_02.m4v -cat file_03.m4v -new final.m4v
This will create a merged m4v file ready do be used.
NOTE: MP4Box will be able to concatenate only 20 files at a time.