Created
July 5, 2020 03:23
-
-
Save ahmadrosid/12dd00a5baaa1030ee35bd3e88d2ef03 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/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