fix: Improve the parsing of animated WebP files in case they're erased before testing

This commit is contained in:
Carlos Solís 2025-02-10 15:15:46 +00:00
parent 4414225297
commit 64442a97b3
3 changed files with 55 additions and 45 deletions

View file

@ -19,6 +19,7 @@ loop_1() {
nice -n 10 oxipng -o max "${p}" #&> /dev/null nice -n 10 oxipng -o max "${p}" #&> /dev/null
elif [[ "${p}" =~ Web/P ]]; then elif [[ "${p}" =~ Web/P ]]; then
#If file is not animated #If file is not animated
if [[ -f "${p}" ]]; then
if grep -v -q -e "ANIM" -e "ANMF" "${p}"; then if grep -v -q -e "ANIM" -e "ANMF" "${p}"; then
nice -n 10 cwebp -mt -af -quiet "${p}" -o /tmp/temp.webp #&> /dev/null nice -n 10 cwebp -mt -af -quiet "${p}" -o /tmp/temp.webp #&> /dev/null
if [[ -f /tmp/temp.webp ]]; then if [[ -f /tmp/temp.webp ]]; then
@ -32,6 +33,7 @@ loop_1() {
fi fi
fi fi
fi fi
fi
} }
find "${folder}/${storagefolder}" -depth -mindepth 2 -type f -size +50k -not -iname "index.html" | ( find "${folder}/${storagefolder}" -depth -mindepth 2 -type f -size +50k -not -iname "index.html" | (

View file

@ -26,7 +26,8 @@ loop_1() {
nice -n 10 oxipng -o max "${p}" #&> /dev/null nice -n 10 oxipng -o max "${p}" #&> /dev/null
elif [[ "${p}" =~ .webp ]]; then elif [[ "${p}" =~ .webp ]]; then
#If file is not animated #If file is not animated
if ! grep -v -q -e "ANIM" -e "ANMF" "${p}"; then if [[ -f "${p}" ]]; then
if grep -q -v -e "ANIM" -e "ANMF" "${p}"; then
nice -n 10 cwebp -mt -af -quiet "${p}" -o /tmp/temp.webp #&> /dev/null nice -n 10 cwebp -mt -af -quiet "${p}" -o /tmp/temp.webp #&> /dev/null
if [[ -f /tmp/temp.webp ]]; then if [[ -f /tmp/temp.webp ]]; then
size_new=$(stat -c%s "/tmp/temp.webp" || 0) size_new=$(stat -c%s "/tmp/temp.webp" || 0)
@ -39,6 +40,7 @@ loop_1() {
fi fi
fi fi
fi fi
fi
} }
cd "${folder}" || exit cd "${folder}" || exit

View file

@ -37,7 +37,8 @@ wait
#compress-webp #compress-webp
while read -r s; do while read -r s; do
#If file is not animated #If file is not animated
if ! grep -v -q -e "ANIM" -e "ANMF" "${s}"; then if [[ -f "${s}" ]]; then
if grep -v -q -e "ANIM" -e "ANMF" "${s}"; then
cwebp -mt -af -quiet "${s}" -o /tmp/"${s##.*\/}"_temp.webp #&>/dev/null cwebp -mt -af -quiet "${s}" -o /tmp/"${s##.*\/}"_temp.webp #&>/dev/null
if [[ -f /tmp/"${s##.*\/}"_temp.webp ]]; then if [[ -f /tmp/"${s##.*\/}"_temp.webp ]]; then
size_new=$(stat -c%s /tmp/"${s##.*\/}"_temp.webp || 0) size_new=$(stat -c%s /tmp/"${s##.*\/}"_temp.webp || 0)
@ -49,6 +50,7 @@ while read -r s; do
fi fi
fi fi
fi fi
fi
done < <(find . -type f -iname "*.webp" \( -size +50k -and -mtime -8 \)) done < <(find . -type f -iname "*.webp" \( -size +50k -and -mtime -8 \))
wait wait
while read -r i; do while read -r i; do
@ -76,7 +78,8 @@ while read -r j; do
elif file -b "${j}" | grep -q "Web/P"; then elif file -b "${j}" | grep -q "Web/P"; then
mv "${j}" "${j%.*}".webp mv "${j}" "${j%.*}".webp
#If file is not animated #If file is not animated
if ! grep -v -q -e "ANIM" -e "ANMF" "${s}"; then if [[ -f "${j}" ]]; then
if grep -v -q -e "ANIM" -e "ANMF" "${s}"; then
cwebp -mt -af -quiet "${s}" -o /tmp/"${s##.*\/}"_temp.webp #&>/dev/null cwebp -mt -af -quiet "${s}" -o /tmp/"${s##.*\/}"_temp.webp #&>/dev/null
if [[ -f /tmp/"${s##.*\/}"_temp.webp ]]; then if [[ -f /tmp/"${s##.*\/}"_temp.webp ]]; then
size_new=$(stat -c%s /tmp/"${s##.*\/}"_temp.webp || 0) size_new=$(stat -c%s /tmp/"${s##.*\/}"_temp.webp || 0)
@ -90,6 +93,7 @@ while read -r j; do
fi fi
fi fi
fi fi
fi
done < <(find . -mtime -8 \( -iname "*.jpg" -and -iname "*.jpeg" \)) done < <(find . -mtime -8 \( -iname "*.jpg" -and -iname "*.jpeg" \))
while read -r k; do while read -r k; do
if file -b "${k}" | grep -v -q -e "GIF" -e "empty" -e "symbolic link" -e "directory" -e "text"; then if file -b "${k}" | grep -v -q -e "GIF" -e "empty" -e "symbolic link" -e "directory" -e "text"; then
@ -102,7 +106,8 @@ while read -r k; do
elif file -b "${k}" | grep -q "Web/P"; then elif file -b "${k}" | grep -q "Web/P"; then
mv "${k}" "${k%.*}".webp mv "${k}" "${k%.*}".webp
#If file is not animated #If file is not animated
if ! grep -v -q -e "ANIM" -e "ANMF" "${s}"; then if [[ -f "${k}" ]]; then
if grep -v -q -e "ANIM" -e "ANMF" "${s}"; then
cwebp -mt -af -quiet "${s}" -o /tmp/"${s##.*\/}"_temp.webp #&>/dev/null cwebp -mt -af -quiet "${s}" -o /tmp/"${s##.*\/}"_temp.webp #&>/dev/null
if [[ -f /tmp/"${s##.*\/}"_temp.webp ]]; then if [[ -f /tmp/"${s##.*\/}"_temp.webp ]]; then
size_new=$(stat -c%s /tmp/"${s##.*\/}"_temp.webp || 0) size_new=$(stat -c%s /tmp/"${s##.*\/}"_temp.webp || 0)
@ -116,6 +121,7 @@ while read -r k; do
fi fi
fi fi
fi fi
fi
done < <(find . -iname "*.gif" -mtime -8) done < <(find . -iname "*.gif" -mtime -8)
while read -r l; do while read -r l; do
if file -b "${l}" | grep -v -q -e "Web/P" -e "empty" -e "symbolic link" -e "directory" -e "text"; then if file -b "${l}" | grep -v -q -e "Web/P" -e "empty" -e "symbolic link" -e "directory" -e "text"; then