如何在 WampServer 2.0 (Windows XP) 中安装 FFMpeg [英] How to install FFMpeg in WampServer 2.0 (Windows XP)

查看:19
本文介绍了如何在 WampServer 2.0 (Windows XP) 中安装 FFMpeg的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要在我的本地主机上安装 ffmpeg PHP 扩展,以便我可以测试我的一些脚本,但我在弄清楚如何做到这一点时遇到了麻烦.

I need to install the ffmpeg PHP extension on my localhost so I can test few of my scripts but I am having troubles figuring out how to do that.

我有 WampServer 2.0 和 PHP 5.2.9-2,我的操作系统是 Windows XP.请有人给我一步一步的说明.

I have WampServer 2.0 with PHP 5.2.9-2, my OS is Windows XP. Please somebody give me step by step instructions.

我在这里找到了一些 Windows 版本:http://sourceforge.net/projects/ffmpeg-php/files/

I have found some Windows builds here: http://sourceforge.net/projects/ffmpeg-php/files/

但我不知道要下载哪个以及如何处理文件.

But I don't know which one to download and what to do with files.

到目前为止我所做的:

  1. 下载 ffmpeg_new
  2. 将php_ffmpeg.dll从php5文件夹复制到C:wampinphpphp5.2.9-2ext
  3. 将文件从 common 复制到 windows/system32 文件夹
  4. 将 extension=php_ffmpeg.dll 添加到 php.ini 文件
  5. 重新启动所有服务(Apache、PHP...)

使用此代码后出现错误:

I am gettings an error after using this code:

            $extension = 'ffmpeg';
            $extension_soname = 'php_ffmpeg.dll';
            $extension_fullname = PHP_EXTENSION_DIR . "/" . $extension_soname;

            // load extension
            if(false === extension_loaded($extension)) {
                if (false === dl($extension_soname))
                    throw new Exception("Can't load extension $extension_fullname
");
            }

错误:

Warning: dl() [function.dl]: Not supported in multithreaded Web servers - use extension=ffmpeg.dll in your php.ini in C:wampwwwhunnyhiveapplicationmodulesdefaultcontrollersMyAccountController.php on line 314

另外,我也从上面得到了例外.

Plus I also get the exception from above.

推荐答案

将此行添加到您的 php.ini 文件

add this line to your php.ini file

[PHP_ffmpeg]
extension=php_ffmpeg.dll

这篇关于如何在 WampServer 2.0 (Windows XP) 中安装 FFMpeg的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆