Skip to content

Instantly share code, notes, and snippets.

@jsfag
Created August 28, 2022 10:18
Show Gist options
  • Save jsfag/57671feb9877c2f7ba6f1d300d6903bb to your computer and use it in GitHub Desktop.
Save jsfag/57671feb9877c2f7ba6f1d300d6903bb to your computer and use it in GitHub Desktop.
FFMPEG lists files and concatenates without conversion them into the one.
(for %%i in (*.mp4) do @echo file '%%i') > list.txt
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