Skip to content

Instantly share code, notes, and snippets.

@matthiasguentert
Created March 16, 2022 22:20
Show Gist options
  • Save matthiasguentert/585526821131bf8dc20d8c924e30f8e7 to your computer and use it in GitHub Desktop.
Save matthiasguentert/585526821131bf8dc20d8c924e30f8e7 to your computer and use it in GitHub Desktop.
ffmpeg-cheat-sheet.md

Smoothing out a video...

ffmpeg -i input.mp4 -filter:v "minterpolate='mi_mode=mci:mc_mode=aobmc:vsbmc=1:fps=30'" output.mp4

Crop a video

ffmpeg -i input.mp4 -filter:v "crop:1920:1080:100:50" output.mp4

Create timelaps

ffmpeg -framerate 30 -pattern_type glob -i "folder-with-photos/*.JPG" -s:v 1440x1080 -c:v libx264 -crf 17 -pix_fmt yuv420p my-timelapse.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment