Questions tagged [webp]
5 questions
22
votes
4 answers
webp animation to gif animation (cli)
I was surprised today to find apparently how difficult it is to go from a webp animation to gif animation. My GIMP 2.8.22 and ImageMagick 7.0.7-21 on linux 4.14.13-1-ARCH don't seem to support the format, and the only tool available in repos seem to…
lash
- 729
- 3
- 8
- 15
6
votes
1 answer
Cwebp -resize only if image is larger
cwebp - Compress an image file to a WebP file
-resize width height
Resize the source to a rectangle with size width x height. If either (but not both) of the width or height parameters is 0, the value will be calculated preserving the…
Garvit Jain
- 161
- 1
- 4
3
votes
1 answer
Convert Webp to PDF
I want to convert a bunch of Webp images to individual PDFs. I'm able to do it with this command:
parallel convert '{} {.}.pdf' ::: *.webp
or I can use this FFMPEG command:
find ./ -name "*.webp" -exec dwebp {} -o {}.pdf \;
However during the…
whitewings
- 2,377
- 7
- 32
- 53
1
vote
1 answer
Exiv2: How to print tag values without printing the corresponding filenames
I'm using exiv2 0.27.2. I want to print the tag values of multiple webp files, but without the filename being printed.
With the following command:
exiv2 -g Exif.Image.Artist -Pv *.webp
I get the following output:
3q2NIGNI_o.webp …
whitewings
- 2,377
- 7
- 32
- 53
0
votes
1 answer
How to compile graphicsmagick with webp support
So I'm trying to compile graphicsmagick with webp support...
I've run
yum install libwebp libwebp-dev
I've added the libwebp.a library from google.
And I add the --with-webp flag to the ./configure line.
I've managed to take it from:
checking for…
Michael Wiles
- 111
- 3