FFMPEG Auto Installer

Status
Not open for further replies.

robert420

Banned
Banned
1,313
2010
420
0
[HOWTO] FFMPEG Auto Installer

Source http://www.elvisblogs.org/other/howto-install-ffmpeg-ffmpeg-php-and-codecs-automagically-centos-52

Setup Installation


First, open up SSH (I like using putty) and login as "root". Once there, run the below commands:

Code:
mkdir ~/ffmpeg-packages
cd ~/ffmpeg-packages
wget [URL]http://trulymanaged.com/ffmpeg/ffmpeginstall.tar.gz[/URL] 
tar -xvzf ffmpeginstall.tar.gz
cd ffmpeginstall
If you don't want the author to be emailed upon a successful installation, comment out line 47 of install.sh Here is how...

At the command prompt type following command below
Code:
nano install.sh
Now comment out line 47

From:
Code:
echo `hostname -i `|mail -s " FFmpeg installed $_version " vps @ esds.com
To:
Code:
#echo `hostname -i `|mail -s " FFmpeg installed $_version " vps @ esds.com
Now let's begin the installation process now run the following command below
Code:
./install.sh
I've tested this on my Centos server I gotta say it gets the job done.
 
17 comments
hey...what's ffmpeg :D ...is this a codec or we can convert videos online.....???
-FFmpeg is a computer program that can record, convert and stream digital audio and video in numerous formats. ...
-is a command line tool to convert one video file format to another. It also supports grabbing and encoding in real time from a TV card.

Use Google! And don't ask what Google is
 
-FFmpeg is a computer program that can record, convert and stream digital audio and video in numerous formats. ...
-is a command line tool to convert one video file format to another. It also supports grabbing and encoding in real time from a TV card.

Use Google! And don't ask what Google is
What is google :P lolxD
 
Great tutorial, i hope many people will find this useful and stop asking other people to do it for them - unless they will pay ofc :P - but ye, its pretty easy and straight forward and doesnt require a great deal of skill :)

Just several commands and your on your way to allowing some adult video scripts to work freely :)

regards,
Ryan
 
When I ran 'ffmpeg' command, I received this error :

ffmpeg: error while loading shared libraries: libavutil.so.50: cannot open shared object file: No such file or directory

Any help ?
 
I use 2 times with this,
And the same error as @Drakul:
When I ran 'ffmpeg' command, I received this error :

ffmpeg: error while loading shared libraries: libavutil.so.50: cannot open shared object file: No such file or directory

Regards.
 
Try this ffmpeg auto installer has it has been recently updated

Login SSH as root user follow the steps in the Install Instructions

Before running the script make sure to have your IP registered at http://installers.admin-ahead.com

Code:
[B]Install Instructions[/B]:
Dependencies : ***dialog
  cd /usr/src
  wget http://scriptmantra.info/scripts/AAST_ffmpeg_installer_5.0.7b
  chmod +x AAST_ffmpeg_installer_5.0.7b
  ./AAST_ffmpeg_installer_5.0.7b
If you get error dialog not found run the following command below
Code:
yum install dialog
 
Last edited:
There is a much easier and faster way. Tested and works fine on my centos.

1. wget http://mirror.ffmpeginstaller.com/old/scripts/ffmpeg7/ffmpeginstaller.7.3.tar.gz
2. tar -zxvf ffmpeginstaller.7.3.tar.gz
3. cd ffmpeginstaller.7.3.tar
4. ./install

And your done.

Autoscript installs the following things:

ffmpeg
Mplayer
A52decoder
Amrnb and Amrwb
All codecs
facc and faad2
Ruby
flvtool2
ffmpeg-php
Mplayer and Mencoder
Lame
Libogg
Libvorbis
Libtheora
Libwmf
opencoreamr
vorbistools
X264
MP4Box // might give an error.
Xvidcore

to delete the files and directories:

1. rm -r ffmpeginstaller.7.3 (Removes Directory)
2. rm ffmpeginstaller.7.3.tar.gz (Removes package)
 
Last edited:
Code:
yum -y install dialog
cd /usr/src
wget http://scriptmantra.info/scripts/AAST_ffmpeg_installer_5.0.7b
chmod +x AAST_ffmpeg_installer_5.0.7b
./AAST_ffmpeg_installer_5.0.7b
 
Hey mate, iam trying to install this thru putty on my centos running cpanel, from the dir you posted is number 1 the first command to type in? a bit confused, thanks
There is a much easier and faster way. Tested and works fine on my centos.

1. wget http://mirror.ffmpeginstaller.com/old/scripts/ffmpeg7/ffmpeginstaller.7.3.tar.gz
2. tar -zxvf ffmpeginstaller.7.3.tar.gz
3. cd ffmpeginstaller.7.3.tar
4. ./install

And your done.

Autoscript installs the following things:

ffmpeg
Mplayer
A52decoder
Amrnb and Amrwb
All codecs
facc and faad2
Ruby
flvtool2
ffmpeg-php
Mplayer and Mencoder
Lame
Libogg
Libvorbis
Libtheora
Libwmf
opencoreamr
vorbistools
X264
MP4Box // might give an error.
Xvidcore

to delete the files and directories:

1. rm -r ffmpeginstaller.7.3 (Removes Directory)
2. rm ffmpeginstaller.7.3.tar.gz (Removes package)
 
Yes, you first need to download the file. So that's the wget code, after that you'll have to unzip it so that's is the second step. With the third step you go into the folder and with the fourth step you install everything.
 
Status
Not open for further replies.
Back
Top