Joining 2 Video Files: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Use Ffmpeg= Navigate to working directory: marcin@marcin-Ryzen-3600:~/Desktop$ ffmpeg -f concat -safe 0 -i concat.txt -c copy output.mkv concat.txt is a text file with nam...") |
|||
Line 10: | Line 10: | ||
file 'part1.mkv' | file 'part1.mkv' | ||
file 'part2.mkv' | file 'part2.mkv' | ||
=Links= | |||
*[[Ffmpeg]] | |||
*Howto link - [https://trac.ffmpeg.org/wiki/Concatenate#demuxer] |
Revision as of 18:06, 22 May 2021
Use Ffmpeg
Navigate to working directory:
marcin@marcin-Ryzen-3600:~/Desktop$ ffmpeg -f concat -safe 0 -i concat.txt -c copy output.mkv
concat.txt is a text file with names of the files you are joining, in the working directory:
- this is a comment
file 'part1.mkv' file 'part2.mkv'