A tool and library to losslessly join multiple .mp4 files shot with same camera and settings.
This is useful to merge multiple files that are created by the camera because of the 4GB limit on the SD Card.
This tool can merge all these separate files to a new one without transcoding or losing any data.
All original tracks are preserved, all metadata is kept as in the original.
It was created to help stabilizing such files in Gyroflow.
See the Releases page.
The easiest way is to just drag & drop multiple .mp4 files onto the mp4_merge
executable.
Usage from command line:
- Merge specified files and output to
IN_FILE1.mp4_joined.mp4
mp4_merge IN_FILE1.mp4 IN_FILE2.mp4 IN_FILE3.mp4 ...
- Merge specified files and output to
result.mp4
mp4_merge IN_FILE1.mp4 IN_FILE2.mp4 IN_FILE3.mp4 ... --out result.mp4
[dependencies]
mp4-merge = "0.1.10"
let files = ["IN_FILE1.mp4", "IN_FILE2.mp4"];
mp4_merge::join_files(&files, "out.mp4", |progress| {
println!("Merging... {:.2}%", progress * 100.0);
}).unwrap();
The idea is to merge the raw track data together, and then rewrite the stbl
box (which is the descriptor of the raw data) to account for the additional data. In order to do this this library does the following:
- Scan every provided file and collect:
mdat
offset and size- Duration stored in
mvhd
,tkhd
,mdhd
boxes stbl
descriptions:stts
,stsz
,stss
,stsc
,stco
/co64
- Merge all these descriptions: sum durations, append
stbl
lists to each other and add chunk offsets based on previous filemdat
size. - Take the first file, go through every box and write it to the output file, while:
- If
mdat
: write raw data from allmdat
boxes from all files, and store it as a large box (64-bit) - If
mvhd
,tkhd
ormdhd
: patch the duration value to the sum of all durations - If
stbl
: write these boxes from scratch, using merged lists from the description - If
stco
: rewrite toco64
to be able to fit more than 4 GB of data.
- If
- Done
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.