使用php exec运行youtube-dl

问题描述 投票:1回答:1

我正在尝试使用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阻止,因为我能够通过终端成功运行命令

php youtube-dl
1个回答
1
投票

通过在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");
}

?>
© www.soinside.com 2019 - 2024. All rights reserved.