Last active
October 18, 2017 10:38
-
-
Save innermond/728b37117c703cccad7271c5c032b75c to your computer and use it in GitHub Desktop.
convert jpg or png images to webp format. you will have new webp images along old ones
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -regex '.*\.\(jpg\|png\)$' -exec bash -c 'convert "$@" -define webp:lossless=false -quality 80 "${@%.*}".webp' _ {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment