如何在 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.
到目前为止我所做的:
- 下载 ffmpeg_new
- 将php_ffmpeg.dll从php5文件夹复制到C:wampinphpphp5.2.9-2ext
- 将文件从 common 复制到 windows/system32 文件夹
- 将 extension=php_ffmpeg.dll 添加到 php.ini 文件
- 重新启动所有服务(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
相关文章