Joining 2 Video Files: Difference between revisions

From Open Source Ecology
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...")
 
 
(2 intermediate revisions by the same user not shown)
Line 8: Line 8:


# this is a comment
# this is a comment
file 'part1.mkv'
file '1.MP4'
file 'part2.mkv'
file '2.MP4'
file '3.MP4'
 
=Links=
*[[FFmpeg]]
*Howto link - [https://trac.ffmpeg.org/wiki/Concatenate#demuxer]

Latest revision as of 03:30, 8 August 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:

  1. this is a comment

file '1.MP4' file '2.MP4' file '3.MP4'

Links