Install FFmpeg on ubuntu 22.04; Through this tutorial, we will learn how to install and use FFmpeg on Linux ubuntu 22.04 system.
FFmpeg is a collection of tools that process audio and video files. It is open-source and completely free. Tasks that FFmpeg can perform include encoding, decoding, transcoding, streaming, filtering, muxing, demuxing, etc. It is a cross-platform compatible framework that works on Windows, Linux, Mac OS X, BDS systems, and Solaris.
How to Install FFmpeg on Ubuntu 22.04
Use the following steps to install FFmpeg on linux ubuntu 22.04 system:
- Step 1 – Update System Dependencies
- Step 2 – Install FFmpeg
- Step 3 – Verify installation
- Step 4 – Encoders & Decoders
Step 1 – Update System Dependencies
First of all, open terminal and execute the following command on cmmand line to update system dependencies:
sudo apt update && sudo apt upgrade
Step 2 – Install FFmpeg
Then execute the following command on command line to install FFmpeg into ubuntu 22.04 system:
sudo apt install ffmpeg
Step 3 – Verify installation
Once the FFmpeg installation has been finieshed, execute the following command on command line to verify the installation of FFmpeg in ubuntu system:
ffmpeg -version
Step 4 – Encoders & Decoders
Use the following command on command line to encoders and decoders of FFmpeg in ubuntu system:
ffmpeg -encoders ffmpeg -decoders
Conclusion
Through this tutorial, we have learned how to install and use FFmpeg on Linux ubuntu 22.04 system.