Skip to content

Instantly share code, notes, and snippets.

@iamandrewluca
Created February 22, 2022 18:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamandrewluca/fdb4802a08be34af6ab25e3c390267f0 to your computer and use it in GitHub Desktop.
Save iamandrewluca/fdb4802a08be34af6ab25e3c390267f0 to your computer and use it in GitHub Desktop.
Join mp4 files

Generate a file with all file names

for f in *.mp4; do echo file \'$f\' >> fileList.txt; done;

Merge all files together

ffmpeg -f concat -safe 0 -i fileList.txt -c copy output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment