blob: 8e2fa811bf77fb61e05d748e6e34f1737d6b6972 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/bash
# configure cwebp location if not in PATH
CWEBP=cwebp
# configure flags
CWEBP_FLAGS="-m 6"
cd $(dirname $0)/www/dump
iencode() {
EXT="$1"
QUAL="$2"
export EXT QUAL CWEBP CWEBP_FLAGS
set -x
find . -name \*."${EXT}" -print0 | xargs -0 -n 1 bash -c '
IN="$0"
OUT="${IN%.${EXT}}.webp"
${CWEBP} -q "${QUAL}" ${CWEBP_FLAGS} ${IN} -o ${OUT}
'
}
iencode jpg 90
iencode png 99
|