Skip to content

Instantly share code, notes, and snippets.

@spyesx
Last active November 6, 2020 20:27
Show Gist options
  • Save spyesx/7e143f0ae43a1ad5c09dff2b56a04efa to your computer and use it in GitHub Desktop.
Save spyesx/7e143f0ae43a1ad5c09dff2b56a04efa to your computer and use it in GitHub Desktop.
Google Guetzli encode to JPG images in bulk
# From : https://github.com/google/guetzli
# Install Guetzeli
brew install guetzli
# Install Guetzeli
cd /go/to/your/folder
# Bulk files
# Warning : make a copy before lauching it.
for file in **/**.jpg; do guetzli "$file" "$file"; printf '.'; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment