Aqui les dejo la data que me pasaron y con la que instale las extensiones de video en un par de servers, aclaro que ambos servers estan corriendo ostube y funcionaron muy bien
================================================== =======
Basic installation instructions for external Software
================================================== =======
-> Create a folder where you store the software archives we want to build and change in there:
mkdir /root/self_build
cd /root/self_build
****************************
-> Now we install at first the jpeg headers and ruby from your repository:
Debian:
apt-get install libjpeg-dev ruby
RedHat/Fedora/CentOS:
Make sure yum is installed. Otherwise you have to use rpm manually.
yum install libjpeg-devel ruby
SuSE:
yast2 -i libjpeg-devel ruby
****************************
-> Get all the software needed using the downloading swissknife 'wget':
1. libmp3lame:
wget
http://downloads.sourceforge.net/lam...2&big_mirror=0
2. Mplayer:
wget
http://www2.mplayerhq.hu/MPlayer/rel...1.0rc1.tar.bz2
3. Codecs for Mplayer - select the one for your environment (32bit / 64bit)
wget
http://www2.mplayerhq.hu/MPlayer/rel...071007.tar.bz2
wget
http://www2.mplayerhq.hu/MPlayer/rel...071007.tar.bz2
4. Flvtool2:
wget
http://rubyforge.org/frs/download.ph...ool2-1.0.6.tgz
****************************
-> Now change directory to /usr/local/lib, decompress the codecs package there and rename the newly created folder to 'codecs':
cd /usr/local/lib
tar xvjf /root/self_build/essential-20071007.tar.bz2
mv essential-20071007 codecs
cd /root/self_build
****************************
-> The first compiling job: we build the lame library
tar xzf lame-3.97.tar.gz
cd lame-3.97
./configure && make && make install
cd ..
If there are error messages like 'no suitable compiler found', you have to install some development packages from your repository. You do that just like I described above (jpeg headers and ruby)
- g++ (gcc)
- make
- automake
- autoconf
- patch
- pkgconfig
</EM>
-> Now Mplayer:
tar xvjf MPlayer-1.0rc1.tar.bz2
cd Mplayer-1.0rc1
./configure
At this point LOOK at the configure output! It will possibly prevent you from later frustrations! Make sure both jpeg output support and libmp3lame (for mencoder) are activated automatically here. If this is not the case, check again if you really installed the jpeg headers and the lame library. Then open the file /etc/ld.so.conf, add the line /usr/local/lib, save the file and execute ldconfig. Now clean up the previously made configuration for Mplayer by executing make distclean and run ./configure again. Now lame and jpeg headers should be found in the system. If so, go ahead with:
make && make install
cd ..
****************************
-> Finally we install Flvtool2:
tar xzf flvtool2-1.0.6.tgz
cd flvtool2-1.0.6
ruby setup.rb config
ruby setup.rb setup
ruby setup.rb install
cd ..
================================================== ===============
At this point all software packages urgently needed by video service
================================================== ===============
Espero les sirva la data