blob: 8cbe9e4b0ecc9c772d1b7fc9d4cb4434f0d489d7 (
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 -interlace Plane -quality 75% -verbose _ min/_
find -maxdepth 1 -name "*.jpg" -print0 | sed "s,\.jpg,,g" | xargs -0 -I_ convert -strip -interlace Plane -quality 75% -verbose _.jpg min/_.webp
|