Skip to content

Instantly share code, notes, and snippets.

@jeserodz
Created July 31, 2019 16:37
Show Gist options
  • Save jeserodz/b72c77aca7786f314846719a43040112 to your computer and use it in GitHub Desktop.
Save jeserodz/b72c77aca7786f314846719a43040112 to your computer and use it in GitHub Desktop.
FFmpeg Examples
# ===============
# Image Scaling #
# ===============
# Reducing or increasing size of an image
ffmpeg -i input.png -vf scale=310:240 output.png
# Maintain the aspect ratio of original image
ffmpeg -i input.png -vf scale=310:ih*240/iw output.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment