Cookie Consent by Free Privacy Policy Generator

Installing FFmpeg on CentOS

Below is a quick and easy command line method to install the FFmpeg libraries on a CentOS machine. FFmpeg is required if you are planning to launch a video uploads website such as Youtube and Vimeo using video CMS scripts such as Clipbucket and CumulusClips.

The RPM Fusion repository depends on the EPEL software repository. If the EPEL is not enabled on your system, enable it by typing:
sudo yum install epel-release

Next, enable the RPM Fusion repository by installing the rpm package :
sudo yum localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm

Once the repository is enabled, install FFmpeg:
sudo yum install ffmpeg ffmpeg-devel

Verify the FFmpeg installation by checking its version:
ffmpeg -version

ffmpeg-centos.jpg



To find out how to use the FFmpeg libraries, visit the FFmpeg documentation page here - https://www.ffmpeg.org/ffmpeg.html and here - https://ffmpeg.org/documentation.html
 
Last edited:
Back
Top