描述:live-torrent是一个强大的BT Web客户端工具,支持BT搜索和云广播。我们可以直接使用程序内置的引擎搜索资源,或者通过磁链接上传种子文件或者添加任务。该程序支持自动识
描述:live-torrent是一个强大的BT Web客户端工具,支持BT搜索和云广播。我们可以直接使用程序内置的引擎搜索资源,或者通过磁链接上传种子文件或者添加任务。
该程序支持自动识别种子中的视频文件。点击播放按钮直接在线播放。该程序支持与open字幕对接,并自动为视频添加字幕。同时还提供热门电影列表,并提供相应资源供你播放下载。不过唯一有点小遗憾的是不支持中文资源的在线搜索,所以中文资源只能上传自己的种子文件进行识别、回放和下载。
屏幕上显示程序运行的图片手动安装Github地址:https://github.com/Davenchy/live-torrent
1.安装节点
#Debian/Ubuntu系统curl -sL https://deb.nodesource.com/setup_10.x | bash -apt install -y git nodejs #CentOS系统curl -sL https://rpm.nodesource.com/setup_10.x | bash -yum install nodejs git -y
2.安装实时种子
git clone https://github.com/Davenchy/live-torrentcd live-torrent#安装依赖npm i#打包运行npm run buildnohup npm start&
安装后,它可以通过ip:3000访问Web客户端。
码头设备1.安装Docker
#CentOS 6rpm -iUvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpmyum update -yyum -y install docker-ioservice docker startchkconfig docker on#CentOS 7、Debian、Ubuntucurl -sSL https://get.docker.com/ | shsystemctl start dockersystemctl enable docker
2.安装实时种子
docker run --restart=always --name live-torrent -d -p 8080:8080 davenchy/live-torrent
然后通过ip:8080访问Web客户端。
最后,如果不能访问Web,可能要检查防火墙端口,如果有安全组就释放相关端口。
下面是一个CentOS系统防火墙打开命令,比如打开端口3000,大致如下:
#CentOS 6iptables -I INPUT -p tcp --dport 3000 -j ACCEPTservice iptables saveservice iptables restart#CentOS 7firewall-cmd --zone=public --add-port=3000/tcp --permanentfirewall-cmd --reload