Skip to content

Instantly share code, notes, and snippets.

@patrickhammond
Last active October 26, 2016 20:01
Show Gist options
  • Save patrickhammond/491820d1d55db1974186 to your computer and use it in GitHub Desktop.
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.
ffmpeg -f concat -i concat.txt -c copy output.mp4
file 'S1070001.MP4'
file 'S1070002.MP4'
file 'S1070003.MP4'
file 'S1070004.MP4'
#!/bin/sh
ls S1* | awk '{ printf "file '\''%s'\''\n", $1}' > concat.txt
ffmpeg -f concat -i concat.txt -c copy output.mp4
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