Skip to content

Instantly share code, notes, and snippets.

@igorrendulic
Created September 21, 2020 13:40
Show Gist options
  • Save igorrendulic/433b269749ca8e52b7124a279c1720c0 to your computer and use it in GitHub Desktop.
Save igorrendulic/433b269749ca8e52b7124a279c1720c0 to your computer and use it in GitHub Desktop.
FFmpeg concatenate multiple mp4 files in a folder
for f in *.mp4; do echo file $f >> list.txt; done
ffmpeg -f concat -safe 0 -i list.txt -c copy output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment