Rclone 安装配置设置命令
rclone config - 进入交互式配置选项,进行添加、删除、管理网盘等操作。
rclone config file - 显示配置文件的路径,一般配置文件在 ~/.config/rclone/rclone.conf
rclone config show - 显示配置文件信息

如何卸载删除 RClone?
想要卸载删除 rclone 配置文件,请使用以下命令列出当前的 RClone 配置路径 ▼
rclone config file
这将列出当前配置文件的路径。然后,你可以根据下面的示例删除路径位置。这将删除远程存储服务的凭据。
Rclone卸载命令
注意事项:使用以下命令删除Rclone后,你将无法再访问远程存储服务,需要重新创建它们 ▼
sudo rm /home/pi/.config/rclone/rclone.conf
要删除 rclone 命令和手册页,只需按照以下命令删除文件 ▼
sudo rm /usr/bin/rclone
sudo rm /usr/local/share/man/man1/rclone.1

Rclone下载命令语法

本地到网盘

rclone [功能选项] <本地路径> <网盘名称:路径> [参数] [参数] ...

网盘到本地

rclone [功能选项] <网盘名称:路径> <本地路径> [参数] [参数] ...

网盘到网盘

rclone [功能选项] <网盘名称:路径> <网盘名称:路径> [参数] [参数] ...

Rclone用法示例
rclone move -v /Download Onedrive:/Download --transfers=1

Rclone命令常用功能选项
rclone copy - 复制文件
rclone move - 移动文件,如果要在移动后删除空源目录,请加上 --delete-empty-src-dirs 参数
rclone sync - 同步文件:将源目录同步到目标目录和文件,只更改目标目录和文件。
rclone size - 查看网盘文件占用大小。
rclone delete - 删除路径下的文件内容。
rclone purge - 删除路径及其所有文件内容。
rclone mkdir - 创建目录。
rclone rmdir - 删除目录。
rclone rmdirs - 删除指定灵境下的空目录。如果加上 --leave-root 参数,则不会删除根目录。
rclone check - 检查源和目的地址数据是否匹配。
rclone ls - 列出指定路径下的所有的文件以及文件大小和路径。
rclone lsl - 比上面多一个显示上传时间。
rclone lsd 列出指定路径下的目录。
rclone lsf - 列出指定路径下的目录和文件。
Rclone参数命令使用方法
-n = --dry-run - 测试运行,用来查看 rclone 在实际运行中会进行哪些操作。
-P = --progress - 显示实时传输进度,500mS 刷新一次,否则默认 1 分钟刷新一次。
--cache-chunk-size SizeSuffi - 块的大小,默认5M,理论上是越大上传速度越快,同时占用内存也越多。如果设置得太大,可能会导致进程中断。
--cache-chunk-total-size SizeSuffix - 块可以在本地磁盘上占用的总大小,默认10G。
--transfers=N - 并行文件数,默认为4。在比较小的内存的VPS上建议调小这个参数,比如:在128M的小型VPS上,使用建议设置为1。
--config string - 指定配置文件路径,string为配置文件路径。
--ignore-errors - 跳过错误。比如 OneDrive 在传了某些特殊文件后会提示Failed to copy: failed to open source object: malwareDetected: Malware detected,这会导致后续的传输任务被终止掉,此时就可以加上这个参数跳过错误。但需要注意 RCLONE 的退出状态码不会为0。
当然,rclone的作用远不止于此,下面列出了一些常用的Rclone命令。

复制 rclone copy
移动 rclone move
删除 rclone delete
同步 rclone sync
附加参数:显示实时速度 -p
附加参数:限制速度40MB --bwlimit 40M
附加参数:并行文件数 --transfers=N
附加参数:保留元数据 --metadata

启动rclone systemctl start rclone
停止rclone systemctl stop rclone
查看rclone状态 systemctl status rclone
查看配置文件位置 rclone config file

Rclone日志
rclone 有 4 个级别的日志记录,ERROR,NOTICE,INFO 和 DEBUG。默认情况下,rclone 将生成 ERROR 和 NOTICE 级别消息。
-q - rclone将仅生成 ERROR 消息。
-v - rclone将生成 ERROR,NOTICE 和 INFO 消息,推荐此项。
-vv - rclone 将生成 ERROR,NOTICE,INFO和 DEBUG 消息。
--log-level LEVEL - 标志控制日志级别。
Rclone输出日志到文件命令
使用 --log-file=FILE 选项,rclone 会将 Error,Info 和 Debug 消息以及标准错误重定向到 FILE,这里的 FILE 是你指定的日志文件路径。

另一种方法是使用系统的指向命令,比如:
rclone sync -v Onedrive:/DRIVEX Gdrive:/DRIVEX > "~/DRIVEX.log" 2>&1

Rclone过滤、包含和排除参数
--exclude - 排除文件或目录。

--include - 包含文件或目录。

--filter - 文件过滤规则,相当于上面两个选项的其它使用方式。包含规则以 + 开头,排除规则以 - 开头。

Rclone文件类型过滤参数
比如 --exclude ".bak"、--filter "- .bak",排除所有 bak 文件。也可以写作。
比如 --include ".{png,jpg}"、--filter "+ .{png,jpg}",包含所有 png 和 jpg 文件,排除其他文件。

--delete-excluded 删除排除的文件。需配合过滤参数使用,否则无效。

Rclone目录过滤参数
目录过滤需要在目录名称后面加上 /,否则会被当做文件进行匹配。以 / 开头只会匹配根目录(指定目录下),否则匹配所目录。这同样适用于文件。
--exclude ".git/" 排除所有目录下的.git 目录。
--exclude "/.git/" 只排除根目录下的.git 目录。
--exclude "{Video,Software}/" 排除所有目录下的 Video 和 Software 目录。
--exclude "/{Video,Software}/" 只排除根目录下的 Video 和 Software 目录。
--include "/{Video,Software}/**" 仅包含根目录下的 Video 和 Software 目录的所有内容。

Rclone文件大小过滤参数
默认大小单位为 kBytes ,但可以使用 k ,M 或 G 后缀。
--min-size 过滤小于指定大小的文件。比如 --min-size 50 表示不会传输小于 50k 的文件。
--max-size 过滤大于指定大小的文件。比如 --max-size 1G 表示不会传输大于 1G 的文件。
注意事项:在实际测试使用中,发现大小过滤两个选项不能同时使用。

Rclone过滤规则文件参数
--filter-from <规则文件> 从文件添加包含 / 排除规则。比如 --filter-from filter-file.txt。

Rclone过滤规则文件示例:

  • secret*.jpg
  • *.jpg
  • *.png
  • file2.avi
  • /dir/Trash/**
  • /dir/**
  • *
    以下是更常见和简单的过滤用法的示例,更复杂更高端的用法,请查看Rclone官方过滤规则文档。

Rclone环境变量
rclone 中的每个选项都可以通过环境变量设置。环境变量的名称可以通过长选项名称进行转换,删除 -- 前缀,更改 - 为_,大写并添加前缀 RCLONE_。环境变量的优先级会低于命令行选项,即通过命令行追加相应的选项时会覆盖环境变量设定的值。

比如设置最小上传大小 --min-size 50,使用环境变量是 RCLONE_MIN_SIZE=50。当环境变量设置后,在命令行中使用 --min-size 100,那么此时环境变量的值就会被覆盖。

Rclone常用环境变量
RCLONE_CONFIG - 自定义配置文件路径
RCLONE_CONFIG_PASS - 若 rclone 进行了加密设置,把此环境变量设置为密码,可自动解密配置文件。
RCLONE_RETRIES - 上传失败重试次数,默认 3 次
RCLONE_RETRIES_SLEEP - 上传失败重试等待时间,默认禁用,单位s、m、h分别代表秒、分钟、小时。
CLONE_TRANSFERS - 并行上传文件数。
RCLONE_CACHE_CHUNK_SIZE - 块的大小,默认5M,理论上是越大上传速度越快,同时占用内存也越多。如果设置得太大,可能会导致进程中断。
RCLONE_CACHE_CHUNK_TOTAL_SIZE - 块可以在本地磁盘上占用的总大小,默认10G。
RCLONE_IGNORE_ERRORS=true - 跳过错误。

几个rclone的图形界面

  • rclone-webui-react

官方UI,配置、文件管理、挂载功能,无同步功能,无计划任务
https://github.com/rclone/rclone-webui-react

  • rclone-webui-angular

第三方UI,配置、文件管理、挂载功能,能管理多个远程服务器。无同步功能,无计划任务。仍在更新
https://github.com/yuudi/rclone-webui-angular

  • rclone-rc-web-gui

一个基于网络的 rclone rcd (远程控制守护程序) GUI,在某种程度上实现了双面板文件管理器的概念,如 Norton Commander、Total Commander 或 Far Manager。它可用于在本地计算机或远程主机上运行。
无配置、挂载功能,无同步功能,无计划任务。仍在更新
https://github.com/retifrav/rclone-rc-web-gui

  • RcloneNg

第三方UI,配置、文件管理、挂载功能,能管理多个远程服务器。无同步功能,无计划任务。未更新
https://github.com/ElonH/RcloneNg
启动UI
随机密码启动:

rclone rcd --rc-web-gui

指定用户名和密码

rclone rcd --rc-web-gui --rc-user YOUR-USERNAME --rc-pass YOUR-PASSWORD

更换UI
使用 --rc-web-gui
最简单的方法是让 handle 下载和提供最新版本:rclone

$ rclone rcd --transfers 1 --rc-allow-origin http://localhost:5572 \
    --rc-web-gui \
    --rc-web-fetch-url https://api.github.com/repos/retifrav/rclone-rc-web-gui/releases/latest

如果你以前使用过这个功能,那么你的系统中可能已经下载了一个不同的Web GUI,要替换它,你需要添加标志--rc-web-gui-force-update
默认情况下,将生成一个随机密码,并且还将为标头编写 Base64 编码的身份验证令牌。该令牌也将设置为 URL 查询参数 (?login_token=HERE-GOES-THE-VALUE),这是代码能够获取它的方式。rcloneAuthorization

GUI URL 将在您的 Web 浏览器中自动打开,并预置以通过初始身份验证提示,但如果您停止并再次启动它,您的浏览器很可能仍然会显示身份验证提示,尽管 URL 中有

从本地路径
从 Releases 页面获取包(或从源构建它)。在rclone rcd./js/settings.js 中设置您的主机、端口、用户名和密码。

启动并将其指向带有 Web GUI 的文件夹:rclone rcd

$ cd /path/to/rclone-rc-web-gui
$ rclone rcd --transfers 1 --rc-user YOUR-USERNAME --rc-pass YOUR-PASSWORD .

或:

$ rclone rcd --transfers 1 --rc-user YOUR-USERNAME --rc-pass YOUR-PASSWORD /path/to/web/gui

更新UI
如果您想检查更新,则可以添加到命令行。

rclone rcd --rc-web-gui-update

如果您发现您的 GUI 损坏,您可以强制它更新。

rclone rcd --rc-web-gui-force-update

https://agit.ai/leevi/duo/raw/branch/master/v.txt
星辰:http://8.210.232.168/xclive.txt
小米直播源 http://home.jundie.top:81/Cat/tv/live.txt
饭太硬: https://gh-proxy.com/raw.githubusercontent.com/dxawi/0/main/tvlive.txt
肥猫:http://我不是.肥猫.love:63/TV/tvzb.txt
分享者:https://agit.ai/66666/mao/raw/branch/master/live20220813.txt
小胡: https://agit.ai/xiaohu/tvbox/raw/branch/main/live.txt
太阳:https://agit.ai/Yoursmile7/TVBox/raw/branch/master/live.txt
时光:https://ghproxy.com/https://raw.githubusercontent.com/xmbjm/xmbjm/main/lib/zhibo.txt
多多:https://agit.ai/leevi/duo/raw/branch/master/v.txt
业余打发:https://ghproxy.com/https://raw.githubusercontent.com/yydfys/yydf/main/yydf/live.txt
运输车:https://weixine.net/tv/ysclive.txt
月光宝盒:http://52bsj.vip:81/api/v3/file/get/79119/ZB.txt?sign=iChDXDC7WJRTp7yWAyVdbY3si5sJ5eFwEgaR35YQGSo%3D%3A0
春莹:https://weixine.net/tv/ysclive.txt
猫技:http://hz752.love:63/txt/tvbs.txt
沃影视:http://my9.ltd/tv/live.txt
潇洒:https://download.kstore.space/download/2863/live.txt
人人:https://cn.kstore.space/download/2998/1/tv.txt
徐老:http://xutv.hz.cz/zb/319zb.txt
汤氏:https://agit.ai/alanchaotang/if/raw/branch/main/LIVE/l.txt
荷城茶锈:http://rihou.cc:88//hccx/baishi.txt
码上放生:https://www.bestpvp.site/tm/stable/live_stable.txt
野火:https://pastebin.com/raw/tuXBQs7U
影视范:https://agit.ai/fantaiying/fmm/raw/branch/main/tv/m3u/global.m3u
雷蒙:https://lem.clem7.repl.co/N3RD/JN/tv.txt
月光宝盒:https://gitcode.net/ygbh66/test/-/raw/master/bhzb.txt

拾光T4线路:https://gitlab.com/xmbjm/dc/-/raw/main/T4.json
拾光单线路:https://gitlab.com/xmbjm/omg/-/raw/main/omg.json
拾光智教线路:https://gitlab.com/xmbjm/srpd/-/raw/main/srpd.json
拾光精选单仓线路:https://gitlab.com/xmbjm/dc/-/raw/main/sgdc.json
https://d.kstore.space/download/4708/sgdc.json
星辰http://8.210.232.168/dc.json
宝盒没宝https://gh.con.sh/https://raw.githubusercontent.com/guot55/yg/main/max.json
挺好线路http://ztha.top/TVBox/GYCK.json
欧哥4仓https://vip.nxog.top
拾光精选单仓https://gitlab.com/xmbjm/dc/-/raw/main/sgdc.json
宝盒线路https://gh.con.sh/https://raw.githubusercontent.com/guot55/yg/main/pg/jsm.json
有毒https://tv.youdu.fan:666
天天开心http://ttkx.live:55/天天开心

饭总(推荐) http://饭太硬.top/tv

小米(推荐) http://xhww.fun:63/小米/DEMO.json
蚂蚁影视 https://codeberg.org/xinghe/MYWC/raw/branch/main/myc.txt
蜂蜜 http://蜂蜜.eu.org

蜂🈲蜜 http://大屌蜂蜜.eu.org

骚零 http://xhdwc.tk/0

高天18 https://ghproxy.com/raw.githubusercontent.com/gaotianliuyun/gao/master/9918.json

二哈18 https://ghproxy.com/https://raw.githubusercontent.com/2hacc/TVBox/main/h/h.json

gaotianliuyun的线路:https://ghproxy.com/https://raw.githubusercontent.com/gaotianliuyun/gao/master/0821.json
cyao2q线路:https://gh.cyao.tk/https://raw.githubusercontent.com/cyao2q/files/master/m.json
https://ghcy.eu.org/https://raw.githubusercontent.com/cyao2q/files/master/m.json
https://gh-proxy.com/https://raw.githubusercontent.com/cyao2q/files/master/n.json
欧歌多仓:http://tv.nxog.top/m/tv/
阿里专线1:http://yydsys.top/duo/ali
阿里专线2:https://pan.shangui.cc/f/4LBAF0/ali.json
春盈天下线路https://wds.ecsxs.com/230989.json
荷城茶秀https://ghproxy.com/https://raw.githubusercontent.com/XiaoYiChaHang/tvbox/main/ysj.json
月光宝盒:https://ghproxy.com/https://raw.githubusercontent.com/guot55/YGBH/main/ygbox.json
恒星资源:https://codeberg.org/hengxing/hx/raw/branch/main/1_hxzck.txt
https://codeberg.org/hengxing/hx/raw/branch/main/1_hxzck.txt
时光机领先版:
https://ghproxy.com/https://raw.githubusercontent.com/bestpvp/tm/main/source/stable/master_stable_github.json
http://yydsys.top/duo
http://rihou.vip:66
https://ghproxy.com/raw.githubusercontent.com/gaotianliuyun/gao/master/XYQ.json
https://www.ywsj.cf/upload/2023/10/yyzq4k.json

影视仓多仓
https://gitlab.com/ygbh1/666/-/raw/main/dcang/ygbh.json

月光宝盒多仓
https://jihulab.com/ygbh1/box/-/raw/main/dcang/dc.json
https://codeberg.org/ygbh8888/BH/raw/branch/main/ZB/ZB.txt
星河多仓
http://52bsj.vip:81/api/v3/file/get/65430/zongcang.txt?sign=9ncAS6eZ86xmIZGf5FGGdNuBvztyubgFNamtypebe08%3D%3A0

多多接口多仓https://jihulab.com/duomv/apps/-/raw/main/fast.json

多多多仓https://jihulab.com/duomv/apps/-/raw/main/duo.json

影视仓多仓http://52bsj.vip:98/xiaohu

宝盒多仓https://jihulab.com/ygbh1/box/-/raw/main/dcang/dc2.json

宝盒max多仓https://agit.ai/butterfly/md/raw/branch/master/zYGBHmax

吾爱有三日月与卿仓库地址:http://52bsj.vip:98/wuaihosue

小胡软件多仓:https://agit.ai/xiaohu/tvbox/raw/branch/main/duocang

云星日记仓库地址:https://itvbox.cc/可视TV/云星日记/仓库.json

唐僧影视:https://gitcode.net/ygbh66/test/-/raw/master/tsys.txt

猎狼多仓http://tvbox.lltv8.top

多仓
http://134.122.170.64/dc.json
http://pandown.pro/tvbox/tvbox.json
https://dxawi.github.io/0/0.json
https://xhdwc.tk/0
https://agit.ai/guot54/ygbh/raw/branch/m

福利:
https://agit.ai/pinghui/Barton/src/branch/master/%e7%a6%8f%e5%88%a9%e5%a4%a7%e5%85%a8666.txt
https://agit.ai/zzzgit/zzz/raw/branch/main/proxxx.json
单接口:https://ghproxy.net/https://raw.githubusercontent.com/ZTHA000/tvbox/main/djk1.json
福利仓库:https://ghproxy.net/https://raw.githubusercontent.com/ZTHA000/tvbox/main/flckname.json
观影仓库:https://ghproxy.net/https://raw.githubusercontent.com/ZTHA000/tvbox/main/gyckname.json

🔘吾爱:http://52bsj.vip:98/wuaihouse
🔘吾爱:http://52bsj.vip:98/wuai
🔘饭总:http:/太硬.top/tv
🔘肥猫:http://我不是.肥猫.love:63/接口禁止贩卖
🔘骚零:https://xhdwc.tk/0
🔘巧记:http://pandown.pro/tvbox/tvbox.json
🔘星辰:http://8.210.232.168/xc.json
🔘多多:http://yydsys.top/duo
🔘阿里:http://yydsys.top/duo/ali
--🔘多多:https://jihulab.com/duomv/apps/-/raw/main/fast.json
🔘讴歌:http://tv.nxog.top/api.php?mz=xb&id=1&b=欧歌
🔘多多:http://yydsys.top/duo
🔘道长:https://pastebin.com/raw/5NHaxyGR
🔘刘备:https://raw.liucn.cc/box/m.json
🔘运输:https://weixine.net/ysc.json
🔘蚂蚁:https://la.kstore.space/download/2883/0110.txt
🔘喵影:http://miaotvs.cn/meow

老虎专线
单线路:https://codeberg.org/jgfx/1024/raw/branch/main/1102.json
多线路:https://codeberg.org/jgfx/1024/raw/branch/main/11032.json

【多仓接口(影视仓/影迷可用)】
http://www.891218.xyz/关注环宇轩网络/
【单仓接口(tvbox可用)】
http://www.891218.xyz/环宇轩网络/
【直播源】
http://www.891218.xyz/环宇轩直播/
影视仓直播台万能密码:azgkf
https://codeberg.org/xvnhs/zeroVPN/raw/branch/%E8%93%9D%E8%89%B2%E5%BD%B1%E8%A7%86/zcghd.json

饭太硬主接口:http://饭太硬.top/tv
备用接口 :
http://fan.xxooo.cf:88/tv
http://fan.888484.xyz:88/tv

.多多家庭接口
http://cdn.yydsys.top/duo

月光宝盒接口
https://raw.gitmirror.com/guot55/YGBH/main/ygbox.json

​肥猫接口
http://我不是.肥猫.love:63/接口禁止贩卖

http://rihou.cc:88/荷城茶秀

7.4k视界
https://tudouaa1.oss-cn-beijing.aliyuncs.com/api/apix.json

8.摸鱼4k
https://jihulab.com/moyuer/jk/-/raw/main/moyu.json

多多线路:https://cloud.lxweb.cn/f/MoJNuG/xm.json
新蚂蚁窝仓库:https://codeberg.org/xinghe/MYWC/raw/branch/main/myc.txt

https://jihulab.com/bh666/YGBH/-/raw/main/box%E5%8E%9F.json?ref_type=heads

恒星:https://codeberg.org/hengxing/hx/raw/branch/main/1_hxzck.txt

星星多仓:http://52bsj.vip:81/api/v3/file/get/150017/%E6%98%9F%E6%98%9F%E5%BD%B1%E8%A7%86%E4%BB%93%E5%BA%93%E5%9C%B0%E5%9D%80%EF%BD%9E.txt?sign=BzTbiPEvvqeE6f12jIoeyVH5mCeeJu6RMmopMz4EN7Y%3D%3A0

https://codeberg.org/xvnhs/zeroVPN/raw/branch/%E8%93%9D%E8%89%B2%E5%BD%B1%E8%A7%86/%E8%93%9D%E8%89%B2%E5%BD%B1%E8%A7%86.json

业余:
单仓http://111.67.195.139/bd/JS/js.json
多仓http://111.67.195.139/yydf/duocang.json

饭太硬:http://fan.xxooo.cf/tv

http://rihou.vip:88/荷城茶秀
http://rihou.vip:99/荷城茶秀

http://饭太硬.top/tv
http://肥猫.love
多多:https://yydsys.top/duo
菜妮丝:https://tvbox.cainisi.cf
欧歌仓库;http://tv.nxog.top
欧歌家庭线路:http://w.nxog.top/m/

阿里专线1:http://yydsys.top/duo/ali

阿里专线2:https://pan.shangui.cc/f/4LBAF0/ali.json

春盈天下线路https://wds.ecsxs.com/230989.json

荷城茶秀https://ghproxy.com/https://raw.githubusercontent.com/XiaoYiChaHang/tvbox/main/ysj.json

月光宝盒:https://ghproxy.com/https://raw.githubusercontent.com/guot55/YGBH/main/ygbox.json

单仓
http://tv.nxog.top/apitv.php?id=1&b=欧歌
多仓
http://tv.nxog.top/api.php?mz=xb&id=1&b=欧歌
http://tv.nxog.top/api.php?mz=xb&id=2&b=欧歌APP
http://tv.nxog.top/api.php?mz=xb&id=3&b=欧歌
http://tv.nxog.top/api.php?mz=xb&id=4&b=多多
http://tv.nxog.top/api.php?mz=xb&id=5&b=欧歌
http://tv.nxog.top/api.php?mz=xb&id=6&b=欧歌
http://tv.nxog.top/api.php?mz=xb&id=7&b=欧歌
http://tv.nxog.top/api.php?mz=xb&id=8&b=欧歌
http://tv.nxog.top/api.php?mz=xb&id=9&b=欧歌
http://tv.nxog.top/api.php?mz=xb&id=10&b=欧歌
http://tv.nxog.top/api.php?mz=xb&id=11&b=欧歌
http://tv.nxog.top/api.php?mz=xb&id=12&b=欧歌
http://tv.nxog.top/api.php?mz=xb&id=13&b=欧歌

20231101有效
运输车
https://weixine.net/ysc.json
分享者线路
https://agit.ai/66666/mao/raw/branch/master/00/000.m3u8
云星日记
http://itvbox.cc/tvbox/云星日记/1.m3u8
吾爱
http://52bsj.vip:98/wuai
Zzz1线路
https://agit.ai/mmmgit/tvbox/raw/branch/main/zzz1.json
甜密线路
https://ghproxy.com/https://raw.githubusercontent.com/kebedd69/TVbox-interface/main/%E7%94%9C%E8%9C%9C.json
多多线路
https://yydsys.top/duo
忘了名1
https://agit.ai/guot54/ygbh/raw/branch/master/plus/PRO.json
萧洒
https://la.kstore.space/download/2863/01.txt
饭太硬
http:/太硬.top/tv
玉玉
http://8.210.232.168/xc.json
小米
http://xhww.fun:63/小米/DEMO.json
莱妮丝
https://tvbox.cainisi.cf
盘盘
https://ghproxy.com/https://raw.githubusercontent.com/PizazzGY/TVBox/main/api.json
肥猫
https://tvbox.cainisi.cf
南风
https://agit.ai/Yoursmile7/TVBox/raw/branch/master/XC.json
教育专线
https://agit.ai/895322156/Q/raw/branch/master/TV/jy.txt
吾爱
http://52bsj.vip:98/wuai
54sex
https://pastebin.com/raw/5NHaxyGR
小马
https://nicheng.oss-cn-chengdu.aliyuncs.com/nc/nc6.json
荷城茶秀
http://rihou.cc:88/荷城茶秀
于氏影业
https://agit.ai/sejinan/app/raw/branch/box/yu
元兴
https://freed.yuanhsing.cf/TVBox/meowcf.json
爱TV吧
https://ghproxy.com/https://raw.githubusercontent.com/newenergy2000/TVBox/main/tv4k.json
龙门
http://api.lotics.com
恒星1
https://codeberg.org/hengxing/hx/raw/branch/main/xmyw%E2%80%9C1%E2%80%9D.txt
恒星2
https://codeberg.org/hengxing/hx/raw/branch/main/1_myw2.txt

直播源在线https://agit.ai/leevi/duo/raw/branch/master/v.txt

适用于(猫影视)更新时间:2023/10/17
猫影视在线接口(纯绿色观影):
github://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@github.com/ZTHA000/catvod/main/js/config_open.json
猫影视在线接口(纯福利观影):
github://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@github.com/ZTHA000/catvod/main/js/config_open69.json