11 lines
326 B
Bash
11 lines
326 B
Bash
#!/bin/bash
|
|
# maak plaatjes kleiner
|
|
# apt install webp -y
|
|
|
|
# Convert PNGs
|
|
find . -iname "*.png" -print0 | xargs -0 -n 1 -P 0 -I '{}' cwebp '{}' -short -q 90 -alpha_q 100 -m 6 -o '{}'.webp
|
|
|
|
# Convert JPGs
|
|
find . \( -iname "*.jpg" -o -iname "*.jpeg" \) -print0 | xargs -0 -n 1 -P 0 -I '{}' cwebp -short -q 80 '{}' -o '{}'.webp
|
|
|