php_ffmpeg 不工作

发布于 2024-11-24 21:50:07 字数 318 浏览 1 评论 0原文

我已经在我的 xampp 上的 c:/xampp/php/ext/php_ffmpeg.dll 下安装了 php_ffmpeg 扩展 - 根据 phpinfo() 它似乎已正确安装。 但是 - 当尝试从视频创建缩略图时,它执行时没有错误,但我没有得到任何图像..apache 错误日志显示:命令“ffmpeg”拼写错误或找不到。 我的代码是:

$cmd = "ffmpeg  -i myvideo.flv -f mjpeg -vframes 1 -s 150x150 -an thumbnail.jpg";
exec($cmd);

任何想法出了什么问题?

i've installed the php_ffmpeg extension on my xampp under c:/xampp/php/ext/php_ffmpeg.dll
- according to phpinfo() it seems to be properly installed.
however - when trying to create a thumbnail from a video it is executing without errors, but i'm not getting any image .. the apache error log is showing: command "ffmpeg" is either mis-spelled or couldn't be found.
my code is:

$cmd = "ffmpeg  -i myvideo.flv -f mjpeg -vframes 1 -s 150x150 -an thumbnail.jpg";
exec($cmd);

any ideas what's wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟酉 2024-12-01 21:50:07

您正在 PHP 外部执行 shell 命令 (ffmpeg -i ...),而不使用 PHP 扩展 ffmpeg-php。该扩展为 PHP 提供了一些功能,请参阅 ffmpeg-php API 文档

如果您坚持使用 ffmpeg 命令行程序,请查看 ffmpeg 项目。 Windows 二进制文件可以在此处下载。可以从此处获取命令行应用程序ffmpeg的文档。如有必要,请使用 ffmpeg 二进制文件的完整路径:

$ffmpeg = "C:\\Program Files\ffmpeg\ffmpeg.exe";
$cmd = "$ffmpeg  -i myvideo.flv -f mjpeg -vframes 1 -s 150x150 -an thumbnail.jpg";
exec($cmd);

You're executing a shell command (ffmpeg -i ...) outside PHP, without using the PHP extension ffmpeg-php. That extension provides some functions to PHP, see ffmpeg-php API documentation.

If you insist on using the ffmpeg command-line program, take a look at the ffmpeg project. Windows binaries can be downloaded here. The documentation for the commandline application ffmpeg can be reached from here. If necessary, use the full path to the ffmpeg binary:

$ffmpeg = "C:\\Program Files\ffmpeg\ffmpeg.exe";
$cmd = "$ffmpeg  -i myvideo.flv -f mjpeg -vframes 1 -s 150x150 -an thumbnail.jpg";
exec($cmd);
你怎么这么可爱啊 2024-12-01 21:50:07

您没有安装 ffmpeg 或者它不在您的路径中。您在这里所做的与 php_ffmpeg 扩展无关。您正在尝试执行 ffmpeg 二进制文件。

如果您想尝试使用 php_ffmpeg,请参阅 API 文档

You don't have ffmpeg installed or it's not in your path. What you're doing here has nothing to do with the php_ffmpeg extension. You're attempting to execute the ffmpeg binary.

See the API documentation for php_ffmpeg if you wish to try using it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文