Created
May 16, 2016 04:13
-
-
Save CNG/e70e29bb76ab5a885e82852b0a0dfd67 to your computer and use it in GitHub Desktop.
Concatenate GoPro MP4 videos
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
name=$(ls G* | head -1); | |
ls G* | while read line; do echo file \'$line\'; done | ffmpeg -f concat -i - -c copy "${name%%.*}-all.${name#*.}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment