Skip to content

Instantly share code, notes, and snippets.

@Repox
Created January 14, 2024 11:24
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 Repox/7e829aaef924ad99f2bfd525e84ad3db to your computer and use it in GitHub Desktop.
Save Repox/7e829aaef924ad99f2bfd525e84ad3db to your computer and use it in GitHub Desktop.
Concat or merge videos with FFMPEG
ls -1 *.mp4 | xargs -I {} echo "file '{}'" > files.txt
ffmpeg -f concat -safe 0 -i files.txt -c copy output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment