This article covers a version of CentOS that is no longer supported. If you are currently operating a server running CentOS 6, we highly recommend upgrading or migrating to a supported version of CentOS.
Reason: CentOS 6 reached end of life (EOL) on November 30th, 2020 and no longer receives security patches or updates. For this reason, this guide is no longer maintained.
See Instead:
This guide might still be useful as a reference, but may not work on other CentOS releases. If available, we strongly recommend using a guide written for the version of CentOS you are using.
FFMpeg is a popular program for converting and manipulating audio/video files.
We will need to spin up a CentOS 6.4 x64 cloud server:
rpm --import http://packages.atrpms.net/RPM-GPG-KEY.atrpms rpm -ivh http://dl.atrpms.net/el6-x86_64/atrpms/stable/atrpms-repo-6-7.el6.x86_64.rpm
yum -y --enablerepo=atrpms install ffmpeg
Verify that you have FFMpeg installed:
ffmpeg -version
To get a list of supported formats:
ffmpeg -formats
Once you have uploaded your video you can begin converting it to various formats.
For our example, we will download "Big Buck Bunny 720p MP4" video and convert it.
wget "http://mirrorblender.top-ix.org/peach/bigbuckbunny_movies/big_buck_bunny_720p_surround.avi"
In 720p MP4 format this video is 317MB:
[root@FFMpeg ~]# ls -lah big_buck_bunny_720p_surround.avi -rw-r--r-- 1 root root 317M May 6 2008 big_buck_bunny_720p_surround.avi
ffmpeg -i big_buck_bunny_720p_surround.avi -vcodec libx264 big_buck_bunny_720p_surround-H264.avi
Once converted from MP4 to H264 this video is 118MB:
[root@FFMpeg ~]# ls -lah big_buck_bunny_720p_surround-H264.avi -rw-r--r-- 1 root root 118M May 30 23:40 big_buck_bunny_720p_surround-H264.avi
ffmpeg -i libx264 big_buck_bunny_720p_surround-H264.avi -vcodec libx264 -ar 44100 -f flv libx264 big_buck_bunny_720p_surround.flv
The FLV version is 102MB:
[root@FFMpeg ~]# ls -lah big_buck_bunny_720p_surround.flv -rw-r--r-- 1 root root 102M May 31 00:06 big_buck_bunny_720p_surround.flv
You can stream these files with JWPlayer as described in our next article.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
rpm --import http://packages.atrpms.net/RPM-GPG-KEY.atrpms returns
curl: (22) The requested URL returned error: 404 Not Found error: http://packages.atrpms.net/RPM-GPG-KEY.atrpms: import read failed(2).
I was selecting LAMP image and it was automatically changing it to Ubuntu. Now that I have built a new droplet with CentOS 7 I am getting this error:
–> Finished Dependency Resolution Error: Package: libavdevice55-2.2.1-65.el7.x86_64 (atrpms) Requires: libdc1394.so.22()(64bit) You could try using --skip-broken to work around the problem You could try running: rpm -Va --nofiles --nodigest
Hi, I am getting this error on a fresh server:
rpm -ivh http://dl.atrpms.net/all/atrpms-repo-6-7.el6.x86_64.rpm rpm: RPM should not be used directly install RPM packages, use Alien instead! rpm: However assuming you know what you are doing… Retrieving http://dl.atrpms.net/all/atrpms-repo-6-7.el6.x86_64.rpm error: Failed dependencies:
/bin/sh is needed by atrpms-repo-6-7.el6.x86_64
Please Help :(
@bjakin: I’ve updated the URL. Please try again, thanks!
curl: (22) The requested URL returned error: 404 Not Found ошибка: skipping http://dl.atrpms.net/all/atrpms-repo-6-7.el6.x86_64.rpm - transfer failed
Can you correct, please?
coming error list file /usr/lib64/libavutil.so.52 from install of libavutil52-2.0.2-61.el6.x86_64 conflicts with file from package ffmpeg-libs_1.1-1.1.5-2.el6.x86_64 file /usr/lib64/libavfilter.so.3 from install of libavfilter3-2.0.2-61.el6.x86_64 conflicts with file from package ffmpeg-libs_1.1-1.1.5-2.el6.x86_64 file /usr/lib64/libpostproc.so.52 from install of libpostproc52-2.0.2-61.el6.x86_64 conflicts with file from package ffmpeg-libs_1.1-1.1.5-2.el6.x86_64 file /usr/lib64/libswresample.so.0.17.102 from install of libswresample0-2.0.2-61.el6.x86_64 conflicts with file from package ffmpeg-libs_1.1-1.1.5-2.el6.x86_64 file /usr/lib64/libswscale.so.2 from install of libswscale2-2.0.2-61.el6.x86_64 conflicts with file from package ffmpeg-libs_1.1-1.1.5-2.el6.x86_64
@aheihachi: I’ve corrected the links—please try again.
Retrieving http://dl.atrpms.net/all/atrpms-repo-6-6.el6.x86_64.rpm curl: (22) The requested URL returned error: 404 Not Found error: skipping http://dl.atrpms.net/all/atrpms-repo-6-6.el6.x86_64.rpm - transfer failed
Not working, you have to correct urls
Great help, exactly what I needed to install it. Thanks
libx264: No such file or directory
-vcodec libx264 ?