Previously archives contained an outdated exe for Windows. Now it's the latest version.
Assets
4
I've fine-tuned rav1e low-level settings, so now you get much better compression-to-speed ratio.
Assets
4
Firefox doesn't have a problem with full color range any more, so the encoder uses it for slightly better quality.
Assets
4
v1.1.1 Compat fixes
Assets
4
v0.6.6 Update deps
Assets
4
Updated to the latest rav1e version, which brings speed and quality improvements.
Assets
4
New argument parser should have nicer error handling.
Assets
3
It turns out you can just ask rav1e to run faster, and it will! (with no loss of compression quality)
The first zip link below contains exe for macOS, Windows and Debian.
Assets
3
Latest release adds support for stdin/stdout pipes, so you can combine it with other programs without a need for temporary files.
For example, to make AVIF from ImageMagick:
convert -resize 50% example.jpg PNG:- | cavif - | cat > example.avifThat - at the end tells cavif to read image from stdin. cat here is only to demonstrate that both stdin and stdout are used.