电脑装配网

一个支持磁力链和种子的在线搜索云播Web客户端

 人阅读 | 作者lilintao | 时间:2023-07-10 13:31

说明:live-torrent是一个功能强大的BT Web客户端工具,支持BT搜索和云播,我们可以直接使用程序内置的引擎搜索查找资源,也可以自行上传种子文件或磁力链接添加任务,程序支持自动识别种子内视频文件,点击播放按钮可以直接在线播放,该程序支持对接OpenSubtitles,自动给视频添加字幕。同时也提供一个热门电影排行榜,并提供对应资源给你播放和下载。不过唯一有点小遗憾的就是,不支持在线搜索中文资源,所以中文资源只能自己上传种子文件进行识别播放下载。

截图

手动安装

Github地址:https://github.com/Davenchy/live-torrent

1、安装NodeJS

#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、安装live-torrent

git clone https://github.com/Davenchy/live-torrentcd live-torrent#安装依赖npm i#打包运行npm run buildnohup npm start&

装好后通过ip:3000访问Web客户端了。

Docker安装

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、安装live-torrent

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

文章标签:

本文链接:『转载请注明出处』