Install Ffmpeg, Mplayer & Liboog On CentOS 5

Jul 18, 2008

I want to install the following on CentOS 5.2

FFmpeg
FFmpeg-PHP
Mplayer + Mencoder
flv2tool
Libogg + Libvorbis
LAME MP3 Encoder CentOS

View 6 Replies


ADVERTISEMENT

How To Install Ffmpeg, Ffmpeg-PHP, Mplayer, Mencoder, Flv2tool, LAME MP3 Encoder

Oct 21, 2009

When i try to install all those things i am getting error...i am following the things given in below link but i am not to excute this svn command

[url]

View 6 Replies View Related

How To Install FFMPEG Packages On CentOS 5 64-Bit

Nov 6, 2009

to install the complete FFMPEG package onto my VPS which includes, FFMPEG, Mplayer, Mencoder, Lame, etc.

I generally use the following script which works as a charm, but doesn't work very well on CentOS 64-Bit.

View 8 Replies View Related

How To Install Ffmpeg On Centos/rhel, The Simple Way

Jun 7, 2007

I seen where a lot of server management companies are charging big bucks for this, so this might save you some time and money.
First

Code:
nano -w /etc/yum.repos.d/dag.repo
Insert

Code:
[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
Then yum update and search for ffmpeg and install all ffmpeg packages including devel.
Seems there is some lib problems along the way so in /etc/ld.so.conf
add
/usr/local/lib
then
ldconfig -v
To install the php extension follow the simple directions on [url]
Then you should be all set!

Tried and tested on 2 different centos server, works fine.

View 14 Replies View Related

Installing FFMpeg/Mplayer/Flvtool2

Apr 20, 2008

These three encoders are required as part of installation on my script, but they don't come with guides, anyone got ANY clue on how to go about installing these?

View 10 Replies View Related

Ffmpeg, MPlayer, Mencoder. For Site Video

Mar 13, 2009

I in search of a new hosting for small video-site, prompt what better

View 12 Replies View Related

[How Install ]FFmpeg And Strem Program In CENTOS Enterprise 5.2 I686

Oct 8, 2008

* FFmpeg [url]
* FFmpeg-PHP [url]
* Mencoder and Mplayer [url]
* LAME MP3 Encoder [url]
* Libogg [url]
* FLVtool2 [url]
to install the up program in vps hes worked with CENTOS Enterprise 5.2 i686

because im try but not working like Mencoder and Mplayer he cant connect with me in ssh

View 1 Replies View Related

Installing Ffmepg, Ffmpeg-php, Flvtool2,mplayer,menconder And Such

Apr 13, 2009

Need help installing ffmepg, ffmpeg-php, flvtool2,mplayer,menconder and such for a video hosting site. I own a vps and I have full root access and I want to know how to do that. Can anyone link me to a tutorial or post it here?

View 10 Replies View Related

Ffmpeg Centos 5.2

Mar 27, 2009

I need to get the following libraries installed on my CentOS 5.2 Linux server aswell as install ffmpeg.

I don't know how to do this, I've looked around and I can only find ubuntu support.

liblame-dev
libfaad2-dev
libfaac-dev
libxvidcore4-dev
liba52-0.7.4
liba52-0.7.4-dev
libx264-dev

View 6 Replies View Related

Setting Up FFMPEG On Centos 5

Apr 19, 2009

2 days ago, I tried to find some guides over WHT for setting up FFMPEG on centos 5 server.

But the thread seems to be providing on older version of FFMPEG setup guide which made me a little confused on the whole process of get it setting up the right way.

Can anyone who have done FFMPEG installation with success on centos 5 to show me the steps to it?

View 5 Replies View Related

HOWTO Install FFMPEG

Nov 27, 2006

FFMPEG INSTALLATION FROM SOURCE
FFMPEG INSTALLATION FROM SOURCE
installed by:
Robertas Dereskevicius
Edited by Jon Nikolakakis
OS/ Fedora Core 5

Summary
download and install:
libffac
libffad2
xvid
libogg,libvorbis
mp3lame
ffmpeg

Setting Up Install Folder, Logging and download Packages
1)Log into ssh
2) cd /usr/src && mkdir install && cd install
3) Download faad2 and faac
from http://faac.sourceforge.net/oldsite/download.php get Faad2 and faac (new versions)

wget http://prdownloads.sourceforge.net/f...ar.gz?download
wget http://prdownloads.sourceforge.net/f...ar.gz?download

4) Verify that you have these components are installed
rpm -qa automake
rpm -qa autoconf
rpm -qa libtool
rpm -qa m4
rpm -qa gcc-c++

If any are missing than simply yum install (packagename), if you dont have a package manager than get one, it will save you alot of time
and headaches.

Installing Faac
5)tar -zxvf faac-1.24.tar.gz && cd faac
6) sh bootstrap
7) ./configure
8) make
9) make install
10) cd ..

Installing Faad2
11) tar -zxvf faad2-2.0.tar.gz
12) cd faad2 && less README.linux
13) There is 2 bugs with this package, so need to manually edit these files
14) nano Makefile.am
Edit the file to look like this
SUBDIRS = libfaad common frontend plugins
EXTRA_DIST = faad2.spec

15) cd common/mp4ff && nano mp4ffint.h
16) Comment out this line
//void mp4ff_track_add(mp4ff_t *f);

17)Save file and cd ../..
18)autoreconf -vif
19) ./configure
20) make
21) make install

Installing Libogg and Libvorbis
22)cd .. and then Check to see if libogg and libvorbs
rpm -qa libogg-devel
rpm -qa libvorbis-devel
rpm -qa libncurses-devel

If not installed then simply Package Install (replace yum and install settings with your package manager)
yum install libogg-devel
yum install libvorbis-devel
yum install libncurses-devel

Installing LAME (for audio)
23)go into lame sourceforge - http://sourceforge.net/project/showf...package_id=309
24)wget http://mesh.dl.sourceforge.net/sourc...me-3.97.tar.gz
25)tar -zxvf lame-3.97.tar.gz
26)cd lame*
27) ./configure; make;make install

Installing Xvid
28) cd .. && wget http://downloads.xvid.org/downloads/...e-1.1.2.tar.gz
29)tar -zxvf xvidcore-1.1.2.tar.gz && cd xvid*/build/generic/
30) ./configure; make; make install;
31) cd ../../..

Installing ffmpeg
32) rpm -q subversion If not install, then install subversion
33)svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg && cd ffmpeg
34) ./configure --enable-shared --enable-xvid --enable-vorbis --enable-libogg --enable-mp3lame --enable-gpl --enable-faad --enable-faac --enable-a52
35)make
36)make install

If Installation went ok, run
ldd ./ffmpeg
If Path to Lib Libraries are not ok

37)Check to see if /usr/local/lib exists on this file
cat /etc/ld.so.conf

If not
echo /usr/local/lib >>/etc/ld.so.conf

38) cat/etc/ld.so.conf Now check to see if (/usr/local/lib exist)
39) save file
40) ldconfig
41) run ldd ./ffmpeg

FFmpeg should be complete and installed. On some servers you may need to add Disable Shared and enable flags.

View 14 Replies View Related

FFMPEG And FLVTOOL2 Install

Jul 17, 2009

I just got a brand new server, its a centOS 5 box with cPanel installed, compiled with suPHP and the latest version of Apache. I was trying to install FFMPEG, Flvtool2, flvtool, mplayer, etc etc, and I had some issues, so I paid serverwizards to install it, and they tried to install it, but it seems they installed a broken version of flvtool2, or didnt install it right, and their best response up to date is "we are googling this", then they blow me off for 12 hours. This has been going on for 3 days so far.

Here is a test I ran.

Quote:

root@svr3 [~]# /usr/bin/flvtool2 -UDs /home/rbetvcom/public_html/amphosted/uploads/CSb3k1pZcsi4BtyuOhx3.flv
^XERROR:
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flv/stream.rb:257:in `index'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flv/stream.rb:257:in `frame_sequence'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flv/stream.rb:256:in `collect'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flv/stream.rb:256:in `frame_sequence'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flv/stream.rb:270:in `framerate'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flv/stream.rb:131:in `add_meta_tag'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flvtool2/base.rb:184:in `add_meta_data_tag'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flvtool2/base.rb:137:in `update'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flvtool2/base.rb:47:in `send'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flvtool2/base.rb:47:in `execute!'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flvtool2/base.rb:46:in `each'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flvtool2/base.rb:46:in `execute!'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flvtool2/base.rb:239:in `process_files'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flvtool2/base.rb:225:in `each'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flvtool2/base.rb:225:in `process_files'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flvtool2/base.rb:44:in `execute!'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flvtool2.rb:168:in `execute!'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/lib/flvtool2.rb:228
ERROR: /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
ERROR: /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
ERROR: /usr/lib/ruby/gems/1.8/gems/flvtool2-1.0.6/bin/flvtool2:2
ERROR: /usr/bin/flvtool2:19:in `load'
ERROR: /usr/bin/flvtool2:19
root@svr3 [~]#

View 2 Replies View Related

Steps To Install FFMPEG On Centos5

May 5, 2009

Can someone please provide me steps to install FFMPEG on centos5.

View 4 Replies View Related

How To Install FFMPEG On Fedora Core 4

Sep 12, 2007

i want to install FFMPEG on my server , i tried to install from here http://vexxhost.com/blog/category/ffmpeg/

but i got error in step no. 6 , put in your consideration i didn't do the step no. 5
coz my OS is Fedora core 4.

plz any one have the right way to install , tell me.

View 3 Replies View Related

FFmpeg-Php Phpize Install Issue

Apr 27, 2007

I'm trying to install ffmpeg-php on fedora c4

When trying to phpize i get this error:

Configuring for:

PHP Api Version: 20031224
Zend Module Api No: 20041030
Zend Extension Api No: 220040412
/usr/bin/phpize: line 105: aclocal: command not found

I found a similar thread and tried their solution (yum install automake)

Downloading Packages:
warning: rpmts_HdrFromFdno: Header V3 DSA signature: NOKEY, key ID db42a60e
Public key for autoconf-2.59-5.noarch.rpm is not installed
Retrieving GPG key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora
GPG key at file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora (0x4F2A6FD2) is already installed


The GPG keys listed for the "Fedora Core 4 - i386 - Base" repository are already installed but they are not correct for this package.
Check that the correct key URLs are configured for this repository.

.. I'm pretty new to linux and have no idea whats going on/how I can resolve it - does anyone have any suggestions? If theres any more info I should post that would help let me know.

View 2 Replies View Related

How To Install Ffmpeg, Mencoder & Flvtool2

Aug 11, 2008

How do I install the following in these locations?

ffmpeg
/usr/bin/ffmpeg

mencoder
/usr/bin/mencoder

flvtool2
/usr/bin/flvtool2

View 3 Replies View Related

Plesk 11.x / Linux :: How To Install FFMPEG

May 24, 2014

How do I install FFMPEG on Pleslk 11.5?

View 1 Replies View Related

Plesk 12.x / Linux :: How To Install Ffmpeg On Server

Sep 12, 2014

I have server with the Plesk control panel on Linux server and want to install ffmpeg + MPlayer + LAME + FLVtool2 + MediaInfo + Mencoder + MP4Box + neroAacEnc , but not sure about the steps to install it. Is there any script or easy steps to install ffmpeg + MPlayer + LAME + FLVtool2 + MediaInfo + Mencoder + MP4Box + neroAacEnc on my server.

View 1 Replies View Related

Plesk 12.x / Linux :: How To Install Ffmpeg On Server With Control Panel

Aug 21, 2014

I have server with the Plesk control panel on Linux server and want to install ffmpeg but not sure about the steps to install it. Any script or easy steps to install ffmpeg on my server.

View 1 Replies View Related

Hosting With FFMPEG, FFMPEG-PHP, Xvid, Mp3lame, FLV2Tool Support

Jun 9, 2009

The hosting with FFMPEG, FFMPEG-PHP, Xvid, Mp3lame, FLV2Tool Support is necessary.

It was pleasant downtownhost.com,
But cost 4.95 only at payment of 36 months! It is a lot of ((

There are similar variants?

View 13 Replies View Related

How To Install CentOS 5 64-Bit

Nov 5, 2009

I want to install CentOS 5 on my VPS and my current template's don't have it. How do i do this? Or better still, if you have a template pre-made,

View 8 Replies View Related

Xen And CentOS Install

Oct 25, 2009

I have installed Xen on my CentOS ded box, and now I'm trying to install a Guest OS, also CentOS using the following command:

Code:
virt-install -p --prompt -n CentOS2 -r 512 --file=/vm/centos.img --file-size=15 -l [url]

Now everything starts, I come to the network screen (right after the language selection), leave everything on default, it says it is trying to configure the network with DHCP for eth0 and then hangs there for a moment a does nothing.

How do I continue, how do I configure the network correcly.

I am just starting to learn Xen and would appreciate all the input I get.

View 4 Replies View Related

How To Install ClamAV On Centos 5

May 14, 2009

I tried to install clamav, but i'm out of luck. It won't install at all. it gives the folloing error:

Transaction Check Error:
file /etc/freshclam.conf from install of clamav-0.95.1-4.el5.rf.i386 conflicts with file from package clamav-toaster-0.95.1-1.3.27.i386 ....

View 4 Replies View Related

Install 32 Bit Pae Kernel On Centos

Apr 3, 2009

i have a 32bit centos running with 8 gigs, but only 7 is registering when i contacted support they told me

Your server does in fact have 8GB of physical memory however the reason it is not being recognized is due to the fact that you are using a 32 bit operating system. By default, the 8GB would be recognized if it were a 64 bit OS however on a 32 bit operating system, you must install and boot into the PAE kernel (physical address extension) for the 8GB to be recognized and utilized. The PAE kernel can be installed through yum when connected to your server as root over SSH. Once you have installed the kernel, you will need to reboot the server for these changes to take effect

i tried

yum pae install

yum pae kernel install

both didnt work can anyone give me a quick step by step guide on how to go about this.

View 12 Replies View Related

I Can't Install Java In Centos

Apr 2, 2009

I try more time noting

root@serv01 [/opt]# ./j2eesdk-1_4_03-linux.bin
Checking available disk space...
Checking Java(TM) 2 Runtime Environment...
Extracting Java(TM) 2 Runtime Environment files...
Extracting installation files...
Launching Java(TM) 2 Runtime Environment...
Error: The Java(TM) Virtual Machine has aborted.
Deleting temporary files...
Deleting temporary files...

how can install java because i need to it

View 12 Replies View Related

Fresh Centos Install

Mar 21, 2008

I finally got my hands on a test server and am playing with Centos.

I got it installed but am not sure where to go from here in regards to getting it setup for web server use.

Is there any documentation on what to install for web server use? Is there a cheat sheet out there I can follow?

View 10 Replies View Related

Red5 Install Centos

Jun 1, 2008

Been fooling around with red5 too long now. I really need this app to work so I can use the audio/video option on my chat.

I'm willing to pay the person who can make red5 work on my linux centos server. I allready installed ant & red5, the java is just a bit to tricky for me.

Like I said, I'm willing to pay a fee for the person who can make the red5 work.

View 2 Replies View Related

How To Install Zimbra On CentOS 5

Nov 19, 2008

I have a dedicated linux server and i want to install zimbra(open source mail server) on my server,i have googled and install it but it doesn't work..i can't login in to admin panel [url]but it throws page load error.

View 4 Replies View Related

Which Packages To Install On Centos

Apr 2, 2008

im going to be installing centos 5.1 on a webserver. which packages should i install. ie when it gives the the options for kde knome server server with gui etc?

View 6 Replies View Related

How Do I Install Adns On WHM/Centos 4

Jan 31, 2008

I am using apachetop and it says in order to resolve host names (-r flag), adns must be installed. Host names aren't being resolved, so it appears I don't have adns, and I have googled but can't figure out where to get it and how to install it.

View 2 Replies View Related

Install Cpanelon Centos

May 23, 2007

i run cd home
wget -q [url] sh latest

but give me error

error: [url] : import read failed.
Your operating system's rpm update method (yum) was not able to locate the glibc package. This is an indication of an improper setup. You must correct this error before you can proceed.

View 8 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved