-
-
Save 2803media/a3b0d4a4b53fa6b0db314df5d321b3dd to your computer and use it in GitHub Desktop.
convert webp
This file contains 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
#une image | |
cwebp -q 80 road.jpg -o road.webp | |
#toutes les images d'un dossier | |
find . \( -iname "*.jpg" -o -iname "*.jpeg" \) -print0 | xargs -0 -n 1 -P 0 -I '{}' cwebp -short -q 80 '{}' -o '{}'.webp | |
#resize d'une image | |
sips -Z 1280 road.jpg | |
#resize de toutes les images d'un dossier | |
sips -Z 1280 *.jpg | |
#schema.org image | |
find . \( -iname "*.jpg" -o -iname "*.jpeg" \) -print0 | xargs -0 -n 1 -P 0 -I '{}' sh -c ' | |
input="{}" | |
output="${input%.jpg}.webp" | |
convert "$input" -resize 1200x628^ -gravity center -extent 1200x628 "$output" | |
cwebp -short -q 80 "$output" -o "$output" | |
' | |
#pour 2803media | |
find . \( -iname "*.jpg" -o -iname "*.jpeg" \) -print0 | xargs -0 -n 1 -P 0 -I '{}' sh -c ' | |
input="{}" | |
output="${input%.*}.webp" | |
convert "$input" -resize 1200x800^ -gravity north -extent 1200x800 "$output" | |
cwebp -short -q 80 "$output" -o "$output" | |
' | |
#max 1080 | |
find . \( -iname "*.jpg" -o -iname "*.jpeg" \) -print0 | xargs -0 -n 1 -P 0 -I '{}' sh -c ' | |
input="{}" | |
output="${input%.jpg}.webp" | |
convert "$input" -resize 1080x1080^ "$output" | |
cwebp -short -q 80 "$output" -o "$output" | |
' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment