AllTube视频解析离线下载youtube搭建教程
AllTube视频解析离线下载,也是基于youtube-dl。github地址: https://github.com/Rudloff/alltube
作者地址有详细方法,也可以在宝塔简单安装。
PHP7.2安装fileinfo、intl扩展
宝塔新建网站绑定域名,在宝塔目录远程下载https://github.com/Rudloff/alltube/releases/download/3.0.0/alltube-3.0.0.zip
把config目录下的config.example.yml改名为config.yml
php禁用函数里删除propen、proc_open
设置Nginx伪静态
location ~ /\. {
deny all;
}
location / {
try_files $uri /index.php?$args;
}
True to stream videos through server
Set to "ask" if you want to allow it but not enable by default.
stream: True
这个默认是false,改下之后,点击download就直接下载mp4文件。