Step-by-step instructions
- 1
FormatDrop (browser, any OS)
Drag your JPG onto FormatDrop and select AVIF as the output format. FormatDrop encodes to AVIF using a high-quality server-side pipeline. Download the result. No software to install — runs in any modern browser. The default quality setting targets visual transparency (indistinguishable from source at a reasonable viewing distance).
Go to converter - 2
Squoosh (browser, fine-grained control)
Go to squoosh.app and open your JPG. In the right panel, click the format dropdown and select AVIF. Use the quality slider (0–62) — quality 33 is roughly equivalent to JPEG quality 75 in perceived quality while producing a much smaller file. Use the side-by-side comparison view to check for artifacts before downloading. Squoosh encodes in the browser using WebAssembly — no server upload required.
- 3
ImageMagick (command line)
Install: `brew install imagemagick` (Mac) or `sudo apt install imagemagick` (Ubuntu). Convert: `magick input.jpg output.avif`. Set quality: `magick input.jpg -quality 60 output.avif`. Note: AVIF quality scale is inverted and non-linear compared to JPEG — AVIF quality 60 is high quality, not medium. Batch: `for f in *.jpg; do magick "$f" "${f%.jpg}.avif"; done`. Use `-strip` to remove EXIF metadata for smaller output.
- 4
avifenc (reference encoder, best compression)
Install libavif tools: `brew install libavif` (Mac) or `sudo apt install libavif-bin` (Ubuntu). Convert: `avifenc input.jpg output.avif`. For quality: `avifenc --min 24 --max 36 input.jpg output.avif` (min/max are quantizer values — lower = higher quality; 24–36 is a good range). For speed: add `--speed 6` (0=slowest/best, 10=fastest). avifenc uses libaom and produces the best AVIF compression of any tool.
Why convert JPG to AVIF?
JPEG was designed in 1992. AVIF uses AV1 compression developed by the world's largest tech companies — Google, Apple, Netflix, Amazon — specifically to replace JPEG. Switching pays dividends in load time and bandwidth every day.
Your files never leave your device
FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.
Frequently asked questions
How much smaller will my AVIF files be compared to JPEG?
Which browsers support AVIF?
Is AVIF lossless?
No account. No upload. Works in any browser.