Skip to content

Instantly share code, notes, and snippets.

@Jamie-
Created September 8, 2018 23:19
Show Gist options
  • Save Jamie-/ff03ffe43d57972fa1b6aa11a7dccd02 to your computer and use it in GitHub Desktop.
Save Jamie-/ff03ffe43d57972fa1b6aa11a7dccd02 to your computer and use it in GitHub Desktop.
ffmpeg Cheat Sheet

Create 1080p timelapse from JPEGs in current directory.

ffmpeg -r 15 -pattern_type glob -i '*.JPG' -s hd1080 -vcodec libx264 output.mp4

Extract raw audio stream from video file.

ffmpeg -i input.mp4 -vn -acodec copy output.aac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment