Last active
October 26, 2016 20:01
-
-
Save patrickhammond/491820d1d55db1974186 to your computer and use it in GitHub Desktop.
Using ffmpeg to join multiple video files. 1:14:48 1080p video (14.14GB) joined in under 1min.
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 -i concat.txt -c copy output.mp4 |
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
file 'S1070001.MP4' | |
file 'S1070002.MP4' | |
file 'S1070003.MP4' | |
file 'S1070004.MP4' |
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
#!/bin/sh | |
ls S1* | awk '{ printf "file '\''%s'\''\n", $1}' > concat.txt | |
ffmpeg -f concat -i concat.txt -c copy output.mp4 |
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 -i S1320001.MP4 -vf "setpts=(1/50)*PTS" out.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment