php ffmpeg扩展如何安装
2022-12-02 09:01:16
168
{{single.collect_count}}

安装php ffmpeg扩展的方法:首先添加“ffmpeg”和“ffmpeg-devel”源;然后下载“ffmpeg-fpm-0.6.0”并安装;最后添加PHP配置文件即可。

php入门到就业线上直播课:进入学习
Apipost = Postman + Swagger + Mock + Jmeter 超好用的API调试工具:点击使用

安装php扩展 ffmpeg-php

环境: CentOS 6.5 PHP5.6安装前php 已加载GD 模块(yum install php-gd)
1、添加ffmpeg和ffmpeg-devel源

推荐:《PHP教程

cat > /etc/yum.repos.d/dag.repo <<EOF[dag]name=Dag RPM Repository for Red Hat Enterprise Linuxbaseurl=http://www.mirrorservice.org/sites/apt.sw.be/redhat/el$releasever/en/$basearch/daggpgcheck=1enabled=1EOF
登录后复制

导入签名认证

rpm --import http://www.mirrorservice.org/sites/apt.sw.be/RPM-GPG-KEY.dag.txtrpm -ivh http://www.mirrorservice.org/sites/apt.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm2、安装ffmpeg
登录后复制

yum install ffmpeg ffmpeg-devel

#0.6.5, Copyright (c) 2000-2010 Jan 29 2012 17:52:15 with gcc 4.4.5 20110214 (Red Hat 4.4.5-6)=/usr --libdir=/usr/lib64 --shlibdir=/usr/lib64 --mandir=/usr/share/man --incdir=/usr/include --disable-avisynth --extra-cflags='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=50.15. 1 / 50.15. 152.72. 2 / 52.72. 252.64. 2 / 52.64. 252. 2. 0 / 52. 2. 01.19. 0 /1.19. 00.11. 0 /0.11. 051. 2. 0 / 51. 2. 00.6.550.15. 1 / 50.15. 152.72. 2 / 52.72. 252.64. 2 / 52.64. 252. 2. 0 / 52. 2. 01.19. 0 /1.19. 00.11. 0 /0.11. 051. 2. 0 / 51. 2. 0
登录后复制

3、下载 ffmpeg-fpm-0.6.0

svn co svn://svn.code.sf.net/p/ffmpeg-php/code/branches/ffmpeg-php/ffmpeg-php-0.6.0/ /usr/local/src/ffmpeg-php-0.6.0

4、安装

cd /usr/local/src/ffmpeg-php-0.6.0

/usr/bin/phpize

./configure--enable-skip-gd-check (不启用此选项的话 安装完会显示 ffmpeg-php gd support=> disabled)

make

到这里会报错 ,如下

make: *** [ffmpeg_movie.lo] 错误 1

解决办法:

vim ffmpeg_movie.c

row 311: list_entry *le; 改为zend_rsrc_list_entry *le;
row 346: list_entry new_le;改为 zend_rsrc_list_entry new_le;
row 360: hashkey_length+1, (void *)&new_le, sizeof(list_entry),改为hashkey_length+1, (void *)&new_le,sizeof(zend_rsrc_list_entry),

重新make

报错如下:

解决办法:

sed -i's/PIX_FMT_RGBA32/PIX_FMT_RGB32/g'ffmpeg_frame.c

重新make

make install

#make installInstalling shared extensions: /usr/lib64/php/modules/
登录后复制

添加PHP配置文件

echo"extension = ffmpeg.so"/etc/php.d/50-ffmpeg.iniservice php-fpm reload#php -m|grep ffmpegffmpeg
登录后复制

以上就是php ffmpeg扩展如何安装的详细内容,更多请关注php中文网其它相关文章!

回帖
全部回帖({{commentCount}})
{{item.user.nickname}} {{item.user.group_title}} {{item.friend_time}}
{{item.content}}
{{item.comment_content_show ? '取消' : '回复'}} 删除
回帖
{{reply.user.nickname}} {{reply.user.group_title}} {{reply.friend_time}}
{{reply.content}}
{{reply.comment_content_show ? '取消' : '回复'}} 删除
回帖
收起
没有更多啦~
{{commentLoading ? '加载中...' : '查看更多评论'}}