php_ffmpeg 不工作
我已经在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在 PHP 外部执行 shell 命令 (
ffmpeg -i ...
),而不使用 PHP 扩展ffmpeg-php
。该扩展为 PHP 提供了一些功能,请参阅 ffmpeg-php API 文档。如果您坚持使用 ffmpeg 命令行程序,请查看 ffmpeg 项目。 Windows 二进制文件可以在此处下载。可以从此处获取命令行应用程序
ffmpeg
的文档。如有必要,请使用 ffmpeg 二进制文件的完整路径:You're executing a shell command (
ffmpeg -i ...
) outside PHP, without using the PHP extensionffmpeg-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 theffmpeg
binary:您没有安装
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 thephp_ffmpeg
extension. You're attempting to execute theffmpeg
binary.See the API documentation for php_ffmpeg if you wish to try using it.