by (1.4k points)
Hey All

How do I get Seotoaster to display the images in webp format?

Some images are displayed in webp format and others in jpg format.

Why is that?

Best regards

Ronny

1 Answer

by (4.1k points)
Hi CIATRONICAL,

We are currently implemented partial support for the webp format.
We have support for the next items: Corporate logo, page teasers, and media.

Please stay tuned for the future updates.

Thank you. Regards.
by (1.4k points)
My solution.

apt install web
find ./media/ -type f -name '*.jpg' | xargs -P 8 -I {} sh -c 'cwebp -q 75 $1 -o "${1%.jpg}.webp"' _ {} \;
...