Skip to content

Instantly share code, notes, and snippets.

@emjayoh
Created November 17, 2021 18:08
Show Gist options
  • Save emjayoh/cae33d8b925d885f7027cf23004f47f7 to your computer and use it in GitHub Desktop.
Save emjayoh/cae33d8b925d885f7027cf23004f47f7 to your computer and use it in GitHub Desktop.
[concatenate video files of same type] use ffmpeg #video #concat
echo file file1.mp4 > mylist.txt
echo file file2.mp4 >> mylist.txt
echo file file3.mp4 >> 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