Last active
November 6, 2020 20:27
-
-
Save spyesx/7e143f0ae43a1ad5c09dff2b56a04efa to your computer and use it in GitHub Desktop.
Google Guetzli encode to JPG images in bulk
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
# 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