111000@reddthat.comM to Memes @ Reddthat@reddthat.com · 2 years agoWhat is .webp exactlyreddthat.comimagemessage-square94linkfedilinkarrow-up1277arrow-down11
arrow-up1276arrow-down1imageWhat is .webp exactlyreddthat.com111000@reddthat.comM to Memes @ Reddthat@reddthat.com · 2 years agomessage-square94linkfedilink
minus-squareAbsentBird@lemm.eelinkfedilinkarrow-up1·edit-22 years 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