From 9d86b215eb990ca52af89c94776dae24f4463e46 Mon Sep 17 00:00:00 2001 From: Alex Xu Date: Tue, 26 Nov 2013 19:31:12 -0500 Subject: Stuff. --- iencode.sh | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100755 iencode.sh (limited to 'iencode.sh') diff --git a/iencode.sh b/iencode.sh deleted file mode 100755 index ac898d7..0000000 --- a/iencode.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash - -# configure cwebp location if not in PATH -CWEBP=cwebp -# configure flags -CWEBP_FLAGS="-m 6" - -set -e - -cd $(dirname $0)/www/dump - -iencode() { - EXT="$1" - QUAL="$2" - export EXT QUAL CWEBP CWEBP_FLAGS - set -x - find . -name \*."${EXT}" -print0 | xargs -0 -P ${THREADS} -n 1 bash -c ' - IN="$0" - OUT="${IN%.${EXT}}.webp" - [[ -f ${OUT} ]] || ${CWEBP} -q "${QUAL}" ${CWEBP_FLAGS} ${IN} -o ${OUT} - ' -} - -iencode jpg 90 -iencode png 99 - -if hash zopflipng; then - find . -name \*.png -print0 | xargs -0 -I '{}' -P ${THREADS} zopflipng -m -y '{}' '{}' -else - echo >&2 "Install zopfli (https://code.google.com/p/zopfli/) to improve PNG compression." - echo >&2 "KS 1.1 .png files reduce by ~2.6M (~1.6%) with -m, taking several hours." -fi -- cgit v1.2.3-54-g00ecf