fix: Add the detector of GIF length to the storage compressor
This commit is contained in:
parent
26cf9b132e
commit
5311b5af3a
1 changed files with 2 additions and 1 deletions
|
@ -13,7 +13,8 @@ loop_1() {
|
||||||
nice -n 10 gifsicle --batch -O3 --lossy=80 --colors=255 "${p}" #&> /dev/null
|
nice -n 10 gifsicle --batch -O3 --lossy=80 --colors=255 "${p}" #&> /dev/null
|
||||||
#Specific compression for large GIF files
|
#Specific compression for large GIF files
|
||||||
while [[ $(stat -c%s "${p}" || 0) -ge 512000 ]]; do
|
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
|
done
|
||||||
elif [[ "${t}" =~ PNG ]]; then
|
elif [[ "${t}" =~ PNG ]]; then
|
||||||
nice -n 10 oxipng -o max "${p}" #&> /dev/null
|
nice -n 10 oxipng -o max "${p}" #&> /dev/null
|
||||||
|
|
Loading…
Add table
Reference in a new issue