fix: Add the detector of GIF length to the storage compressor

This commit is contained in:
Carlos Solís 2025-02-25 11:40:48 -06:00
parent 26cf9b132e
commit 5311b5af3a

View file

@ -13,7 +13,8 @@ loop_1() {
nice -n 10 gifsicle --batch -O3 --lossy=80 --colors=255 "${p}" #&> /dev/null
#Specific compression for large GIF files
while [[ $(stat -c%s "${p}" || 0) -ge 512000 ]]; do
nice -n 10 gifsicle "${p}" $(seq -f "#%g" 0 2 99) -O3 --lossy=80 --colors=255 -o "${p}" #&> /dev/null
frameamount=$(($(exiftool -b -FrameCount "${p}" || 1) - 1))
nice -n 10 gifsicle "${p}" $(seq -f "#%g" 0 2 "${frameamount}") -O3 --lossy=80 --colors=255 -o "${p}" #&> /dev/null
done
elif [[ "${t}" =~ PNG ]]; then
nice -n 10 oxipng -o max "${p}" #&> /dev/null