How to Install Avidemux on Ubuntu 22.10, 22.04, and 20.04 – Quick & Reliable
If you’re tired of fiddling with GStreamer codecs when trimming a clip, Avidemux is the lightweight, cross‑platform editor that gets the job done without a PhD in video compression. In this guide I’ll walk you through installing it on Ubuntu 22.10, 22.04 LTS, and the still‑popular 20.04.
1. Install Avidemux with Snap (works everywhere)
Snap is Apple‑like for Linux: one command and you’re done.
sudo snap install avidemux-gtk --classic
Why this matters:
- The --classic flag lets the package access your file system, which Avidemux needs to read and write video files.
- Snap keeps Avidemux updated automatically—no more hunting for new releases on the website.
> I had a buddy stuck in 22.04 who tried editing a 4‑minute home movie and kept getting “invalid format” errors until they installed the snap version. The first time she ran it, she didn’t even notice the difference.
2. Install from the Ubuntu repository (no Snap)
For those who like to stay in the default package ecosystem:
sudo apt update sudo apt install avidemux-gtk
Why this matters:
- The repository version is signed by Canonical, so you’re not pulling software from a random site.
- It integrates with your system’s theme and file‑type associations automatically.
> On 20.04 I once pulled the repo package and discovered that it shipped an older build that didn’t support MP4‑x264. The snap version fixed that in seconds.
3. (Optional) Use Flatpak for a newer build
If you prefer Flatpak or want access to the latest Avidemux without waiting for the repository:
sudo apt install flatpak flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo flatpak install flathub com.github.avidemux.Avidemux
Why this matters:
- Flatpak bundles all dependencies, so you don’t run into missing libraries on a fresh 22.10 system.
- You can keep the snap and flatpak versions side by side if you want to test both.
4. Verify the installation
Open a terminal and type:
avidemux-gtk --version
You should see something like Avidemux 2.7.10 printed out. If it doesn’t launch from the Dash, try running avidemux-gtk directly; the command line often reveals missing runtime dependencies.
5. Quick sanity check
1. Launch Avidemux (avidemux-gtk).
2. Drag a video file into the window.
3. Try cutting a segment with Edit => Cut and then File => Save.
4. If it runs without throwing “invalid format” or “cannot open codec,” you’re good to go.
Give it a whirl, and happy editing.