changing info
This commit is contained in:
parent
d560d7d426
commit
e4d59721e7
1 changed files with 3 additions and 2 deletions
|
@ -13,11 +13,12 @@ The best tool to really shrink pngs to be as small as they can be.
|
||||||
|
|
||||||
## WEBP
|
## WEBP
|
||||||
it's better than png, though I have a feeling more could be done to compress these
|
it's better than png, though I have a feeling more could be done to compress these
|
||||||
### ffmpeg
|
### cwebp
|
||||||
so far this seems to be the best way to compress webp images with a command that kinda looks like this one
|
so far this seems to be the best way to compress webp images with a command that kinda looks like this one
|
||||||
```bash
|
```bash
|
||||||
ffmpeg -i input.webp -c:v libwebp -lossless 1 -q:v 100 -compression_level 6 output.webp
|
cwebp -lossless -z 9 in.webp -o out.webp
|
||||||
```
|
```
|
||||||
|
while for all other formats squoosh is not recommended, for webp it'll be identical due to cwebp using the same libary as squoosh.
|
||||||
|
|
||||||
## AVIF
|
## AVIF
|
||||||
As far as I can tell, this format just sucks at its job, at least for lossless images
|
As far as I can tell, this format just sucks at its job, at least for lossless images
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue