
Logo: Alliance for Open Media. License: BSD
AVIF browser test page: AVIF support in Chrome, Firefox, Edge…
Last updated on October 5, 2022
Is your browser capable of displaying AVIF images?
Here comes a fast answer using a <picture>
tag. If your browser can display AVIF files, it will. Else a fallback JPEG picture will be used:

Mozilla enabled AVIF support by default in Firefox 93 (released October 5, 2021). Other major browsers including IE, Edge or Safari DO NOT support the AVIF file format yet. Check the current browser support here: caniuse.com/avif.
AVIF test pictures
Here you should see an AVIF image (630 pixels wide) inserted within an <img>
tag. If your browser does not support AVIF, only the HTML “alt” attribute will show up:

Download this AVIF test file (21 Kb).
Here is the same AVIF file inserted within a <picture>
tag, with a JPEG fallback image:
And again the same AVIF image inserted within a <picture>
tag, this time with a WebP fallback image:
How to convert images to the AVIF file format
The easiest way to convert JPEG or WepP images to AVIF is to use an online image converter. Most of them do not support AVIF, but here are a few that allow AVIF conversion:
- Squoosh
https://squoosh.app/
Squoosh converts only one file at a time, but has a live preview as well as many quality settings.
- avif.app AVIF Converter
https://avif.app
Avif.app converts only one file at a time, but the compression quality can be specified. EXIF information cannot be edited.
The compression quality scale ranges from 0 to 63 (sic!): 0 means lossless and 63 is the worst quality. The default compression quality is 25.
- Convertio.co file converter:
https://convertio.co/avif-converter
Convertio.co allows for multiple files to be converted to AVIF, but has no quality or EXIF setting.
- MConverter.eu
https://mconverter.eu/convert/to/avif/
MConverter has support for batch conversion as well as huge files up to 500 MB. There are no quality settings, though.
Is your favourite AVIF converter not included? Please write a comment!
Local AVIF conversion
The easiest way to convert JPEG or PNG files to AVIF locally (i.e. on you computer, not online) is to use the static go-avif builds by Kagami Hiiragi:
1. Download the go-avif executable file for Windows, Linux or MacOS from the official go-avif GitHub. You don’t need any specific GitHub knowledge or account.
2. On Linux or MacOS, you may need to make the file executable. (Instructions for Linux or MacOS)
3. In a terminal / shell / command line, cd
into the directory where the executable file is located. Now you can convert JPEG or PNG files to AVIF, as in the following examples.
AVIF conversion examples
These examples are inspired by Kagami’s go-avif GitHub:
Encode JPEG to AVIF with default settings
On Windows:avif-win-x64.exe -e test.jpg -o test.avif
On Linux:./avif-linux-x64 -e test.jpg -o test.avif
Change the AVIF quality setting
Go-avif uses the libaom quality setting (called “Q mode”), which starts at 0 (lossless) and goes up to 63 (worst quality). If not specified, go-avif sets the compression quality to 25. Here is an example of AVIF encoding with a slightly better quality:
On Windows:avif-win-x64.exe -e example.JPG -o example-q20.avif -q 20
On Linux:./avif-linux-x64 -e example.JPG -o example-q20.avif -q 20
Here are all the options as displayed in the go-avif help, including compression speed and lossless compression:

How to insert AVIF images in WordPress
Upload AVIF to WordPress
Uploading AVIF images to WordPress is not supported yet. Adding the following code to the current theme’s functions.php
does NOT seem to work (as it does with WebP images):
// Add WebP mime type to WordPress
function webp_upload_mimes( $existing_mimes ) {
// add webp to the list of mime types
// $existing_mimes['webp'] = 'image/webp';
$existing_mimes['avif'] = 'image/avif';
// return the array back to the function with our added mime type
return $existing_mimes;
}
add_filter( 'mime_types', 'webp_upload_mimes' );
Solution: upload the AVIF files “manually” (for example via FTP). If you only need a few files, you may for example create an AVIF directory directly in wp-content/uploads
.
Please write a comment if you know a better solution for uploading AVIF files to WordPress.
Insert AVIF files in WordPress pages or posts
If you didn’t use the WordPress Media Library to upload your AVIF files, inserting the pictures into posts will be more difficult.
Minimal HTML knowledge will be needed, as well as the path to the AVIF file. The path to the image file will be something like:https://www.example.com/wp-content/uploads/AVIF/example.avif
In the following examples though, only example.avif
will be used for easier readability.
Insert AVIF via an <img>
tag (easy but not recommended)
Simply inserting AVIF files via <img>
tags is possible:
<img src="example.avif" alt="AVIF example" />
Here the same thing with typical WordPress classes, width an height:
<img class="size-full alignnone" src="example.avif" alt="AVIF example" width="630" height="420" />
However, no image will be displayed for incompatible browsers – this concerns more than 70 % of internet users worldwide (mid 2020).
Insert AVIF via a <picture>
tag (recommended)
The right way to use AVIF is via a <picture>
tag, with a JPG or PNG fallback image:
<picture>
<source srcset="example.avif" type="image/avif">
<img src="fallback.jpg" alt="AVIF example with JPEG fallback">
</picture>
This way, AVIF-capable browsers will display the AVIF image, all others defaulting to the JPEG fallback. This is even possible with a first WebP fallback and a second JPEG fallback:
<picture>
<source srcset="example.avif" type="image/avif">
<source srcset="fallback.webp" type="image/webp">
<img src="fallback.jpg" alt="AVIF example with WebP and JPEG fallback">
</picture>
Finally here comes this same example “enhanced” with typical WordPress classes, width an height. The <p>
tag with a void class inside ensures WordPress doesn’t modify the code (WP will remove spaces and new lines, though):
<p class="">
<picture>
<source srcset="example.avif" type="image/avif">
<source srcset="fallback.webp" type="image/webp">
<img class="alignnone size-full" src="fallback.jpg" alt="AVIF full example with fallbacks" width="630" height="420" />
</picture>
</p>
If you know how to improve the AVIF support in WordPress, please leave a comment.
Interesting AVIF links
- Start Using Superior Image Compression Today, Kagami Hiiragi, April 2019 (!)
- AVIF for Next-Generation Image Coding, Netflix Technology Blog, February 2020
- Is WebP really better than JPEG?, Johannes Siipola, June 2020
- Comparing AVIF vs WebP file sizes at the same DSSIM, Daniel Aleksandersen, July 2020
By Johannes Eva, July 2020 – October 2022
29 thoughts on “How to Install Firefox on Linux Mint, Ubuntu, Debian or any other Linux distribution”
I was wanting to update Firefox on my Ubuntu Trusty (14.04). I finally came across this article and … tahdah. Now I have Firefox 83 installed and working perfectly. Thank you so much for this article. One question – can I also install the latest Thunderbird in the same manner?
And please folks, no comments like – just upgrade to the newest Ubuntu. Trusty works perfect. I have Apache installed and it works perfect also. So why should I update/upgrade to a newer version when I have perfection now. You know the old saying – If it works don’t fix it.
Thank you John! Yes, Thunderbird can be installed/upgraded the same way 🙂
Hello, I’m French.
It’s hard to me to understand English so when it’s electronic language, it’s very very hard. But I tried (even if I doesn’t understand, even while translating). And when I tried, I succeed to extract the file (yeeaah!) but I can’t move Firefox to
/opt
, it says “no such file or directory” like Kurman (an other user). But how am I doing now ? I search a lot of solutions and nothing works. Netflix doesn’t want to work with my old Firefox (the 66.0.3 version). Am I going to get there someday? After Netflix, it will be some important things…Please, help me. (Once I could watch Netflix…)
Thanks for the article!
You may have to create the
/opt
directory first:sudo mkdir /opt
Good luck!
Note: When the default version of Firefox is upgraded by the system, the symlink
/usr/bin/firefox
is overwritten and you will either have re-create it or just lock the currently installed version in Synaptic to prevent that from happening altogether:Great article. In the case of Firefox newer is better. Every update since Quantum debuted has brought it closer to perfection. Oh, I think it may be ‘inexperienced’, rather than ‘unexperienced’. Regardless, the advice is sound.
It’s always best for newbies to practice caution. Then again, it took a few self inflicted system meltdowns to really start getting the hang of this Linux thing.
Thank you for your comment and for the correction!
If I just remove the old Firefox folder in
/opt
, what about my favorites settings? Am I gonna lost it all?@Rafael: no, you won’t loose your Firefox settings. These are stored in your profile folder. On Linux, you profile folder is in your home directory, in the
.mozilla/firefox
sub-folder. You may need to show hidden files and folders (use Ctrl + H or the “View” menu) to navigate to the profile folder.If you only have one profile, its folder has “default” in the name. The complete path of the Firefox profile folder will be something like:
/home/user_name/.mozilla/firefox/random_string.default
This folder allows for an awful lot of flexibility, for example you can:
Is easier get it there: https://packages.debian.org/sid/amd64/firefox/download
Thank you, this is indeed useful. Installing Firefox from .deb packages is also a viable option. Keep in mind that the recommendation is the same as when installing from the tar.gz archive: “it is strongly suggested to use a package manager like aptitude or synaptic to download and install packages, instead of doing so manually via this website.”
Make friends with the terminal!
Sure, it’s been quite some time since 2015: Users must extract from the “tar” archive and use a password-enabled (root) terminal (or sudo) to perform the subsequent file actions. Simply invoking a file manager and then copying/pasting won’t work.
The reason Debian users end up here:
Note that Debian’s repository version of Firefox still is named “firefox-esr,” not simply “firefox” (Before, it was “iceweasel” – a legality, still in effect with firefox-esr): Debian proves perhaps the most conservative distro in the Linux realm. As was noted in an old saying: “They wear both a belt and suspenders!”
The problem is that institutions performing secure transactions (say, global financial corporations) – along with many still-perplexed users (who generally aren’t bare novices) – dislike legacy browser versions. Debian purists dislike the corporate bent of Mozilla’s Firefox development. (After all, it’s firefox.com, not firefox.org.)
Thank you. Simple, clear and helpful. Works for me on Linux Mint (64 Bit)
I’ve extracted the file but I can’t move it to
/opt
, it says no such file or directory.Kumar, you’re probably in the wrong directory when running the
move
command – or using the wrong file name. Using the TAB key to autocomplete the file name helps to know if you’re right: if it autocompletes the file or directory names, it’s right, else it’s wrong. Of course, listing files with thels
command also shows if you have extracted the archive correctly.For future reference,
tar xf file
will deal with the compression without having to specify it.Pingback: Install the latest FireFox in CentOS 7 - UncleNinja
Pingback: Upgrade Firefox di Linux Mint | Catatan dan Wiki Personal
FF 45 in Mint does not open groups of tabs anymore. So that seems broken.
I went back to a former version. The repository only offered FF 28… But this one still works.
The Tab Groups (Panorama) feature has been discontinued. There are Firefox add-ons with similar features, check the official announcement from Mozilla:
https://support.mozilla.org/en-US/kb/tab-groups-removal
I have other problem 🙂 I unpacked firefox (did same with thunderbird), created symbolic links and everything, but still, when I run firefox or thunderbird, it said it is not default browser/email client and I can’t turn it off. It is not really functional problem, but it is reaaaaaally annoying 🙂 in preffered applications is set firefox and thunderbird (the original mint firefox and thunderbird don’t have this problem), is there any way (and I am sure there is) how to set unzipped TB and FF as default? BTW I am using common profiles for windows and for mint 17.3 in both applications. THX 🙂
I figured out something, I turned off check for default application in settings (during start of application, it ignored it 🙂 ) I hope it will work
I really do try to like Linux… but I just can’t understand why I can’t just UPDATE my firefox in one click? The version is there – why do I need to start entering commands and copying folders for something as trivial as that?
Well, in fact this tutorial is for advanced users, most of which are installing Firefox on their own on custom Linux systems. Or trying Firefox Beta/Aurora or other special versions of Firefox.
In your case you’re probably using mainstream distributions such are Ubuntu, Linux Mint, Debian, OpenSuse, Fedora, … The package manager of your distro will take care of updating Firefox by itself, when when the new Ffox version has been tested for compatibility with your distro, so that it doesn’t break anything. On Ubuntu or Linux Mint, for example, it takes just a few days after the official release.
Please do NOT use this guide to update Firefox by hand if you’re just a “normal” user or a Linux beginner. Just apply the normal updates (as you should always do) for your distribution and you’ll get the new Firefox version. I’ll try to make a version of this guide for beginners and normal users soon, as it seems to be really confusing. Sorry for that.
You state here, and I’ve seen in other places, that Debian-based package managers will release firefox updates “just a few days after the official release”. That has not been my experience. I run Linux Mint 17.3, and as of today (4/30/2016), my firefox from the package manager is version 42.0. The following version (43.0) was released 4.5 months ago on December 15th, and version 46.0 was released this week. What am I missing?
I also run Mint 17.3, the Firefox version is 45 and it should be updated to 46 very soon. I can’t explain why you’re stuck with an older version. I suppose you ran
sudo apt-get update
? If nothing else works, I would suggest to install the newest Firefox version manually as described in this guide.Update: The update to Firefox 46 just showed up in the update manager. It took 4 days to the Linux Mint team to check and distribute the update, which is fine.
Pingback: How to install Firefox 43 on Linux Mint, Ubuntu, Debian, CentOS, Fedora - Free Networking Tutorials, Free System Administration Tutorials and Free Security Tutorials
How do I upgrade the current installation with the tar.b2? I’m on Ubuntu-Mate-15.10 & it doesn’t appear to be in the /opt directory.
Ubuntu will take care of Firefox upgrades automatically, you don’t have to do it manually. It may take a few days after the official release for the Firefox upgrade to show on, because the Ubuntu folks have to test the new release with Ubuntu.
There is no Firefox install in
/opt
by default, as this is where admins/users are supposed to install optional software. If you did not install anything in/opt
manually, nothing show up there, which is normal.Hope this helps!