-
-
Save det-peralta/88af0a38dbc430f4211a53e34bebe5ae to your computer and use it in GitHub Desktop.
Concat GoPro Videos with ffmpeg
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
ffmpeg -f concat -safe 0 -i <(for f in ./*.MP4; do echo "file '$PWD/$f'"; done) -c copy output.MP4 | |
ffmpeg -f concat -safe 0 -i <(for f in ./*.mp4; do echo "file '$PWD/$f'"; done) -c:v libx264 -an output.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment