-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[question] How to get the best quality? #14
Comments
Thank you for using cavif!
If you really want to achieve best quality at the expense of encoding/decoding speed, I also recommend these options:
Yes. To tell you the truth, "--crf 10" is the libaom (underlying library)'s default value: Anyway, I recommend you to check the quality with some images with your eyes, before encoding tons of images.
Great!
It depends on the image size, however, "10GB" sounds lager than the ordinary image. Here is our example images: https://github.com/link-u/avif-sample-images
Alpha is disabled by default (If you want to enable it, you must encode twice). I think your software uses 32bit RGBA for AVIF currently, to make easy to support AVIF. |
I forgot to introduce this option:
|
I want to convert old jpg's to this format. After some testing I came to this command
cavif -i 1.png --rate-control q --crf 10 --row-mt --tile-rows 2 --tile-columns 2 --threads 4 -o 1.avif
CRF mode as written in many guides is stands for the most recommended mode. Is it right to this case? When value is 10 I can't spot any difference between original, but size decreased significantly 7,16 MB -> 519 KB. The program is eating 10 GB RAM, is this how it should be? Also, how to disable alpha channel? In photo proprieties I can see color depth is 32 bit, but original was 24.
The text was updated successfully, but these errors were encountered: