Questions tagged [webp]
30 questions
41
votes
9 answers
Why does Google Chrome save a JPG image to WEBP instead?
I'm trying to save what appears to be a JPG image from Chrome and always end up downloading a WEBP image instead.
I'm on Chrome Version 80.0.3987.163 on macOS Catalina (10.15.4) and I'm trying to download a JPG image from a website. Even though the…
frabonomi
- 537
11
votes
4 answers
How to resize an animated webp?
I want to be able to change the size of a dynamic webp.
Sample picture. I found this website to do just that.
So how can I implement something similar in my own program?
I tried using ImageMagick7 or ffmpeg5, but failed.
Environment:
cat…
shsf
- 123
10
votes
2 answers
How to disable support for webp images in Firefox?
Since Firefox is natively supporting .webp images, they are displayed as webp images on web sites providing this option. How can we globally force Firefox to always fallback to jpg or png images?
I know .webp images support is an improvement, but…
Sly Mat
- 572
9
votes
2 answers
How can I losslessly convert .webp images to .png?
I have a bunch of .webp images that I want to convert to .png. How can I do that without introducing any loss? GUI or CLI doesn't matter
leetbacoon
- 311
8
votes
2 answers
Batch convert WebP files to GIF files offline?
Writing a batch script to convert all WebP files to be GIF format.
Looking at the closest utility offered by Google, I don't see an immediately obvious way to do that. I don't like having to use online converters for individual files, one by one,…
Ghoti and Chips
- 191
6
votes
1 answer
How do i convert animated webp to Video?
Goal :
convert Webp to mp4
what i have tried :
ffmpeg -i filename.webp filename.mp4
it's clearly not the good code. can anyone show me the way
it can be with anything like imagemagick, sharp
BENN XII
- 61
6
votes
4 answers
Convert animated gif to animated webp using FFmpeg
How can I convert animated gif (with Alpha channel) to animated webp?
I stuck with transparent background, I can't figure out how to convert gif with transparent background to webP with transparent background,
Its keep a 'trail' of the…
Nirel
- 161
4
votes
1 answer
Any way to save WebP images in Microsoft Office (Word, PowerPoint) without recompression (de-compression)?
Recently Office has added the ability to read WebP images, and to integrate them into Office documents as pictures.
The WebP format has many advantages, specifically it allows massively smaller file sizes with excellent image quality, compared to…
David.P
- 683
4
votes
2 answers
Decode WebP with FFmpeg
I would like to convert this file:
https://gstatic.com/webp/gallery/1.sm.webp
To PNG or JPG with FFmpeg. I tried this:
ffmpeg -i 1.sm.webp a.png
but and error was produced:
ffmpeg version git-2020-05-22-38490cb Copyright (c) 2000-2020 the FFmpeg…
Zombo
- 1
4
votes
1 answer
How to control quality and size of webP images extracted using FFmpeg?
I am using a Windows 10 PC and I am extracting frames from video using FFmpeg as described in this other question and answer thread on SuperUser. How do I control the size of webP files that are generated?
I tried following commands:
ffmpeg -i…
3
votes
0 answers
How to maintain metadata when encoding WEBP or insert metadata to ready WEBP images?
I have PNG images with EXIF, XMP and IPTC metadata that I want to maintain, when I create WEBP images.
I am running a Windows computer. I have tried a few ways and I failed.
I know that WEBP doesn't support IPTC metadata, just EXIF and XMP, I would…
CamSpy
- 131
3
votes
2 answers
How do i generate Webp preview animations using FFMPEG
So i have been generating preview animations in GIF formats using FFMPEG. (basically selecting a few seconds of the whole video and storing as gif)
however the previews that youtube generates in webp format seem way more smaller in size than what i…
SHM
- 131
2
votes
1 answer
Is there a simple way to specify whether a webp is lossy (like jpg), lossless (like png), or animated (like a gif)?
For example, is it possible to name something "file.lwebp" to explicitly designate that it is lossy, or "file.awebp" to designate it is animated? Or is there no such method, and you just have to explicitly check the file?
chausies
- 171
2
votes
2 answers
How do I force .png or .jpg images to be downloaded as png or jpg, instead of webp? (any browser, not just chrome)
When I have an image URL for a jpg or png image, for example:
https://static.coingecko.com/s/coingecko-logo-d13d6bcceddbb003f146b33c2f7e8193d72b93bb343d38e392897c3df3e78bdd.png
When I visit this link, it shows me the image. When I right click the…
RocketNuts
- 1,342
1
vote
2 answers
Why am I unable to force-delete webp files using “del /f path” from command line "as administrator" on Windows 10 workstation?
How to delete a webp file downloaded onto a Windows 10 workstation? I've tried the command-line del /f {path} from the command-line as administrator, and it doesn't work.
Neither can I rename the file to have a different extension. The file is not…
Tim
- 976