Skip to content

Instantly share code, notes, and snippets.

@patrickhammond
Last active April 30, 2018 21:04
Show Gist options
  • Save patrickhammond/72d3cd21483f25b50159 to your computer and use it in GitHub Desktop.
Save patrickhammond/72d3cd21483f25b50159 to your computer and use it in GitHub Desktop.
Useful video scripts
# 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