How Merge video files works
Join multiple video files into a single clip using ffmpeg compiled to WebAssembly, entirely inside your browser. Drop your clips, arrange them in order, then choose between fast copy mode or re-encode mode. Copy mode stitches streams via the concat demuxer without touching codec data, so it is near-instant and lossless, but all clips must share the same codec, resolution, and frame rate. Re-encode mode runs the concat filter and produces a uniform H.264/AAC stream, handling mismatched sources at the cost of extra processing time.
Memory is the main constraint: very large files held in your browser's address space can slow down or crash the tab. Merging four or five shorter clips at once is more reliable than loading dozens of gigabytes in one pass. The tool has no file count limit, but your device's available RAM sets the practical ceiling.