Advertisement
sytchenko

FFMPEG. Join multiple video in one without re-encoding with ffmpeg

May 16th, 2024 (edited)
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | Software | 0 0
  1. 1. make text file with list of video you want to join
  2. Example:
  3. file 'path/to/first_video.mp4'
  4. file 'path/to/second_video.mp4'
  5.  
  6. 2. Run ffmpeg using attributes:
  7. ffmpeg -f concat -safe 0 -i filelist.txt -c copy output.mp4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement