blob: 199adf82f34e0c215ceef56287311b7aa9ef04e6 (
plain)
1
2
3
4
5
6
|
#!/usr/bin/bash
RATIO=10
cd static/images
mkdir -p min/
find -maxdepth 1 -name "*.jpg" -print0 | xargs -0 -I_ convert -strip -resize 900 -interlace Plane -quality 75% -verbose _ min/_
find -maxdepth 1 -name "*.jpg" -print0 | sed "s,\.jpg,,g" | xargs -0 -I_ convert -strip -resize 900 -interlace Plane -quality 75% -verbose _.jpg min/_.webp
|