• AbsentBird@lemm.ee
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    1 year ago

    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