gpt4 book ai didi

php - FFMPEG 500 内部服务器错误

转载 作者:行者123 更新时间:2023-12-04 23:28:34 25 4
gpt4 key购买 nike

$cmd = 'ffmpeg -i temp/'.$temp_name.' -i watermark/watermark.png -filter_complex "overlay=x=(main_w-overlay_w-10):y=(main_h-overlay_h-10)" -codec:a copy videos/'.$filename;
system($cmd);

在我的 bluehost 专用服务器上,此命令适用于小尺寸(~900kb)视频,但是当我上传大尺寸(~8MB)视频时,我得到 500 内部服务器错误。它在我的本地机器上运行良好。
服务器上的 ffmpeg 版本是 2.2.4
服务器上的 php 版本是 5.4.22
请指导我。

最佳答案

如果这对您有帮助,请检查此项。它正在为我工​​作并创建 flv 文件。

$dir = "YOUR_DIR_PATH";
$command = "/usr/local/bin/ffmpeg -i '" . $dir . $file . "' -an -ss 00:00:03 -an -r 1 -vframes 1 -y '" . $dir . str_replace(".flv", ".jpg'", $file) . ";";
mail("testemail@gmail.com","test flv to image ",$command);// Send Email to check command(Optional)
echo exec("$command");

关于php - FFMPEG 500 内部服务器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30973625/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com