Join Nostr
2025-03-08 15:52:07 UTC
in reply to

di0nysius the patomskyite on Nostr: #!/bin/bash for f in *.webp;do echo "$f";python3 -c "from PIL import ...

#!/bin/bash
for f in *.webp;do echo "$f";python3 -c "from PIL import Image;Image.open('$f').save('${f%.webp}.gif','gif',save_all=True,optimize=True,background=0)";done