How to Install FFmpeg on Linux, macOS, and Windows

FFmpeg is a cross-platform application that manages various types of multimedia files. The tool contains a set of shared audio and video libraries such as libavformat, libavutil, and libavcodec.

Furthermore, it decodes, encodes, mux, demux, streams, filters, plays, and transcodes media files. When converting video and audio files using FFmpeg, the tool will auto-detect the input and output formats.

FFmpeg is available as a command-line tool and supports different operating systems. In this article, we will explain how to install FFmpeg on Linux, macOS, and Windows.

If you want to install FFmpeg on your Linux VPS, connect to your machine via SSH before proceeding further.

How to Install FFmpeg on Linux

In this section, we will explain how to set up FFmpeg on popular Linux distributions like Ubuntu, Debian, CentOS, Fedora, and RHEL.

Installing FFmpeg on Ubuntu

There are two methods to install FFmpeg on Ubuntu – via the Personal Package Archives (PPA) and the default repository. The former contains a collection of software managed by the Ubuntu community and works best on Ubuntu 18.04 and older versions.

However, the installation must be done via the default repository if your machine runs Ubuntu 20.04 or 22.04.

Ubuntu 18.04

Here’s how to install FFmpeg via the PPA:

  1. Open the Terminal and log in as a root user.
  2. Install the software-properties-common package. This will allow you to manage the repositories you install the application from:
sudo apt-get install software-properties-common
  1. Once done, add mc3man PPA by adding the following command:
sudo add-apt-repository ppa:mc3man/trusty-media
  1. After the PPA is installed on the system, update the repository by running these commands consecutively:
sudo apt-get update
sudo apt-get dist-upgrade
  1. Next, install FFmpeg by typing in the command below:
sudo apt-get install ffmpeg

Ubuntu 20.04

Follow these steps to install FFmpeg via the default repository:

  1. Open the Terminal and access it via a root user.
  2. Update the system and packages installed by running both commands consecutively:
sudo apt update
sudo apt upgrade
  1. Insert the command below to install the FFmpeg application:
sudo apt install ffmpeg

Installing FFmpeg on Debian

There are two ways to install FFmpeg on Debian – via the default and multimedia repositories.

The former method serves Debian 9 and newer versions, while the latter applies to Debian 8 and older versions.

Debian 9

Here’s how to install FFmpeg using the default repository:

  1. Open the Terminal and log in via a root user.
  2. Update the package list and system by running both commands consecutively:
sudo apt update
sudo apt upgrade
  1. Next, install FFmpeg by adding the command below:
sudo apt install ffmpeg

Debian 8

FFmpeg is unavailable in the official Debian 8 or older repository. Therefore, users must add the Debian multimedia repository to install the codex by editing the sources.list file that contains the list of repositories the APT uses.

Follow these steps to install FFmpeg using the multimedia repository:

  1. Launch the Terminal and log in as a root user.
  2. Next, open the source.list file by typing in the following command. Use an editor such as nano or vi:
sudo vi /etc/apt/source.list
  1. Press I to enter Insert mode and start editing.
  2. Add the following lines at the end of the file:
# deb-multimedia
deb http://www.deb-multimedia.org jessie main non-free
deb-src http://www.deb-multimedia.org jessie main non-free
# jessie-backports
deb http://httpredir.debian.org/debian/ jessie-backports main
  1. Save the file by pressing ESC and close the file by pressing : (colon) and q!
  2. Finally, update the system by typing in the command below:
sudo apt update
  1. Insert this command to install the deb-multimedia-keyring package:
sudo apt install deb-multimedia-keyring
  1. Update the system once again to ensure the changes were saved by running the command below:
sudo apt update
  1. Once finished, install the FFmpeg package by typing in the command below:
sudo apt install ffmpeg

Installing FFmpeg on CentOS, Fedora, and RHEL

FFmpeg package is not available in the official repository of CentOS, Fedora, and RHEL. Therefore, users need to install it using an additional repository.

CentOS 7

Here’s how to install FFmpeg on CentOS 7 using the Nux Dextop repository:

  1. Open the Terminal and log in as a root user.
  2. Install the EPEL repository by typing in this command:
sudo yum install epel-release
  1. Update the system and packages by running the following command:
sudo yum update
  1. Use these commands to install the Nux Dextop repository:
sudo rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro
sudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm
  1. Finally, type in this command to install the FFmpeg and its development package:
sudo yum install ffmpeg ffmpeg-devel -y

RHEL 7/8

Follow these steps to install FFmpeg on RHEL 7/8 via the RPM Fusion repository:

  1. Open the Terminal and access via a root user.
  2. Type in the command below and press Enter to update the system:
sudo yum update
  1. Install the EPEL repository by inserting this command and hitting Enter:
sudo yum install epel-release
  1. Next, run either of these commands to install RPM fusion:

RHEL 7

yum localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm https://download.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-7.noarch.rpm

RHEL 8

yum localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-8.noarch.rpm https://download.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-8.noarch.rpm
  1. Install FFmpeg and its development packages by typing in the following command
sudo yum install ffmpeg ffmpeg-devel -y

Fedora

Here’s how to install FFmpeg on Fedora using the RPM Fusion repository:

  1. Open the Terminal and log in as a root user.
  2. Update the system by inserting the following command:
sudo dnf update
  1. Add the RPM Fusion repository to install FFmpeg by running the command below:
sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://download.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
  1. Update the system once again to make sure the changes were saved by running the following command:
sudo dnf update
  1. Next, install FFmpeg and its development package by inserting this:
sudo dnf install ffmpeg ffmpeg-devel

Installing FFmpeg on Arch Linux

The official Arch Linux repository, the Packman package manager, provides the FFmpeg codex on their system. Here’s how to install it:

  1. Open the Terminal and log in to a user account with sudo privileges.
  2. Update the system packages by running the following command:
pacman -Syu
  1. Type in the command below to install FFmpeg:
sudo pacman -S ffmpeg
  1. Next, install the development package by inserting the following commands consecutively:
yay -S ffmpeg-git
yay -S ffmpeg-full-git
  1. Update the system once again by running this command:
pacman -Syu

Verifying the FFmpeg Installation

To verify the FFmpeg installation and check what version is running on the machine, insert the following command:

ffmpeg -version

The output should look as shown below:

Verifying the FFmpeg version on Linux

How to Install FFmpeg on macOS

Follow these steps to set up FFmpeg on macOS:

  1. Download the FFmpeg package from the official website.
  2. Choose the Static builds for macOS 64-bit. This will redirect you to the evermeet.cx site.
  3. Select the ffmpeg-5.0.1 version.
  4. Open the downloaded file. This will extract it using the Archive Utility and create an executable FFMpeg file.
Extracting FFmpeg using the Archive Utility tool on macOS
  1. Launch the Home folder by opening Finder and using the keyboard shortcut CMD + Shift + H, or clicking the Go button on the menu bar and clicking Home.
  2. Go to File and click the New folder. Rename it to audio-orchestrator-ffmpeg and press Return to confirm the change.
  3. Open the newly added folder and create a new folder labeled bin.
  4. Move the FFmpeg file from Downloads to the newly created bin folder.
  5. Double-click to open the FFmpeg file. When the “ffmpeg” can’t be opened because it is from an unidentified developer.” message appears, press OK.
FFmpeg error message on macOS
  1. Go to System Preferences and select Security and Privacy.
  2. Choose the General tab.
  3. When a new error message appears, click Open Anyway.
macOS security and privacy window
  1. Another pop-up will appear stating that “macOS cannot verify the developer of “ffmpeg”. Are you sure you want to open it?”. Click Open.
macOS security verification window
  1. Double click the FFmpeg file, and a new Terminal window will open. Close it only when the process is complete.
FFMpeg installation process on macOS
  1. Congratulations, you have successfully installed FFmpeg.

How to Install FFmpeg on Windows

Before the installation process, it is vital to have a ZIP file utility installed on your system. Here’s how to install FFmpeg on Windows:

  1. Download the FFmpeg package from the official website.
  2. Choose the Windows builds from gyan.dev. This will redirect you to the gyan.dev website.
  3. Select the ffmpeg-git-full.7z version.
  4. Once downloaded, right-click the FFmpeg folder and select Extract files.
  5. Once done, open the extracted folder and copy and paste all the EXE files from bin to the root folder of your hard drive. For example, create a separate folder on the Local Disk (C:) to store all the files.
A separate folder for FFmpeg .exe files
  1. Type “environment properties” on the search tab and click Open.
  2. This will open the System Properties window. Go to the Advanced tab and choose Environment Variables…
System properties information on Windows
  1. Go to the System variables section. Select Path from the list and click Edit.
User and system variables information on Windows
  1. Choose New and add the FFmpeg path of the folder you have created previously to store the EXE files.
Adding a new path on environment variable on Windows
  1. Once done, click OK to save your changes. This will close the Edit environment variable window.
  2. Select OK to close the Environment Variables window and click OK once again to close System Properties.
  3. Open the Command Prompt window or type “cmd” in the search tab.
  4. Run the following command to verify that FFmpeg is installed:
ffmpeg
  1. The following output should appear, showing the FFmpeg version and default configuration settings:
Checking the FFmpeg installation on Windows
  1. Congratulations, You have successfully installed the FFmpeg application on your system.

Conclusion

FFmpeg is a cross-platform software that manages multimedia files using a single-line command to execute various actions. In addition, it contains a set of shared audio and video libraries such as libavcodec, libavutil, and libavformat. 

We have also explained how to install FFmpeg on different Linux distributions such as Ubuntu, Debian, CentOS, RHEL, Fedora, macOS, and Windows systems.

We hope this article has helped you understand how to install FFmpeg. If you have any questions or suggestions, please leave them in the comments section below.

Author
The author

Edward S.

Edward is a content editor with years of experience in IT writing, marketing, and Linux system administration. His goal is to encourage readers to establish an impactful online presence. He also really loves dogs, guitars, and everything related to space.

Author
The Co-author

Noviantika G.

Noviantika is a web development enthusiast with customer obsession at heart. Linux commands and web hosting are like music to her ears. When she's not writing, Noviantika likes to snuggle with her cats and brew some coffee.