How to Setup a VPS on Vultr with cPanel
Vultr is a popular cloud server provider that was founded in 2014 on a mission to empower developers and businesses...
FFmpeg is a free and open-source collection of tools for handling multimedia files. It contains a set of shared audio and video libraries such as libavcodec, libavformat, and libavutil. With FFmpeg, you can convert between various video and audio formats, set sample rates, capture streaming audio/video, and resize videos.
This tutorial walks you through installing FFmpeg on CentOS 7.
To be able to add new repositories and install packages on your CentOS system, you must be logged in as a user with sudo privileges .
FFmpeg is not available in CentOS 7 core repositories. You can choose to build the FFmpeg tools from the source or to install it via yum from a third-party Yum repository.
We’ll go with the second option and install from the RPM Fusion repository:
sudo yum install epel-release
sudo yum localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm
sudo yum install ffmpeg ffmpeg-devel
ffmpeg -version
ffmpeg version 3.4.7 Copyright (c) 2000-2019 the FFmpeg developers
built with gcc 4.8.5 (GCC) 20150623 (Red Hat 4.8.5-39)
...
That’s it. FFmpeg has been installed on your CentOS machine and you can start using it.
FFmpeg is a free and open-source collection of tools for handling multimedia files. It contains a set of shared audio and video libraries such as libavcodec, libavformat, and libavutil.
Post Your Comments