how-to:combine_mkv_files_with_ffmpeg
Combine MKV with ffmpeg
This tutorial assumes you have a series of .MKV files you want to combine into a single file. They can be in a single location or various places on the file system.
Create your input text file; name it InputFiles.list
. The format is like:
file './path/to/file1.mkv' file './path/to/file2.mkv' file './path/to/file3.mkv'
Run ffmpeg specifying your input file like:
ffmpeg -f concat -i InputFiles.list -c copy CombinedOutputVideoFile.mkv
The resulting file CombinedOutputVideoFile.mkv
is the single file comprised of the individual pieces.
Resources
how-to/combine_mkv_files_with_ffmpeg.txt · Last modified: 2016/11/07 13:41 by curry_searle