Last active
April 30, 2018 21:04
-
-
Save patrickhammond/72d3cd21483f25b50159 to your computer and use it in GitHub Desktop.
Useful video scripts
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
# Joining video files | |
ls *.MP4 | sort | awk '{print "file \x27" $0 "\x27"}' > concat.txt | |
ffmpeg -f concat -i concat.txt -c copy output.mp4 | |
# Quicktime to MP4 | |
ffmpeg -i Untitled.mov -vcodec copy -acodec copy out.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment