Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Convert webp to jpg error: no decode delegate....

I'm using ubuntu 12.04. I've installed libwebp2 & libwebp-dev

So far, no example found on the net of converting webp to jpg.

Some webp files can easily converted by using imagemagick with command
convert file.webp file.jpg


but lots of webp files cannot be converted and give error:
convert: no decode delegate for this image format `file.webp' @ error/constitute.c/ReadImage/532.
convert: missing an image filename `file.jpg' @ error/convert.c/ConvertImageCommand/3011.
by

1 Answer

Amit8z4mc
ffmpeg can do this. Useful if you already have ffmpeg. No need for installing other tools.

Simply:
ffmpeg -i file.webp out.png

Login / Signup to Answer the Question.