Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bajpangosh/b770fd6cc58659ae9660312c46b53aed to your computer and use it in GitHub Desktop.
Save bajpangosh/b770fd6cc58659ae9660312c46b53aed to your computer and use it in GitHub Desktop.
Combine MP4 files using FFMPEG on Windows (without re-encoding)
(for %i in (*.mp4) do @echo file '%i') > mylist.txt
ffmpeg -f concat -i mylist.txt -c copy output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment