dotfiles/config/scripts/optimize

190 lines
4.3 KiB
Plaintext
Raw Normal View History

2016-12-31 00:11:31 +00:00
#!/usr/bin/env bash
# Optimizes everything the script can find in a folder,
# meaning it will compress files as much as possible,
# without losing any data (verification will be done
# in order to verify that no data has been done)
# (executable)
# TODO Run in parallel
2018-01-08 11:26:49 +00:00
# TODO Lots of dupplicated code there
2016-12-31 00:11:31 +00:00
dir=${1:-$PWD}
total=$(mktemp)
echo -n 0 > $total
function showtotal {
echo "Total saved: $(cat "$total") bytes"
rm $total
exit
}
trap showtotal SIGTERM SIGINT SIGFPE
2018-01-08 11:26:49 +00:00
function doReplace { # candidate original
mv "$c" "$o"
saved=$(($os - $cs))
perc=$((100 * $saved / $os))
echo "→ $os ⇒ $cs (saved $saved bytes, or ${perc}%)"
newtotal=$(($(cat $total) + $saved))
echo -n $newtotal > $total
}
function replace { # candidate original
c="$1"
o="$2"
# File verifications
if [ ! -f "$o" ]; then
echo "→ Original is inexistant, skipping!"
return
fi
if [ ! -f "$c" ]; then
echo "→ Candidate is inexistant, skipping!"
return
fi
# Size verifications
cs=$(wc -c "$c" | cut -d' ' -f1)
os=$(wc -c "$o" | cut -d' ' -f1)
if [ $cs -le 0 ]; then
echo "→ Candidate is empty, skipping!"
rm "$c"
return
fi
if [ $cs -eq $os ]; then
echo "→ Candidate weight the same, skipping."
rm "$c"
return
fi
if [ $cs -gt $os ]; then
echo "→ Candidate is larger, skipping."
rm "$c"
return
fi
doReplace "$c" "$o"
}
2016-12-31 00:11:31 +00:00
function replaceImg { # candidate original
2018-01-08 11:26:49 +00:00
# With bitmap verification
2016-12-31 00:11:31 +00:00
c="$1"
o="$2"
# File verifications
if [ ! -f "$o" ]; then
echo "→ Original is inexistant, skipping!"
return
fi
if [ ! -f "$c" ]; then
echo "→ Candidate is inexistant, skipping!"
return
fi
# Size verifications
cs=$(wc -c "$c" | cut -d' ' -f1)
os=$(wc -c "$o" | cut -d' ' -f1)
if [ $cs -le 0 ]; then
echo "→ Candidate is empty, skipping!"
rm "$c"
return
fi
if [ $cs -eq $os ]; then
echo "→ Candidate weight the same, skipping."
rm "$c"
return
fi
if [ $cs -gt $os ]; then
echo "→ Candidate is larger, skipping."
rm "$c"
return
fi
# Bitmap verification
ppmc="$(mktemp --suffix .ppm)"
ppmo="$(mktemp --suffix .ppm)"
convert "$c" "$ppmc"
convert "$o" "$ppmo"
if cmp --silent "$ppmo" "$ppmc"; then
2018-01-08 11:26:49 +00:00
doReplace "$c" "$o"
2016-12-31 00:11:31 +00:00
else
echo "→ Candidate don't have the same bit map as original, skipping!"
fi
2017-07-02 20:06:24 +00:00
rm -f "$ppmc" "$ppmo" "$c"
2016-12-31 00:11:31 +00:00
}
# JPEG (requires jpegtran)
while read image
do
2017-07-02 20:06:24 +00:00
if [ -z "$image" ]; then continue; fi
2016-12-31 00:11:31 +00:00
echo Processing $image
prog=$(mktemp --suffix .jpg)
jpegtran -copy all -progressive "$image" > "$prog"
echo "→ Progressive done"
progs=$(wc -c "$prog" | cut -d' ' -f1)
2018-01-08 11:26:49 +00:00
replace "$prog" "$image"
2016-12-31 00:11:31 +00:00
2019-10-17 10:44:30 +00:00
done <<< "$(find "$dir/" -type f -iregex ".+.jpe?g$")"
2016-12-31 00:11:31 +00:00
# PNG (requires optipng)
while read image
do
2017-07-02 20:06:24 +00:00
if [ -z "$image" ]; then continue; fi
2016-12-31 00:11:31 +00:00
echo Processing $image
temp=$(mktemp --suffix .png)
cp "$image" "$temp"
2018-01-08 11:26:49 +00:00
optipng -quiet "$temp"
2016-12-31 00:11:31 +00:00
echo "→ Optimize done"
2018-01-08 11:26:49 +00:00
replace "$temp" "$image"
2016-12-31 00:11:31 +00:00
2019-10-17 10:44:30 +00:00
done <<< "$(find "$dir/" -type f -iname "*.png")"
2016-12-31 00:11:31 +00:00
2019-11-01 17:34:45 +00:00
# FLAC (requires reflac)
while read music
do
if [ -z "$music" ]; then continue; fi
echo Processing $music
temp_dir=$(mktemp --directory)
temp="$temp_dir/to_optimize.flac"
cp "$music" "$temp"
reflac --best "$temp_dir"
echo "→ Optimize done"
replace "$temp" "$music"
rm -rf "$temp_dir"
done <<< "$(find "$dir/" -type f -iname "*.flac")"
2018-08-13 10:20:09 +00:00
# # SVG (requires scour)
# while read image
# do
# if [ -z "$image" ]; then continue; fi
# echo Processing $image
#
# temp=$(mktemp --suffix .svg)
# scour --quiet "$image" "$temp" --no-line-breaks
# echo "→ Optimize done"
#
# replaceImg "$temp" "$image"
#
2019-10-17 10:44:30 +00:00
# done <<< "$(find "$dir/" -type f -iname "*.svg")"
2018-08-13 10:20:09 +00:00
# NOTE Explicitely disabled since:
# - I only have ~50 MiB of SVG in TOTAL
# - Most conversions are not image losseless
# - Even when they are losseless, they are mostly worthless
# - I might want to keep editor data and/or ids for some of them
# So rather use scour explicitely when needed
2016-12-31 00:11:31 +00:00
2017-07-02 20:06:24 +00:00
cleandev
2016-12-31 00:11:31 +00:00
showtotal