Embed Notice
HTML Code
Corresponding Notice
- Embed this notice
narcolepsy and alcoholism :flag: (hj@shigusegubu.club)'s status on Friday, 07-Jun-2024 18:19:32 JSTnarcolepsy and alcoholism :flag: @sun @pipivovott haven't dealt with webps but for apngs:
[bocchi:~] % cat Documents/Creativity/Emoji/utils/apng_to_gif.bash
for i in *.png; do
frames=`identify APNG:$i | wc -l`
if [ "$frames" \> "1" ]; then
echo $frames
mkdir -p trash
convert APNG:$i "${i%.png}.gif"
mv $i trash
fi
done