How to Install FFMPEG on Centos 7
In this Video, Step by Step Demonstration is being done regarding Installing FFMPEG on Centos 7
Official Website: https://ffmpeg.org/
Steps to Install FFMPEG on Centos 7
Step 1. Enable Nux Dextop repo on CentOS 7
#yum -y install epel-release
After enabling epel repo, go ahead and
install Nux Dextop repository.
#rpm –import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro
# rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-1.el7.nux.noarch.rpm
verify that the Nux Dextop repository is
installed successfully.
#yum repolist
Step 2. Install FFMPEG and FFMPEG devel packages
#yum -y install ffmpeg ffmpeg-devel
Step 3. Check and confirm FFMPEG version
#ffmpeg
Step 4. converting a mp3 file to oog format
#wget https://ia802508.us.archive.org/5/items/testmp3testfile/mpthreetest.mp3
#ffmpeg -i mpthreetest.mp3 -c:a libvorbis -q:a 4 mpthreetest.ogg
Step 5. Manual
#man ffmpeg
centos 7