Created
May 12, 2017 18:38
-
-
Save josby/3643defc43c484315439f31a0c6ecddd to your computer and use it in GitHub Desktop.
Concat GoPro Videos with ffmpeg
This file contains 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
ffmpeg -f concat -safe 0 -i <(for f in ./*.MP4; do echo "file '$PWD/$f'"; done) -c copy output.MP4 |
great gist 👏
make sure to run for f in ./*.MP4; do echo "file '$PWD/$f'"; done
to make sure your videos will be concatenated in the correct order
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It is necessary to use this command?
... copy -bsf:a aac_adtstoasc output.MP4