fix: Improve the parsing of animated WebP files in case they're erased before testing
This commit is contained in:
parent
4414225297
commit
64442a97b3
3 changed files with 55 additions and 45 deletions
|
@ -19,6 +19,7 @@ loop_1() {
|
|||
nice -n 10 oxipng -o max "${p}" #&> /dev/null
|
||||
elif [[ "${p}" =~ Web/P ]]; then
|
||||
#If file is not animated
|
||||
if [[ -f "${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
|
||||
if [[ -f /tmp/temp.webp ]]; then
|
||||
|
@ -32,6 +33,7 @@ loop_1() {
|
|||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
find "${folder}/${storagefolder}" -depth -mindepth 2 -type f -size +50k -not -iname "index.html" | (
|
||||
|
|
|
@ -26,7 +26,8 @@ loop_1() {
|
|||
nice -n 10 oxipng -o max "${p}" #&> /dev/null
|
||||
elif [[ "${p}" =~ .webp ]]; then
|
||||
#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
|
||||
if [[ -f /tmp/temp.webp ]]; then
|
||||
size_new=$(stat -c%s "/tmp/temp.webp" || 0)
|
||||
|
@ -39,6 +40,7 @@ loop_1() {
|
|||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
cd "${folder}" || exit
|
||||
|
|
|
@ -37,7 +37,8 @@ wait
|
|||
#compress-webp
|
||||
while read -r s; do
|
||||
#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
|
||||
if [[ -f /tmp/"${s##.*\/}"_temp.webp ]]; then
|
||||
size_new=$(stat -c%s /tmp/"${s##.*\/}"_temp.webp || 0)
|
||||
|
@ -49,6 +50,7 @@ while read -r s; do
|
|||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
done < <(find . -type f -iname "*.webp" \( -size +50k -and -mtime -8 \))
|
||||
wait
|
||||
while read -r i; do
|
||||
|
@ -76,7 +78,8 @@ while read -r j; do
|
|||
elif file -b "${j}" | grep -q "Web/P"; then
|
||||
mv "${j}" "${j%.*}".webp
|
||||
#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
|
||||
if [[ -f /tmp/"${s##.*\/}"_temp.webp ]]; then
|
||||
size_new=$(stat -c%s /tmp/"${s##.*\/}"_temp.webp || 0)
|
||||
|
@ -90,6 +93,7 @@ while read -r j; do
|
|||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
done < <(find . -mtime -8 \( -iname "*.jpg" -and -iname "*.jpeg" \))
|
||||
while read -r k; do
|
||||
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
|
||||
mv "${k}" "${k%.*}".webp
|
||||
#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
|
||||
if [[ -f /tmp/"${s##.*\/}"_temp.webp ]]; then
|
||||
size_new=$(stat -c%s /tmp/"${s##.*\/}"_temp.webp || 0)
|
||||
|
@ -116,6 +121,7 @@ while read -r k; do
|
|||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
done < <(find . -iname "*.gif" -mtime -8)
|
||||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue