我正在尝试使用PHP exec()
以JSON格式获取视频详细信息我的CentOS服务器上安装了youtube-dl
。通过youtube-dl -J <VideoURL>
/ SSH
运行Terminal
可以正常工作。我的test.php
脚本返回空白页:(
echo exec("youtube-dl -J <VideoURL>");
//Installed via pip
//OR
echo exec("python /home/site/youtube-dl -J <VideoURL>");
//Downloaded as file named youtube-dl
exec
已启用,如果我进行如下测试:
if(function_exists('exec')) {
echo "exec is enabled";
}
服务器的[IP
]未被YouTube阻止,因为我能够通过终端成功运行命令
通过在test.php
文件中执行以下操作,我能够实现您的目标
<?php
if(function_exists('shell_exec')) {
header('Content-Type: application/json');
echo shell_exec("youtube-dl -J https://www.youtube.com/watch?v=zGDzdps75ns");
}
?>