Install and Use FFmpeg on Ubuntu 18.04 | 16.04

This brief tutorial shows students and new users how to install FFmpeg tool on Ubuntu 18.04 | 16.04.

FFmpeg is a free, open source, cross-platform multimedia framework that anyone can use to record, convert and stream audio and video online or via any application.

It contains libraries like, libavcodec, libavutil, libavformat, libavfilter, libavdevice, libswscale and libswresample and others.

Applications and other tools can use FFmpeg libraries for transcoding and playing multimedia files, providing the best technically possible solution.

For more about FFmpeg, please visit its homepage.

When you’re ready to install FFmpeg, follow the steps below:

Option 1: Install FFmpeg on Ubuntu

FFmpeg comes via Ubuntu official repositories. It can be installed via Ubuntu default package manager, apt.

This is the easiest way to install FFmpeg on Ubuntu. However, the version included in the repositories may not be the latest version.

At the time of writing this article, the current version of FFmpeg available in the Ubuntu 18.04 | 16.04 repositories is 3.4.6.

The current latest version from FFmpeg website is version 4.2.2.

To install the stable version that comes in Ubuntu default repositories, simply run the commands below:

sudo apt update
sudo apt install ffmpeg

To validate that the package is installed and working properly use the ffmpeg -version command.

ffmpeg -version

The command above should output something similar to the lines below:

Output:
ffmpeg version 3.4.6-0ubuntu0.18.04.1 Copyright (c) 2000-2019 the FFmpeg developers
built with gcc 7 (Ubuntu 7.3.0-16ubuntu3)

That’s it.

FFmpeg stable version is now installed on your system, and you can start using it.

Option 2: Installing FFmpeg via Repository

To get the latest version of FFmpeg that includes a number of new filters, encoders, and decoders, you may want to add a third-party PPA repository.

To do that, simply run the commands below:

sudo apt install software-properties-common
sudo add-apt-repository --yes ppa:jonathonf/ffmpeg-4
sudo apt update
sudo apt install ffmpeg

To verify if FFmpeg is installed, run the commands below:

ffmpeg -version

It should output similar lines as shown below:

Output:
ffmpeg version 4.2.2-0york0~18.04 Copyright (c) 2000-2019 the FFmpeg developers
built with gcc 7 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
configuration: --prefix=/usr --extra-version='0york0~18.04' --toolchain=hardened

That’s you install via a third party PPA.

Options 3: Install via Snap

The easiest way is to install FFmpeg latest on Ubuntu is by using the snappy packaging system.

Snaps are applications packaged with all their dependencies to run on all popular Linux distributions from a single build. They update automatically and roll back gracefully.

First, run the commands below to install snap package manager and then install FFmpeg.

sudo apt update
sudo apt install snapd
sudo snap install ffmpeg

After installing, use the command to verify FFmpeg version.

This is how one installs FFmpeg on Ubuntu.

Using FFmpeg

After installing FFmpeg, you can begin using it to convert multimedia files to different formats.

For example, to convert from mp4 format to webm, simply run the commands below

ffmpeg -i input.mp4 output.webm

To convert an audio file from mp3 to ogg, run the commands below:

ffmpeg -i input.mp3 output.ogg

There are more examples on the developer’s site. Go there and learn how to use FFmpeg.

Conclusion:

This post showed you how to install and use FFmpeg on Ubuntu 18.04 | 16.04. If you find any error above, please use the form below to report it.

Thanks,

You may also like the post below: