How to install FFMpeg in WampServer 2.0 (Windows XP)(如何在 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
这篇关于如何在 WampServer 2.0 (Windows XP) 中安装 FFMpeg的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 WampServer 2.0 (Windows XP) 中安装 FFMpeg


- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- PHP - if 语句中的倒序 2021-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01