|
|
|
HowTo compile ffmpeg and fobs |
会員登録(SSL) 会員専用(SSL) |
|
インストールに関して ffmpegとfobsのダウンロード ffmpegとfobsはcvsかsvnかによって開発が進められているので、最新版をダウンロード。 fobs-0.4.1 をダウンロードするとffmpegのソースも含まれている ffmpegのcompile時の参考にしたページ。 http://howto-pages.org/ffmpeg/ により、 http://lame.sourceforge.net/index.php.....mp3 http://howto-pages.org/ffmpeg/.....libgsm-1.0.13.tar.bz2 http://www.xvid.org/.....xvid http://www.penguin.cz/~utx/amr.....amrnb-6.1.0.4.tar.bz2 amrwb-7.0.0.2.tar.bz2 http://www.xiph.org/downloads/.....libogg libvorbis http://sourceforge.net/projects/faac/.....faac faad 以上のライブラリをインストール。 First Step...ffmpeg READMEを読むと 1 - ffmpeg (CVS Snapshot 2006-11-24 or above) 2 - scons (0.9.6.1 or above) ということであったので、 # yum install scons でインストールしておく。 $ tar xfvz fobs-src-0.4.1.tar.gz $ cd fobs-src $ tar xvfz resources/current-ffmpeg.tar.gz $ cd scripts $ tar xvfz ../resources/current-scons-local.tar.gz $ cd .. .....ここでsvnを利用して最新版をinstallした $ svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg $ cd ffmpeg $ ./configure --enable-gpl --enable-libogg --enable-vorbis --enable-xvid \ --enable-libgsm --enable-mp3lame --enable-libamr-nb --enable-libamr-wb \ --enable-faac --enable-faad --enable-faadbin --enable-shared $ make $ sudo make install $ cd .. $ ./buildFobs.sh --help.....optionを確認 Notice: Check exist /usr/include/ffmpeg...if you installed before. どうにかInstallが終了 |