安裝方法:1、下載ffmpeg安裝包,使用tar命令進行解壓;2、使用make命令編譯安裝ffmpeg;3、3、載ffmpeg-php安裝包,使用tar命令進行解壓;4、使用make命令編譯安裝ffmpeg-php即可。
本教學操作環境:windows7系統、PHP7.1版,DELL G3電腦
1、安裝ffmpeg
(1)獲取安裝包
wget -c wget http://down1.chinaunix.net/distfiles/ffmpeg-0.4.9-p20051120.tar.bz2
(2)解壓
tar -xvf ffmpeg-0.4.9-p20051120.tar.bz2
(3)編譯安裝
./configure --prefix=/usr/local/ffmpeg --enable-shared make make install
(4)測試
直接輸入:ffmpeg
ffmpeg version CVS, build 3277056, Copyright (c) 2000-2004 Fabrice Bellard configuration: --prefix=/usr/local/ffmpeg --enable-shared built on Oct 16 2013 17:05:16, gcc: 4.4.7 20120313 (Red Hat 4.4.7-3) usage: ffmpeg [[infile options] -i infile]... {[outfile options] outfile}... Hyper fast Audio and Video encoder Main options: -L show license -h show help ................................省略
如果編譯報如下錯誤
yasm not found, use --disable-yasm for a crippled build的錯誤,需要先編譯安裝yasm
yasm下載地址:http://yasm.tortall.net/Download.html
下載原始碼包解壓後,編譯安裝
./configure make make install
如果測試時報如下錯誤
ffmpeg: error while loading shared libraries: libavdevice.so.52: cannot open shared object file: No such file or directory」
解決辦法
vi /etc/ld.so.conf
加入
/usr/local/ffmpeg/lib
然後執行
ldconfig
2、安裝ffmpeg-php
(1)下載安裝包
wget http://jaist.dl.sourceforge.net/project/ffmpeg-php/ffmpeg-php/0.5.3.1/ffmpeg-php-0.5.3.1.tbz2
(2)解壓
tar -xvf ffmpeg-php-0.5.3.1.tbz2
(3)編譯安裝
cd ffmpeg-php-0.5.3.1 ./configure --with-php-config=/usr/local/php/bin/php-config --with-ffmpeg=/usr/local/ffmpeg make make install
(4)測試
在php的設定php.ini檔案,新增如下內容
extension=ffmpeg.so
重新啟動apache或php-fpm,用php測試
/usr/local/php/bin/php -r 'phpinfo();' | grep ffmpeg 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 ............................省略
3、遇到的錯誤解決如下
(1)如果在make 時發現錯誤提示:make: *** [ffmpeg_frame.lo] Error 1 則:
mv ffmpeg_frame.loT ffmpeg_frame.lo
然後重新make;make install
(2)如果呼叫ffmepg-php模組錯誤提示:
php: symbol lookup error: /usr/local/php/lib/php/extensions/no-debug-non-zts-20060613/ffmpeg.so: undefined symbol: register_ffmpeg_frame_class
則修改ffmpeg_frame.c,將3處的PIX_FMT_RGBA32 更改為PIX_FMT_RGB32即可。
vi ffmpeg_frame.c :%s/PIX_FMT_RGBA32/PIX_FMT_RGB32 :wq!
然後重新configure;make;make install
(3)如果make 時報
make: *** [ffmpeg-php.lo] Error 1
需要在編譯時,加上./configure --with-php-config=/usr/local/php/bin/php-config
如果還是不行,請更換ffmpeg和ffmpeg-php的版本試試,也可能是版本間不相容。
推薦學習:《》
以上就是linux怎麼安裝ffmpeg-php擴充套件的詳細內容,更多請關注TW511.COM其它相關文章!