gpt4 book ai didi

php - 从 PHP 脚本执行包含 FFmpeg 的 shell 脚本

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

我正在尝试通过 shell_exec() 在 PHP 中运行 shell 脚本。 shell 脚本使用 FFmpeg 合并两个 mp3 文件。我已经在我的终端中测试了代码,它工作得很好。但是,我无法让它与 php 一起使用。这应该在我单击网页上的按钮时运行(我使用的是 WordPress)。当我尝试这样做时,它会进入 shell 脚本页面,并通过它。但是,似乎 FFmpeg 不起作用。

image of webpage

我打电话:

$new_file = realpath(dirname(__FILE__) . '/../../../scripts'). '/' . $new_file;
$path = realpath(dirname(__FILE__) . '/../../../scripts/combine-mp3.sh');

我从存储在数据库中的对象中获取 $ad_file 和 $main_file。
$output = shell_exec('bash ' . $path . ' ' . $ad_file .  ' ' . $main_file . ' ' . $new_file);
echo "<pre>$output</pre>";

它的外观示例:
bash /Users/me/Documents/websites/zzz/wp-content/plugins/myplugin/scripts/combine-mp3.sh http://localhost/zzz/wp-content/uploads/mp3/News_Intro.mp3 http://localhost/zzz/wp-content/uploads/mp3/main_file.mp3 new_file_test.mp3
The combine-mp3.sh then gets run:
#this script requires 3 files, input1, input2 and output
echo -e "Input File 1:\t" $1
echo -e "Input File 2:\t" $2
echo -e "Output File:\t" $3

#make sure there are not temporarily files floating around, they use long specific names to avoid accidentally removing important files
rm combine-mp3-temp-file-1.mp3
rm combine-mp3-temp-file-2.mp3

#create intermediate files at 128kbps
ffmpeg -i $1 -f mp3 -ab 128k -ar 44100 -ac 2 combine-mp3-temp-file-1.mp3
ffmpeg -i $2 -f mp3 -ab 128k -ar 44100 -ac 2 combine-mp3-temp-file-2.mp3

#combine the two intermediate files
ffmpeg -i "concat:combine-mp3-temp-file-1.mp3|combine-mp3-temp-file-2.mp3" -acodec copy $3

#remove temporary files now they are not needed
rm combine-mp3-temp-file-1.mp3
rm combine-mp3-temp-file-2.mp3

我认为这可能是环境或其他东西。但我不知道出了什么问题。

最佳答案

所以我找到了解决方案。但我不确定它是否适合长期使用。我必须指定 ffmpeg 的位置。/usr/locacl/bin/ffmpeg 例如。但我对将来使用它感到紧张。是否有可能将其存储在其他地方?

关于php - 从 PHP 脚本执行包含 FFmpeg 的 shell 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54891388/

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