Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


How can FFMPEG be installed on a Dedicated Server?
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

How can FFMPEG be installed on a Dedicated Server?

RitiNayakRitiNayak Member
edited October 2015 in Tutorials

FFMPEG is an open source collection of libraries and programs enables conversion and handling of various multimedia formats.
To begin your program installation, choose SSH client of your choice login into your server with root password as received by you in mail.
Now, create a new text file with name “nano” (run "yum install nano" if text editor isn’t installed at present):

nano /etc/yum.repos.d/dag.repo
After opening your new file in “nano”, copy-paste the following:

[dag] name=Dag RPM Repository for Red Hat Enterprise Linux

baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag

gpgcheck=1

enabled=1

Now, save the file using Ctrl+O and click Enter/Return to exit “nano”.
Also, you’ll need to install 'rpmforge' by running the following:

rpm -Uhv http://apt.sw.be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.i386.rpm

After the package installation, execute the last command needed for the FFmpeg installation:

yum install ffmpeg ffmpeg-devel

Additional 60 applications and libraries will be installed for audio/video manipulation as dependencies that’ll save you time and effort by preventing you from tracking all on your own.

After completion of the installation process, you can verify if it went smoothly by typing 'ffmpeg' in the command line interface, which should an output similar to the one below, if ffmpeg is present:

FFmpeg version 0.5, Copyright (c) 2000-2009 Fabrice Bellard, et al.

Comments

Sign In or Register to comment.