Jul 4th, 2009
Lunarpages 4th July Coupon Code
Happy 4th July!
Save $50 on Lunapages 12/24/60 Month Basic Hosting Plans with COUPON CODE 4th JULY
Happy 4th July!
Save $50 on Lunapages 12/24/60 Month Basic Hosting Plans with COUPON CODE 4th JULY
Bounceweb have been recognized as one of the best Ffmpeg Web Hosts
TX, July 1, 2009 — “It is a well known fact that people cannot spend hundreds of dollars just for hosting their site. We are able to see hundreds of php scripts that can instantly create a video website. Creating a website is everyone’s dream, and it will be much more interesting to have your own video website like youtube. It is a true fact that even novice programmers can create their own video sites using the php scripts within just a few minutes, unfortunately, these video sites come up with huge hosting requirements. Though there are lots of hosting service providers who can meet the requirements to launch a video website, the costs will be way out of reach for a normal person. The cost doesn’t matter for a commercial website but for personal video sites, Cheap FFmpeg Hosting is the answer. Not only for the personal video websites, the commercial websites can also maximize their profits through our FFmpeg hosting plan”, says Mr. Joey Smith of bounceweb.com.
Speaking about the specialty of the FFmpeg hosting provided at bounceweb, Mr. Joey Smith said, “Cheap FFmpeg Hosting is not widely available out there. We bet that our FFmpeg hosting plans are the cheapest in the market. Many people have a misconception that the Cheap FFmpeg Hosting will not be suitable for the video websites because they will be slow. The true fact is that the cheap pricing doesn’t mean that they will be slow, instead it just means that the chap FFmpeg hosting will only have the needed features to host a great video website. The unwanted money eating tools and features are eliminated in the Cheap FFmpeg Hosting.”
Speaking on the move, Mr. Joey Smith said, “YouTube Clone Hosting is the current attraction. That is the reason why8 we have added a lot about the YouTube Clone Hosting in our FFmpeg Hosting Blog. People out there can use the FFmpeg Hosting Blog to share their ideas and get help in hosting the video sites. It makes us really happy to see that all our clients have made it possible for us to reach the top of the web hosting service providers.”
About Bounceweb.Com
Bounceweb, a shared web hosting and reseller hosting provider will provide solutions to your needs. They are a hosting provider specialized in Linux Web hosting and our main services are: cpanel web hosting, reseller hosting and domain registration. Their shared webhosting plans are cheap, and 100% compatible with the trend softwares, like Magento, Mambo, Joomla and Wordpress.
For more information, visit www.bounceweb.Com
FFMPEG is open source software released under the GNU which allows you to convert video and audio files on the fly, into a variety of different formats. It supports most industry-standard codec and can convert from one file format to another quickly and easily. This guide is intented for the installatiion of ffmpeg, ffmpeg-php, mplayer, mencoder, lame mp3 encoder, flvtool2, libVorbis, and libogg and tested on CentOS5 and RHEL3 systems with Cpanel.
To start:
cd /usr/src
Download MPlayer and Codes, FlvTool2, Lame, and ffmpeg-php:
MPlayer codecs (check for latest release):
wget http://www3.mplayerhq.hu/MPlayer/releases/codecs/essential-20071007.tar.bz2
MPlayer (check for latest release):
wget http://www4.mplayerhq.hu/MPlayer/releases/MPlayer-1.0rc2.tar.bz2
FlvTool2 (check for latest release):
wget http://rubyforge.org/frs/download.php/17497/flvtool2-1.0.6.tgz
Lame MP3 Encoder (check for latest release):
wget http://easynews.dl.sourceforge.net/sourceforge/lame/lame-3.97.tar.gz
FFMPEG-PHP (check for latest release):
wget http://nchc.dl.sourceforge.net/sourceforge/ffmpeg-php/ffmpeg-php-0.5.3.1.tbz2
Extract downloaded files:
tar -zxvf flvtool2-1.0.6.tgz
tar -zxvf lame-3.97.tar.gz
bunzip2 essential-20071007.tar.bz2; tar xvf essential-20071007.tar
bunzip2 MPlayer-1.0rc2.tar.bz2; tar xvf MPlayer-1.0rc2.tar
bunzip2 ffmpeg-php-0.5.3.1.tbz2; tar xvf ffmpeg-php-0.5.3.1.tar
Create and import the Codecs directory:
mkdir /usr/local/lib/codecs/
mv essential-20071007/* /usr/local/lib/codecs/
chmod -Rf 755 /usr/local/lib/codecs/
Install Subversion and Ruby using Yum:
yum install subversion (You may need to open SVN port 3690)
yum install ruby (If you’re on cPanel you can alternatively use /scripts/installruby)
yum install ncurses-devel
Get FFMPEG and MPlayer from SVN:
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg
svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer
Install LAME:
cd /usr/src/lame-3.97
./configure && make && make install
Install libOgg and libVorbis:
yum install libogg.i386 libvorbis.i386 libvorbis-devel.i386
Install flvtool2:
cd /usr/src/flvtool2-1.0.6/
ruby setup.rb config
ruby setup.rb setup
ruby setup.rb install
Install MPlayer:
cd /usr/src/MPlayer-1.0rc2
./configure && make && make install
Install ffMPEG:
cd /usr/src/ffmpeg/
mkdir tmp
chmod 777 tmp
export TMPDIR=./tmp
./configure –enable-libmp3lame –enable-libvorbis –disable-mmx –enable-shared
echo ‘#define HAVE_LRINTF 1? >> config.h
make && make install
export TMPDIR=/tmp
Finalize the codec setups:
ln -s /usr/local/lib/libavformat.so.50 /usr/lib/libavformat.so.50
ln -s /usr/local/lib/libavcodec.so.51 /usr/lib/libavcodec.so.51
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/libavformat.so.51 /usr/lib/libavformat.so.51
You may get an error about a library path not being found, if so, run:
export LD_LIBRARY_PATH=/usr/local/lib
Install FFMPEG-PHP:
cd /usr/src/ffmpeg-php-0.5.0/
phpize
./configure && make && make install
ln -s /usr/local/bin/ffmpeg /usr/bin/ffmpeg
ln -s /usr/local/bin/mplayer /usr/bin/mplayer
Add extension to php.ini (find the correct php.ini file):
[ffmpeg]
extension_dir=/usr/local/lib/php/extensions/no-debug-non-zts-20060613/ffmpeg.so
extension=ffmpeg.so
Restart Apache and check that the module is loaded in PHP:
/etc/init.d/httpd restart
Test ffmpeg from command line and if you get this errors:
ffmpeg: error while loading shared libraries: libavformat.so.51:…
execute: /usr/local/lib >>/etc/ld.so.conf and reload library cache with ldconfig -v
Verify ffmpeg installation:
php -r ‘phpinfo();’ | grep ffmpeg
If you get the folowing results then FFMPEG and all it’s components are installed correctly:
ffmpeg
ffmpeg support (ffmpeg-php) => enabled
ffmpeg-php version => 0.5.3.1
ffmpeg-php gd support => enabled
ffmpeg.allow_persistent => 0 => 0
ffmpeg.show_warnings => 0 => 0