Open sommio opened 1 year ago
Hi, --progressive
is still experimental and indeed needs more parameter tuning.
BTW, I cannot access the data at the given URL. Please attach them as normal images.
Sorry, I have re-uploaded it.
Currently when encoding progressive images, AOM does not respect quality settings very well other than in CBR mode. Encode with following commands
avifenc -s 3 -j 3 -d 10 -a sharpness=1 -a enable-chroma-deltaq=1 -a tune=psnr \
-a qm-min=0 -a deltaq-mode=3 -a aq-mode=1 -a enable-dnl-denoising=0 \
-a denoise-noise-level=5 -a end-usage=cbr -q 71 image.png image_cbr.avif
avifenc -s 3 -j 3 -d 10 -a sharpness=1 -a enable-chroma-deltaq=1 -a tune=psnr \
-a qm-min=0 -a deltaq-mode=3 -a aq-mode=1 -a enable-dnl-denoising=0 \
-a denoise-noise-level=5 -a end-usage=cbr --progressive -q 71 image.png image_cbr_p.avif
yields
43K Oct 10 22:48 image_cbr.avif
46K Oct 10 22:49 image_cbr_p.avif
which should be closer to your expectation.
Although “--progressive” generates larger but better quality avif files, this does not seem to be the expected behavior.
Information aom 3.7.0-1.1 (via ALHP) libavif 1.0.1-1.1 (via ALHP)
Reproduction