在 XAMPP 上安装 FFMPEG

2021-12-26 00:00:00 ffmpeg xampp windows-xp php

我已经在 windows xp 上安装了 xampp 1.7.4 和 php 版本 5.3.5.如何在 windows xp 上使用 php 5.3.5 在 xampp 中安装 ffmpeg?

I have installed xampp 1.7.4 with php version 5.3.5 on windows xp. How to install ffmpeg in xampp with php 5.3.5 on windows xp?

推荐答案

您可以按照 此处 或执行以下步骤.

You can follow steps from here or do the following steps.

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

并在您的 php.ini 中启用extension=php_ffmpeg.dll"指令.

And enable "extension=php_ffmpeg.dll" directive in your php.ini.

相关文章