111000@reddthat.comM to Memes @ Reddthat@reddthat.com · 1 year agoWhat is .webp exactlyreddthat.comimagemessage-square95fedilinkarrow-up1277arrow-down11
arrow-up1276arrow-down1imageWhat is .webp exactlyreddthat.com111000@reddthat.comM to Memes @ Reddthat@reddthat.com · 1 year agomessage-square95fedilink
minus-squareAbsentBird@lemm.eelinkfedilinkarrow-up1·edit-21 year agoYou can convert it to frames with imagemagick, then use ffmpeg to turn that into a gif: magick animated.webp frames.png ffmpeg -i frames-%d.png animated.gif EDIT, or with a single imagemagick command: convert -format gif file.webp file.gif
You can convert it to frames with imagemagick, then use ffmpeg to turn that into a gif:
magick animated.webp frames.png
ffmpeg -i frames-%d.png animated.gif
EDIT, or with a single imagemagick command:
convert -format gif file.webp file.gif