FFMPEg Installation in Opensuse 11.1 (Linux) FFMEG Installation
List of the packages required for the FFMPEG
1. essential-20061022.tar.bz2
2. lame-3.97.tar.gz
3. libogg-1.1.3.tar.gz
4. libvorbis-1.1.2.tar.gz
5. flvtool2_1.0.5_rc6.tgz
6. ffmpeg.tar
7. ffmpeg-php-0.5.0.tar.bz2
Extract the file essential-20061022.tar.bz2
#tar jxvf essential-20061022.tar.bz2
Create a Directory
#mkdir /usr/local/lib/codecs/
move all the files to /usr/local/lib/codecs
#mv essential-20061022/* /usr/local/lib/codecs/
change the permission for files inside the folder
#chmod -R 755 /usr/local/lib/codecs/
Extract the file lame-3.97.tar.gz
#tar zxvf lame-3.97.tar.gz
Change the Directory
#cd lame-3.97
#./configure
#make
#make install
Extract the file libogg-1.1.3.tar.gz
#tar zxvf libogg-1.1.3.tar.gz
Change the Directory
#cd libogg-1.1.3
#./configure
#make
#make install
Extract the file libvorbis-1.1.2.tar.gz
#tar zxvf libvorbis-1.1.2.tar.gz
Change the Directory
#cd libvorbis-1.1.2
#./configure
#make
#make install
Extract the file flvtool2_1.0.5_rc6.tgz
#tar zxvf flvtool2_1.0.5_rc6.tgz
Change the Directory
#cd flvtool2_1.0.5_rc6
#ruby setup.rb config
#ruby setup.rb setup
#ruby setup.rb install
Extract the file ffmpeg.tar
#tar zxvf ffmpeg.tar
Change the Directory
#cd ffmpeg
#./configure --enable-libmp3lame --enable-libvorbis --disable-mmx --enable-shared
#make
#make install
Create Link for the files below
#ln -s /usr/local/lib/libavformat.so.52 /usr/lib/libavformat.so.52
#ln -s /usr/local/lib/libavutil.so.49 /usr/lib/libavutil.so.49
#ln -s /usr/local/lib/libmp3lame.so.0 /usr/lib/libmp3lame.so.0
# ln -s /usr/local/lib/libavcodec.so.51 /usr/lib/libavcodec.so.51
# ln -s /usr/local/lib/libavdevice.so.52 /usr/lib/libavdevice.so.52
Extract the file ffmpeg-php-0.5.0.tar.bz2
#tar jxvf ffmpeg-php-0.5.0.tar.bz2
#phpize
#./configure
#make
#make install
__________________ SanS
Last edited by sans : 05-15-2009 at 03:53 AM.
|