Skip to content

Instantly share code, notes, and snippets.

@ahmadrosid
Created July 5, 2020 03:23
Show Gist options
  • Save ahmadrosid/12dd00a5baaa1030ee35bd3e88d2ef03 to your computer and use it in GitHub Desktop.
Save ahmadrosid/12dd00a5baaa1030ee35bd3e88d2ef03 to your computer and use it in GitHub Desktop.
#/bin/sh
printf "file '%s'\n" *.mkv > list.txt
# If you want to play the list video
# ffplay -f concat -i list.txt
ffmpeg -f concat -i list.txt -c copy final.mkv
rm list.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment