Skip to content

Instantly share code, notes, and snippets.

@wiledal
Created May 4, 2017 14:40
Show Gist options
  • Select an option

  • Save wiledal/8890f7c031e3631bee2d41bc3f24df34 to your computer and use it in GitHub Desktop.

Select an option

Save wiledal/8890f7c031e3631bee2d41bc3f24df34 to your computer and use it in GitHub Desktop.
Batch process images
for i in *.png; do ffmpeg -i $i -vf scale=500:500 $i -y; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment