├── .github └── workflows │ └── python-app.yml ├── LICENSE ├── README.md ├── autoUrl.py ├── tv ├── 0 │ ├── 0821.json │ ├── 0825.json │ ├── 0826.json │ ├── 0827.json │ ├── 2hacc_oktv.json │ ├── Dong-learn9_tvbox2.json │ ├── XYQ.json │ ├── anaer_meow.json │ ├── collection.json │ ├── franksun1211_0706.json │ ├── gaotianliuyun_0707.json │ ├── gaotianliuyun_0821.json │ ├── gaotianliuyun_0825.json │ ├── gaotianliuyun_0826.json │ ├── gaotianliuyun_0827.json │ ├── hackyjso_jzy.json │ ├── heroaku_ayn.json │ ├── heroaku_dtes.json │ ├── heroaku_ptest.json │ ├── heroaku_pyn.json │ ├── js.json │ ├── liu673cn_m.json │ ├── xianyuyimu_一木自用.json │ └── yw88075_js.json ├── 1 │ ├── 0821.json │ ├── 0825.json │ ├── 0826.json │ ├── 0827.json │ ├── 2hacc_oktv.json │ ├── Dong-learn9_tvbox2.json │ ├── XYQ.json │ ├── anaer_meow.json │ ├── collection.json │ ├── franksun1211_0706.json │ ├── gaotianliuyun_0707.json │ ├── gaotianliuyun_0821.json │ ├── gaotianliuyun_0825.json │ ├── gaotianliuyun_0826.json │ ├── gaotianliuyun_0827.json │ ├── hackyjso_jzy.json │ ├── heroaku_ayn.json │ ├── heroaku_dtes.json │ ├── heroaku_ptest.json │ ├── heroaku_pyn.json │ ├── js.json │ ├── liu673cn_m.json │ ├── xianyuyimu_一木自用.json │ └── yw88075_js.json ├── 2 │ ├── 0821.json │ ├── 0825.json │ ├── 0826.json │ ├── 0827.json │ ├── 2hacc_oktv.json │ ├── Dong-learn9_tvbox2.json │ ├── XYQ.json │ ├── anaer_meow.json │ ├── collection.json │ ├── franksun1211_0706.json │ ├── gaotianliuyun_0707.json │ ├── gaotianliuyun_0821.json │ ├── gaotianliuyun_0825.json │ ├── gaotianliuyun_0826.json │ ├── gaotianliuyun_0827.json │ ├── hackyjso_jzy.json │ ├── heroaku_ayn.json │ ├── heroaku_dtes.json │ ├── heroaku_ptest.json │ ├── heroaku_pyn.json │ ├── js.json │ ├── liu673cn_m.json │ ├── xianyuyimu_一木自用.json │ └── yw88075_js.json ├── 3 │ ├── 0821.json │ ├── 0825.json │ ├── 0826.json │ ├── 0827.json │ ├── 2hacc_oktv.json │ ├── Dong-learn9_tvbox2.json │ ├── XYQ.json │ ├── anaer_meow.json │ ├── collection.json │ ├── franksun1211_0706.json │ ├── gaotianliuyun_0707.json │ ├── gaotianliuyun_0821.json │ ├── gaotianliuyun_0825.json │ ├── gaotianliuyun_0826.json │ ├── gaotianliuyun_0827.json │ ├── hackyjso_jzy.json │ ├── heroaku_ayn.json │ ├── heroaku_dtes.json │ ├── heroaku_ptest.json │ ├── heroaku_pyn.json │ ├── js.json │ ├── liu673cn_m.json │ ├── xianyuyimu_一木自用.json │ └── yw88075_js.json ├── 4 │ ├── 0821.json │ ├── 0825.json │ ├── 0826.json │ ├── 0827.json │ ├── 2hacc_oktv.json │ ├── Dong-learn9_tvbox2.json │ ├── XYQ.json │ ├── anaer_meow.json │ ├── collection.json │ ├── franksun1211_0706.json │ ├── gaotianliuyun_0707.json │ ├── gaotianliuyun_0821.json │ ├── gaotianliuyun_0825.json │ ├── gaotianliuyun_0826.json │ ├── gaotianliuyun_0827.json │ ├── hackyjso_jzy.json │ ├── heroaku_ayn.json │ ├── heroaku_dtes.json │ ├── heroaku_ptest.json │ ├── heroaku_pyn.json │ ├── js.json │ ├── liu673cn_m.json │ ├── xianyuyimu_一木自用.json │ └── yw88075_js.json └── 5 │ ├── 0821.json │ ├── 0825.json │ ├── 0826.json │ ├── 0827.json │ ├── 2hacc_oktv.json │ ├── Dong-learn9_tvbox2.json │ ├── XYQ.json │ ├── anaer_meow.json │ ├── collection.json │ ├── franksun1211_0706.json │ ├── gaotianliuyun_0707.json │ ├── gaotianliuyun_0821.json │ ├── gaotianliuyun_0825.json │ ├── gaotianliuyun_0826.json │ ├── gaotianliuyun_0827.json │ ├── hackyjso_jzy.json │ ├── heroaku_ayn.json │ ├── heroaku_dtes.json │ ├── heroaku_ptest.json │ ├── heroaku_pyn.json │ ├── js.json │ ├── liu673cn_m.json │ ├── xianyuyimu_一木自用.json │ └── yw88075_js.json └── url.json /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- 1 | name: Python application 2 | on: 3 | push: 4 | schedule: 5 | - cron: '0 21 * * 1' 6 | 7 | jobs: 8 | build: 9 | runs-on: ubuntu-latest 10 | 11 | steps: 12 | - name: 检查分支 13 | uses: actions/checkout@v3 14 | 15 | - name: 安装 Python 3.10 16 | uses: actions/setup-python@v4 17 | with: 18 | python-version: 3.10.4 19 | 20 | - name: 安装模块 21 | run: | 22 | pip install requests 23 | pip install urllib3 24 | pip install pycryptodome 25 | - name: 生成json文件 26 | run: | 27 | export TZ='Asia/Shanghai' 28 | python autoUrl.py 29 | - name: 暂存提交 30 | run: | 31 | git config --global user.name 'hl128k' 32 | git config --global user.email 'hl128k@qq.com' 33 | export TZ='Asia/Shanghai' 34 | git add . 35 | git commit -m "update" -a 36 | - name: 推送 37 | uses: ad-m/github-push-action@master 38 | with: 39 | github_token: ${{ secrets.GITHUB_TOKEN }} 40 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 提示 2 | 3 | 感谢各位大佬的无私奉献. 4 | 5 | 如果有收录您的配置,您也不希望被收录请[issues](https://github.com/hl128k/tvbox/issues),必将第一时间移除 6 | 7 | # 免责声明 8 | 9 | 本项目(tvbox)的源代码是按“原样”提供,不带任何明示或暗示的保证。使用者有责任确保其使用符合当地法律法规。 10 | 11 | 所有以任何方式查看本仓库内容的人、或直接或间接使用本仓库内容的使用者都应仔细阅读此声明。本仓库管理者保留随时更改或补充此免责声明的权利。一旦使用、复制、修改了本仓库内容,则视为您已接受此免责声明。 12 | 13 | 本仓库管理者不能保证本仓库内容的合法性、准确性、完整性和有效性,请根据情况自行判断。本仓库内容,仅用于测试和学习研究,禁止用于商业用途,不得将其用于违反国家、地区、组织等的法律法规或相关规定的其他用途,禁止任何公众号、自媒体进行任何形式的转载、发布,请不要在中华人民共和国境内使用本仓库内容,否则后果自负。 14 | 15 | 本仓库内容中涉及的第三方硬件、软件等,与本仓库内容没有任何直接或间接的关系。本仓库内容仅对部署和使用过程进行客观描述,不代表支持使用任何第三方硬件、软件。使用任何第三方硬件、软件,所造成的一切后果由使用的个人或组织承担,与本仓库内容无关。 16 | 17 | 所有直接或间接使用本仓库内容的个人和组织,应 24 小时内完成学习和研究,并及时删除本仓库内容。如对本仓库内容的功能有需求,应自行开发相关功能。所有基于本仓库内容的源代码,进行的任何修改,为其他个人或组织的自发行为,与本仓库内容没有任何直接或间接的关系,所造成的一切后果亦与本仓库内容和本仓库管理者无关 18 | 19 | # 介绍 20 | 21 | 自用请勿宣传 22 | 23 | 所有数据全部搜集于网络,不保证可用性 24 | 25 | 因电视对GitHub访问问题,所以将配置中的GitHub换成镜像源 26 | 27 | 本次自动更新时间为:2025-05-27 05:17:23 28 | 29 | 当前内容来源详情请查看url.json 30 | 31 | 如果感兴趣,请复制项目后自行研究使用 32 | 33 | -------------------------------------------------------------------------------- /autoUrl.py: -------------------------------------------------------------------------------- 1 | import base64 2 | import re 3 | import datetime 4 | import requests 5 | import json 6 | import urllib3 7 | from Crypto.Cipher import AES 8 | 9 | 10 | def main(): 11 | urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) 12 | with open('./url.json', 'r', encoding='utf-8') as f: 13 | urlJson = json.load(f) 14 | nameList = [] 15 | reList = ["https://ghproxy.net/https://raw.githubusercontent.com", "https://raw.kkgithub.com", 16 | "https://gcore.jsdelivr.net/gh", "https://mirror.ghproxy.com/https://raw.githubusercontent.com", 17 | "https://github.moeyy.xyz/https://raw.githubusercontent.com", "https://fastly.jsdelivr.net/gh"] 18 | reRawList = [False, False, 19 | True, False, 20 | False, True] 21 | for item in urlJson: 22 | urlData = get_json(item["url"]) 23 | for reI in range(len(reList)): 24 | urlName = item["name"] 25 | urlPath = item["path"] 26 | reqText = urlData 27 | if urlName != "gaotianliuyun_0707": 28 | reqText = reqText.replace("'./", "'" + urlPath) \ 29 | .replace('"./', '"' + urlPath) 30 | if reRawList[reI]: 31 | reqText = reqText.replace("/raw/", "@") 32 | else: 33 | reqText = reqText.replace("/raw/", "/") 34 | reqText = reqText.replace("'https://github.com", "'" + reList[reI]) \ 35 | .replace('"https://github.com', '"' + reList[reI]) \ 36 | .replace("'https://raw.githubusercontent.com", "'" + reList[reI]) \ 37 | .replace('"https://raw.githubusercontent.com', '"' + reList[reI]) 38 | fp = open("./tv/" + str(reI) + "/" + urlName + ".json", "w+", encoding='utf-8') 39 | fp.write(reqText) 40 | 41 | collectionJson = { 42 | "urls": [] 43 | } 44 | for item in urlJson: 45 | if "_" in item["name"]: 46 | urlItem = { 47 | "url": "./"+ item["name"] + ".json", 48 | "name": item["name"] 49 | } 50 | collectionJson["urls"].append(urlItem) 51 | collectionJson_data = json.dumps(collectionJson, ensure_ascii=False, indent=4) 52 | for reI in range(len(reList)): 53 | fp = open("./tv/" + str(reI) + "/collection.json", "w+", encoding='utf-8') 54 | fp.write(collectionJson_data) 55 | 56 | now = datetime.datetime.now() 57 | fp = open('README.md', "w+", encoding='utf-8') 58 | fp.write("# 提示\n\n") 59 | fp.write("感谢各位大佬的无私奉献.\n\n") 60 | fp.write( 61 | "如果有收录您的配置,您也不希望被收录请[issues](https://github.com/hl128k/tvbox/issues),必将第一时间移除\n\n") 62 | fp.write("# 免责声明\n\n") 63 | fp.write("本项目(tvbox)的源代码是按“原样”提供,不带任何明示或暗示的保证。使用者有责任确保其使用符合当地法律法规。\n\n") 64 | fp.write( 65 | "所有以任何方式查看本仓库内容的人、或直接或间接使用本仓库内容的使用者都应仔细阅读此声明。本仓库管理者保留随时更改或补充此免责声明的权利。一旦使用、复制、修改了本仓库内容,则视为您已接受此免责声明。\n\n") 66 | fp.write( 67 | "本仓库管理者不能保证本仓库内容的合法性、准确性、完整性和有效性,请根据情况自行判断。本仓库内容,仅用于测试和学习研究,禁止用于商业用途,不得将其用于违反国家、地区、组织等的法律法规或相关规定的其他用途,禁止任何公众号、自媒体进行任何形式的转载、发布,请不要在中华人民共和国境内使用本仓库内容,否则后果自负。\n\n") 68 | fp.write( 69 | "本仓库内容中涉及的第三方硬件、软件等,与本仓库内容没有任何直接或间接的关系。本仓库内容仅对部署和使用过程进行客观描述,不代表支持使用任何第三方硬件、软件。使用任何第三方硬件、软件,所造成的一切后果由使用的个人或组织承担,与本仓库内容无关。\n\n") 70 | fp.write( 71 | "所有直接或间接使用本仓库内容的个人和组织,应 24 小时内完成学习和研究,并及时删除本仓库内容。如对本仓库内容的功能有需求,应自行开发相关功能。所有基于本仓库内容的源代码,进行的任何修改,为其他个人或组织的自发行为,与本仓库内容没有任何直接或间接的关系,所造成的一切后果亦与本仓库内容和本仓库管理者无关 \n\n") 72 | fp.write("# 介绍\n\n") 73 | fp.write("自用请勿宣传\n\n") 74 | fp.write("所有数据全部搜集于网络,不保证可用性\n\n") 75 | fp.write("因电视对GitHub访问问题,所以将配置中的GitHub换成镜像源\n\n") 76 | fp.write("本次自动更新时间为:" + now.strftime("%Y-%m-%d %H:%M:%S") + "\n\n") 77 | fp.write("当前内容来源详情请查看url.json\n\n") 78 | fp.write("如果感兴趣,请复制项目后自行研究使用\n\n") 79 | fp.close() 80 | 81 | def get_json(url): 82 | key = url.split(";")[2] if ";" in url else "" 83 | url = url.split(";")[0] if ";" in url else url 84 | data = get_data(url) 85 | if not data: 86 | raise Exception() 87 | if is_valid_json(data): 88 | return data 89 | if "**" in data: 90 | data = base64_decode(data) 91 | if data.startswith("2423"): 92 | data = cbc_decrypt(data) 93 | if key: 94 | data = ecb_decrypt(data, key) 95 | return data 96 | def get_ext(ext): 97 | try: 98 | return base64_decode(get_data(ext[4:])) 99 | except Exception: 100 | return "" 101 | 102 | def get_data(url): 103 | if url.startswith("http"): 104 | urlReq = requests.get(url, verify=False) 105 | return urlReq.text 106 | return "" 107 | 108 | def ecb_decrypt(data, key): 109 | spec = AES.new(pad_end(key).encode(), AES.MODE_ECB) 110 | return spec.decrypt(bytes.fromhex(data)).decode("utf-8") 111 | 112 | def cbc_decrypt(data): 113 | decode = bytes.fromhex(data).decode().lower() 114 | key = pad_end(decode[decode.index("$#") + 2:decode.index("#$")]) 115 | iv = pad_end(decode[-13:]) 116 | key_spec = AES.new(key.encode(), AES.MODE_CBC, iv.encode()) 117 | data = data[data.index("2324") + 4:-26] 118 | decrypt_data = key_spec.decrypt(bytes.fromhex(data)) 119 | return decrypt_data.decode("utf-8") 120 | 121 | def base64_decode(data): 122 | extract = extract_base64(data) 123 | return base64.b64decode(extract).decode("utf-8") if extract else data 124 | 125 | def extract_base64(data): 126 | match = re.search(r"[A-Za-z0-9]{8}\*\*", data) 127 | return data[data.index(match.group()) + 10:] if match else "" 128 | 129 | def pad_end(key): 130 | return key + "0000000000000000"[:16 - len(key)] 131 | 132 | def is_valid_json(json_str): 133 | try: 134 | json.loads(json_str) 135 | return True 136 | except json.JSONDecodeError: 137 | return False 138 | 139 | 140 | main() 141 | -------------------------------------------------------------------------------- /tv/0/0826.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://ghproxy.net/https://raw.githubusercontent.com/gaotianliuyun/gao/master/jar/fan.txt;md5;6c4ab3a9d232164c75534f9060506ee5", 3 | "wallpaper":"https://深色壁纸.xxooo.cf/", 4 | 5 | "sites":[ 6 | {"key":"豆豆","name":"备用公众号【叨观荐影】","type": 3, "api": "csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 7 | {"key":"玩偶","name":"👽玩偶哥哥┃4K弹幕","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0, "ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 8 | {"key":"YGP","name":"🚀叨观荐影┃新片","type":3,"api":"csp_YGP","searchable":0,"quickSearch":0,"changeable":0}, 9 | {"key":"alllive","name":"📽️一直播┃直播","type":3,"api":"csp_Alllive","playerType":2,"searchable":0,"quickSearch":0,"changeable":0}, 10 | {"key":"米搜","name":"🦋米盘┃搜搜","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 11 | {"key":"抠搜","name":"🍄抠抠┃搜搜","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 12 | {"key":"Lib","name": "🌟立播┃秒播","type": 3,"api": "csp_Libvio","searchable": 1,"quickSearch": 1,"changeable":1,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 13 | {"key":"文采","name":"💮文采┃秒播","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 14 | {"key":"糯米","name":"🍓糯米┃秒播","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"zxzj","name":"🍊在线┃秒播","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 16 | {"key":"比特","name":"🍄比特┃秒播","type":3,"api":"csp_Bttwoo","searchable":1,"quickSearch":1,"changeable":1}, 17 | {"key":"苹果","name":"🍎苹果┃不卡","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"厂长","name":"📔厂长┃不卡","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext": "https://www.czzy77.com/"}, 19 | {"key":"木星","name":"🌞木星┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 20 | {"key":"速播","name":"⏮️速播┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvEpcoxb5sQXd8GDXUTvbqvx0peQcuZ7GvQ0UGD/a2mS238cHqYkiBgwCduCiYrTZJtbwdDUt/L2w/LOWADxikKl6I8Cqz6OD9lIxS2anA6ytO6"}, 21 | {"key":"热播","name":"📺热播┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 22 | {"key":"南瓜","name":"🎃南瓜┃多线","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 23 | {"key":"萌米","name":"👀萌米┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 24 | 25 | {"key":"欢视","name":"👓欢视┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 26 | {"key":"可可","name":"👻可可┃多线","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 27 | {"key":"贱贱","name":"🐭贱贱┃P2P","type":3,"searchable":1,"quickSearch":1,"changeable":1,"playerType":"1","api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/jp.js"}, 28 | {"key":"Auete","name":"🏝奥特┃无广","type": 3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 29 | {"key":"新6V","name":"🧲新6V┃磁力","type":3,"api":"csp_SixV","searchable":1,"quickSearch":1,"changeable":0,"ext": "https://www.xb6v.com/"}, 30 | {"key":"短剧","name":"🌈上头┃短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"Dm84","name":"🚌巴士┃动漫","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"Ysj","name":"🎀异界┃动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | {"key":"Anime1","name":"🐾日本┃动漫","type": 3,"api": "csp_Anime1","searchable": 1,"quickSearch": 1,"changeable":1}, 34 | 35 | {"key":"926看球","name":"⚽926┃看球","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 36 | {"key":"88js","name":"⚽ 88┃看球","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/88看球.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 37 | {"key":"310js","name":"⚽ 310┃看球","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/310直播.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 38 | {"key":"Jrsjs","name":"⚽ Jrs┃球迷","type": 3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/jrk.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 39 | {"key":"酷奇","name":"🎤酷奇┃MV","type": 3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/酷奇MV.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 40 | {"key":"MTV","name":"🎧明星┃MV","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/MTV.json"}}, 41 | 42 | 43 | {"key":"虎牙直播js","name":"🐯虎牙┃直播","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.js","ext":"https://notabug.org/fantaiying/ext/main/huya2.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 44 | {"key":"斗鱼js","name":"🐟斗鱼┃直播","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/斗鱼直播.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 45 | {"key":"有声小说js","name":"🎧有声┃小说","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/有声小说吧.js","style":{"type":"rect","ratio":1},"searchable": 0,"quickSearch": 0,"changeable":0}, 46 | {"key":"Aid","name":"🚑急救┃教学","type":3,"api":"csp_FirstAid","searchable":0,"quickSearch":0,"changeable":0,"style": { "type": "rect", "ratio":3.8}}, 47 | 48 | {"key":"Sso","name":"🐌盘他┃三盘","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 49 | {"key":"夸搜","name":"🐟夸搜┃狸夸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 50 | {"key":"YiSo","name":"😹易搜┃阿狸","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 51 | {"key":"PanSearch","name":"🙀盘Se┃阿狸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 52 | {"key":"push_agent","name":"🛴手机┃推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 53 | 54 | {"key":"Bili","name":"🅱哔哔合集┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/bilibili.json"}}, 55 | {"key":"Biliych","name":"🅱哔哔演唱会┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/biliych.json"}}, 56 | {"key":"dr_兔小贝","name":"📚儿童┃启蒙","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 57 | {"key":"少儿教育","name":"📚少儿┃教育","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/少儿教育.json"}}, 58 | {"key":"小学课堂","name":"📚小学┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/小学课堂.json"}}, 59 | {"key":"初中课堂","name":"📚初中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/初中课堂.json"}}, 60 | {"key":"高中教育","name":"📚高中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/高中课堂.json"}}, 61 | {"key":"fan","name":"导航 www.饭太硬.com","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0}, 62 | {"key":"cc","name":"请勿相信视频中广告","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0} 63 | ], 64 | 65 | "logo":"https://fs-im-kefu.7moor-fs1.com/ly/4d2c3f00-7d4c-11e5-af15-41bf63ae4ea0/1716545739254/fc1b89e152cd4aa28d295107cb6c56c9.gif", 66 | "lives":[ 67 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 68 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 69 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo": "https://live.fanmingming.com/tv/{name}.png"}, 70 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua": "okhttp/3.15","playerType":2 } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/0/2hacc_oktv.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://raw.kkgithub.com/2hacc/TVBox/main/jar/tvbox.txt;md5;265301f463ec681dcbba91897f20f08b", 3 | "logo":"https://raw.kkgithub.com/2hacc/TVBox/main/logo.png", 4 | "wallpaper":"http://www.kf666888.cn/api/tvbox/img", 5 | "lives":[ 6 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 7 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 8 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo":"https://live.fanmingming.com/tv/{name}.png"}, 9 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua":"okhttp/3.15","playerType":2} 10 | ], 11 | "sites":[ 12 | {"key":"豆瓣","name":"豆瓣","type": 3,"api":"csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 13 | {"key":"玩偶哥","name":"玩偶哥","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 14 | {"key":"csp_NanGua","name":"南瓜","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"csp_Jpys","name":"文采","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 16 | {"key":"csp_NewCz","name":"厂长","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.czzyvideo.com/"}, 17 | {"key":"csp_Nmyswv","name":"糯米","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"csp_YCyz","name":"原创","type":3,"api":"csp_YCyz","timeout":15,"playerType":1,"searchable":1,"quickSearch":1,"changeable":1}, 19 | {"key":"zxzj","name":"在线","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 20 | {"key":"csp_Ddrk","name":"低端","type":3,"api":"csp_Ddrk","playerType":"2","searchable":1,"quickSearch":1,"changeable":1}, 21 | {"key":"csp_Auete","name":"Auete","type":3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 22 | {"key":"csp_Libvio","name":"Libvio","type":3,"api":"csp_Libvio","searchable":1,"quickSearch":1,"changeable":1,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 23 | {"key":"csp_AppSx","name":"木星","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 24 | {"key":"热播","name":"热播","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 25 | {"key":"萌米","name":"萌米","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 26 | {"key":"欢视","name":"欢视","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 27 | {"key":"csp_LiteApple","name":"小苹果","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 28 | {"key":"csp_Kekys","name":"可可","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 29 | {"key":"csp_Djtt","name":"短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 30 | {"key":"csp_Dm84","name":"动漫巴士","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"csp_Anime1","name":"日本动漫","type":3,"api":"csp_Anime1","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"csp_Ysj","name":"异界动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | 34 | {"key":"926看球","name":"926","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 35 | {"key":"88js","name":"88","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/88看球.js","style":{"type":"list"}, 36 | "searchable":0,"quickSearch":0,"changeable":0}, 37 | {"key":"310js","name":"310","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/310直播.js","style":{"type":"list"}, 38 | "searchable":0,"quickSearch":0,"changeable":0}, 39 | {"key":"Jrsjs","name":"Jrs","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/jrk.js","style":{"type":"list"}, 40 | "searchable":0,"quickSearch":0,"changeable":0}, 41 | {"key":"酷奇","name":"酷奇","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/酷奇MV.js","style":{"type":"rect","ratio":1.597}, 42 | "searchable":0,"quickSearch":0,"changeable":0}, 43 | {"key":"MTV","name":"明星","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 44 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/MTV.json"}}, 45 | {"key":"虎牙直播js","name":"虎牙","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/huya2.js","style":{"type":"rect","ratio":1.755}, 46 | "playerType":"2","searchable":0,"quickSearch":0,"changeable":0}, 47 | {"key":"斗鱼js","name":"斗鱼","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/斗鱼直播.js","style":{"type":"rect","ratio":1.755}, 48 | "playerType":"2","searchable":0,"quickSearch":0,"changeable":0}, 49 | 50 | {"key":"dr_兔小贝","name":"儿童","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0}, 51 | {"key":"少儿教育","name":"少儿","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 52 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/少儿教育.json"}}, 53 | {"key":"小学课堂","name":"小学","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 54 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/小学课堂.json"}}, 55 | {"key":"初中课堂","name":"初中","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 56 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/初中课堂.json"}}, 57 | {"key":"高中教育","name":"高中","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 58 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/高中课堂.json"}}, 59 | 60 | {"key":"米搜","name":"米盘","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 61 | {"key":"抠搜","name":"抠抠","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 62 | {"key":"Sso","name":"盘他","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 63 | {"key":"夸搜","name":"夸搜","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext":{"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 64 | {"key":"YiSo","name":"易搜","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 65 | {"key":"PanSearch","name":"盘Se","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 66 | {"key":"push_agent","name":"手机推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}} 67 | ] 68 | 69 | } -------------------------------------------------------------------------------- /tv/0/collection.json: -------------------------------------------------------------------------------- 1 | { 2 | "urls": [ 3 | { 4 | "url": "./heroaku_ptest.json", 5 | "name": "heroaku_ptest" 6 | }, 7 | { 8 | "url": "./heroaku_pyn.json", 9 | "name": "heroaku_pyn" 10 | }, 11 | { 12 | "url": "./heroaku_ayn.json", 13 | "name": "heroaku_ayn" 14 | }, 15 | { 16 | "url": "./heroaku_dtes.json", 17 | "name": "heroaku_dtes" 18 | }, 19 | { 20 | "url": "./gaotianliuyun_0821.json", 21 | "name": "gaotianliuyun_0821" 22 | }, 23 | { 24 | "url": "./gaotianliuyun_0826.json", 25 | "name": "gaotianliuyun_0826" 26 | }, 27 | { 28 | "url": "./gaotianliuyun_0827.json", 29 | "name": "gaotianliuyun_0827" 30 | }, 31 | { 32 | "url": "./gaotianliuyun_0825.json", 33 | "name": "gaotianliuyun_0825" 34 | }, 35 | { 36 | "url": "./gaotianliuyun_0707.json", 37 | "name": "gaotianliuyun_0707" 38 | }, 39 | { 40 | "url": "./xianyuyimu_一木自用.json", 41 | "name": "xianyuyimu_一木自用" 42 | }, 43 | { 44 | "url": "./2hacc_oktv.json", 45 | "name": "2hacc_oktv" 46 | }, 47 | { 48 | "url": "./franksun1211_0706.json", 49 | "name": "franksun1211_0706" 50 | }, 51 | { 52 | "url": "./yw88075_js.json", 53 | "name": "yw88075_js" 54 | }, 55 | { 56 | "url": "./Dong-learn9_tvbox2.json", 57 | "name": "Dong-learn9_tvbox2" 58 | }, 59 | { 60 | "url": "./liu673cn_m.json", 61 | "name": "liu673cn_m" 62 | }, 63 | { 64 | "url": "./anaer_meow.json", 65 | "name": "anaer_meow" 66 | }, 67 | { 68 | "url": "./hackyjso_jzy.json", 69 | "name": "hackyjso_jzy" 70 | } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/0/gaotianliuyun_0707.json: -------------------------------------------------------------------------------- 1 | { 2 | "urls": [ 3 | { 4 | "url": "./0821.json", 5 | "name": "高天流云 No.1" 6 | }, 7 | { 8 | "url": "./0825.json", 9 | "name": "高天流云 PG" 10 | }, 11 | { 12 | "url": "./0826.json", 13 | "name": "高天流云 FTY" 14 | }, 15 | { 16 | "url": "./0827.json", 17 | "name": "高天流云 FM" 18 | }, 19 | { 20 | "url": "./js.json", 21 | "name": "高天流云 JS" 22 | }, 23 | { 24 | "url": "./XYQ.json", 25 | "name": "高天流云 XYQ" 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /tv/0/gaotianliuyun_0826.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://ghproxy.net/https://raw.githubusercontent.com/gaotianliuyun/gao/master/jar/fan.txt;md5;6c4ab3a9d232164c75534f9060506ee5", 3 | "wallpaper":"https://深色壁纸.xxooo.cf/", 4 | 5 | "sites":[ 6 | {"key":"豆豆","name":"备用公众号【叨观荐影】","type": 3, "api": "csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 7 | {"key":"玩偶","name":"👽玩偶哥哥┃4K弹幕","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0, "ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 8 | {"key":"YGP","name":"🚀叨观荐影┃新片","type":3,"api":"csp_YGP","searchable":0,"quickSearch":0,"changeable":0}, 9 | {"key":"alllive","name":"📽️一直播┃直播","type":3,"api":"csp_Alllive","playerType":2,"searchable":0,"quickSearch":0,"changeable":0}, 10 | {"key":"米搜","name":"🦋米盘┃搜搜","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 11 | {"key":"抠搜","name":"🍄抠抠┃搜搜","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 12 | {"key":"Lib","name": "🌟立播┃秒播","type": 3,"api": "csp_Libvio","searchable": 1,"quickSearch": 1,"changeable":1,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 13 | {"key":"文采","name":"💮文采┃秒播","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 14 | {"key":"糯米","name":"🍓糯米┃秒播","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"zxzj","name":"🍊在线┃秒播","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 16 | {"key":"比特","name":"🍄比特┃秒播","type":3,"api":"csp_Bttwoo","searchable":1,"quickSearch":1,"changeable":1}, 17 | {"key":"苹果","name":"🍎苹果┃不卡","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"厂长","name":"📔厂长┃不卡","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext": "https://www.czzy77.com/"}, 19 | {"key":"木星","name":"🌞木星┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 20 | {"key":"速播","name":"⏮️速播┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvEpcoxb5sQXd8GDXUTvbqvx0peQcuZ7GvQ0UGD/a2mS238cHqYkiBgwCduCiYrTZJtbwdDUt/L2w/LOWADxikKl6I8Cqz6OD9lIxS2anA6ytO6"}, 21 | {"key":"热播","name":"📺热播┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 22 | {"key":"南瓜","name":"🎃南瓜┃多线","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 23 | {"key":"萌米","name":"👀萌米┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 24 | 25 | {"key":"欢视","name":"👓欢视┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 26 | {"key":"可可","name":"👻可可┃多线","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 27 | {"key":"贱贱","name":"🐭贱贱┃P2P","type":3,"searchable":1,"quickSearch":1,"changeable":1,"playerType":"1","api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/jp.js"}, 28 | {"key":"Auete","name":"🏝奥特┃无广","type": 3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 29 | {"key":"新6V","name":"🧲新6V┃磁力","type":3,"api":"csp_SixV","searchable":1,"quickSearch":1,"changeable":0,"ext": "https://www.xb6v.com/"}, 30 | {"key":"短剧","name":"🌈上头┃短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"Dm84","name":"🚌巴士┃动漫","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"Ysj","name":"🎀异界┃动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | {"key":"Anime1","name":"🐾日本┃动漫","type": 3,"api": "csp_Anime1","searchable": 1,"quickSearch": 1,"changeable":1}, 34 | 35 | {"key":"926看球","name":"⚽926┃看球","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 36 | {"key":"88js","name":"⚽ 88┃看球","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/88看球.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 37 | {"key":"310js","name":"⚽ 310┃看球","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/310直播.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 38 | {"key":"Jrsjs","name":"⚽ Jrs┃球迷","type": 3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/jrk.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 39 | {"key":"酷奇","name":"🎤酷奇┃MV","type": 3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/酷奇MV.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 40 | {"key":"MTV","name":"🎧明星┃MV","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/MTV.json"}}, 41 | 42 | 43 | {"key":"虎牙直播js","name":"🐯虎牙┃直播","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.js","ext":"https://notabug.org/fantaiying/ext/main/huya2.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 44 | {"key":"斗鱼js","name":"🐟斗鱼┃直播","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/斗鱼直播.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 45 | {"key":"有声小说js","name":"🎧有声┃小说","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/有声小说吧.js","style":{"type":"rect","ratio":1},"searchable": 0,"quickSearch": 0,"changeable":0}, 46 | {"key":"Aid","name":"🚑急救┃教学","type":3,"api":"csp_FirstAid","searchable":0,"quickSearch":0,"changeable":0,"style": { "type": "rect", "ratio":3.8}}, 47 | 48 | {"key":"Sso","name":"🐌盘他┃三盘","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 49 | {"key":"夸搜","name":"🐟夸搜┃狸夸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 50 | {"key":"YiSo","name":"😹易搜┃阿狸","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 51 | {"key":"PanSearch","name":"🙀盘Se┃阿狸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 52 | {"key":"push_agent","name":"🛴手机┃推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 53 | 54 | {"key":"Bili","name":"🅱哔哔合集┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/bilibili.json"}}, 55 | {"key":"Biliych","name":"🅱哔哔演唱会┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/biliych.json"}}, 56 | {"key":"dr_兔小贝","name":"📚儿童┃启蒙","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 57 | {"key":"少儿教育","name":"📚少儿┃教育","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/少儿教育.json"}}, 58 | {"key":"小学课堂","name":"📚小学┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/小学课堂.json"}}, 59 | {"key":"初中课堂","name":"📚初中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/初中课堂.json"}}, 60 | {"key":"高中教育","name":"📚高中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/高中课堂.json"}}, 61 | {"key":"fan","name":"导航 www.饭太硬.com","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0}, 62 | {"key":"cc","name":"请勿相信视频中广告","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0} 63 | ], 64 | 65 | "logo":"https://fs-im-kefu.7moor-fs1.com/ly/4d2c3f00-7d4c-11e5-af15-41bf63ae4ea0/1716545739254/fc1b89e152cd4aa28d295107cb6c56c9.gif", 66 | "lives":[ 67 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 68 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 69 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo": "https://live.fanmingming.com/tv/{name}.png"}, 70 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua": "okhttp/3.15","playerType":2 } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/1/0826.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://raw.kkgithub.com/gaotianliuyun/gao/master/jar/fan.txt;md5;6c4ab3a9d232164c75534f9060506ee5", 3 | "wallpaper":"https://深色壁纸.xxooo.cf/", 4 | 5 | "sites":[ 6 | {"key":"豆豆","name":"备用公众号【叨观荐影】","type": 3, "api": "csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 7 | {"key":"玩偶","name":"👽玩偶哥哥┃4K弹幕","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0, "ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 8 | {"key":"YGP","name":"🚀叨观荐影┃新片","type":3,"api":"csp_YGP","searchable":0,"quickSearch":0,"changeable":0}, 9 | {"key":"alllive","name":"📽️一直播┃直播","type":3,"api":"csp_Alllive","playerType":2,"searchable":0,"quickSearch":0,"changeable":0}, 10 | {"key":"米搜","name":"🦋米盘┃搜搜","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 11 | {"key":"抠搜","name":"🍄抠抠┃搜搜","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 12 | {"key":"Lib","name": "🌟立播┃秒播","type": 3,"api": "csp_Libvio","searchable": 1,"quickSearch": 1,"changeable":1,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 13 | {"key":"文采","name":"💮文采┃秒播","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 14 | {"key":"糯米","name":"🍓糯米┃秒播","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"zxzj","name":"🍊在线┃秒播","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 16 | {"key":"比特","name":"🍄比特┃秒播","type":3,"api":"csp_Bttwoo","searchable":1,"quickSearch":1,"changeable":1}, 17 | {"key":"苹果","name":"🍎苹果┃不卡","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"厂长","name":"📔厂长┃不卡","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext": "https://www.czzy77.com/"}, 19 | {"key":"木星","name":"🌞木星┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 20 | {"key":"速播","name":"⏮️速播┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvEpcoxb5sQXd8GDXUTvbqvx0peQcuZ7GvQ0UGD/a2mS238cHqYkiBgwCduCiYrTZJtbwdDUt/L2w/LOWADxikKl6I8Cqz6OD9lIxS2anA6ytO6"}, 21 | {"key":"热播","name":"📺热播┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 22 | {"key":"南瓜","name":"🎃南瓜┃多线","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 23 | {"key":"萌米","name":"👀萌米┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 24 | 25 | {"key":"欢视","name":"👓欢视┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 26 | {"key":"可可","name":"👻可可┃多线","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 27 | {"key":"贱贱","name":"🐭贱贱┃P2P","type":3,"searchable":1,"quickSearch":1,"changeable":1,"playerType":"1","api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/jp.js"}, 28 | {"key":"Auete","name":"🏝奥特┃无广","type": 3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 29 | {"key":"新6V","name":"🧲新6V┃磁力","type":3,"api":"csp_SixV","searchable":1,"quickSearch":1,"changeable":0,"ext": "https://www.xb6v.com/"}, 30 | {"key":"短剧","name":"🌈上头┃短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"Dm84","name":"🚌巴士┃动漫","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"Ysj","name":"🎀异界┃动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | {"key":"Anime1","name":"🐾日本┃动漫","type": 3,"api": "csp_Anime1","searchable": 1,"quickSearch": 1,"changeable":1}, 34 | 35 | {"key":"926看球","name":"⚽926┃看球","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 36 | {"key":"88js","name":"⚽ 88┃看球","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/88看球.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 37 | {"key":"310js","name":"⚽ 310┃看球","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/310直播.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 38 | {"key":"Jrsjs","name":"⚽ Jrs┃球迷","type": 3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/jrk.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 39 | {"key":"酷奇","name":"🎤酷奇┃MV","type": 3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/酷奇MV.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 40 | {"key":"MTV","name":"🎧明星┃MV","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/MTV.json"}}, 41 | 42 | 43 | {"key":"虎牙直播js","name":"🐯虎牙┃直播","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.js","ext":"https://notabug.org/fantaiying/ext/main/huya2.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 44 | {"key":"斗鱼js","name":"🐟斗鱼┃直播","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/斗鱼直播.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 45 | {"key":"有声小说js","name":"🎧有声┃小说","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/有声小说吧.js","style":{"type":"rect","ratio":1},"searchable": 0,"quickSearch": 0,"changeable":0}, 46 | {"key":"Aid","name":"🚑急救┃教学","type":3,"api":"csp_FirstAid","searchable":0,"quickSearch":0,"changeable":0,"style": { "type": "rect", "ratio":3.8}}, 47 | 48 | {"key":"Sso","name":"🐌盘他┃三盘","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 49 | {"key":"夸搜","name":"🐟夸搜┃狸夸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 50 | {"key":"YiSo","name":"😹易搜┃阿狸","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 51 | {"key":"PanSearch","name":"🙀盘Se┃阿狸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 52 | {"key":"push_agent","name":"🛴手机┃推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 53 | 54 | {"key":"Bili","name":"🅱哔哔合集┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/bilibili.json"}}, 55 | {"key":"Biliych","name":"🅱哔哔演唱会┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/biliych.json"}}, 56 | {"key":"dr_兔小贝","name":"📚儿童┃启蒙","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 57 | {"key":"少儿教育","name":"📚少儿┃教育","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/少儿教育.json"}}, 58 | {"key":"小学课堂","name":"📚小学┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/小学课堂.json"}}, 59 | {"key":"初中课堂","name":"📚初中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/初中课堂.json"}}, 60 | {"key":"高中教育","name":"📚高中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/高中课堂.json"}}, 61 | {"key":"fan","name":"导航 www.饭太硬.com","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0}, 62 | {"key":"cc","name":"请勿相信视频中广告","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0} 63 | ], 64 | 65 | "logo":"https://fs-im-kefu.7moor-fs1.com/ly/4d2c3f00-7d4c-11e5-af15-41bf63ae4ea0/1716545739254/fc1b89e152cd4aa28d295107cb6c56c9.gif", 66 | "lives":[ 67 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 68 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 69 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo": "https://live.fanmingming.com/tv/{name}.png"}, 70 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua": "okhttp/3.15","playerType":2 } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/1/0827.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider": "https://raw.kkgithub.com/gaotianliuyun/gao/master/jar/custom_spider.jar;md5;41c87635d7592069884a5dafa12acabe", 3 | "wallpaper": "http://饭太硬.top/深色壁纸/api.php", 4 | "sites": [ 5 | { 6 | "key": "商店", 7 | "name": "商店", 8 | "type": 3, 9 | "api": "csp_Market", 10 | "searchable": 0, 11 | "changeable": 0, 12 | "ext": "https://raw.kkgithub.com/gaotianliuyun/gao/master/json/market.json" 13 | }, 14 | { 15 | "key": "泥巴", 16 | "name": "泥巴", 17 | "type": 3, 18 | "api": "csp_NiNi", 19 | "searchable": 1, 20 | "changeable": 1 21 | }, 22 | { 23 | "key": "星星", 24 | "name": "星星", 25 | "type": 3, 26 | "api": "csp_Star", 27 | "searchable": 1, 28 | "changeable": 1 29 | }, 30 | { 31 | "key": "玩偶", 32 | "name": "玩偶", 33 | "type": 3, 34 | "api": "csp_Wogg", 35 | "searchable": 1, 36 | "changeable": 0, 37 | "ext": { 38 | "token": "影視天下第一", 39 | "filter": "https://raw.kkgithub.com/gaotianliuyun/gao/master/json/wogg.json" 40 | } 41 | }, 42 | { 43 | "key": "賤賤", 44 | "name": "賤賤", 45 | "type": 3, 46 | "api": "csp_Jianpian", 47 | "searchable": 1, 48 | "changeable": 1, 49 | "ext": "https://raw.kkgithub.com/gaotianliuyun/gao/master/json/jianpian.json" 50 | }, 51 | { 52 | "key": "獨播", 53 | "name": "獨播", 54 | "type": 3, 55 | "api": "csp_XPathMacFilter", 56 | "searchable": 1, 57 | "changeable": 1, 58 | "ext": "https://raw.kkgithub.com/gaotianliuyun/gao/master/json/duboku.json" 59 | }, 60 | { 61 | "key": "haiwaikan", 62 | "name": "海外看", 63 | "type": 1, 64 | "api": "https://haiwaikan.com/api.php/provide/vod", 65 | "searchable": 1, 66 | "changeable": 1, 67 | "categories": [ 68 | "日本动漫", 69 | "国产动漫", 70 | "欧美动漫", 71 | "国产剧", 72 | "韩剧", 73 | "日剧", 74 | "台剧", 75 | "泰剧", 76 | "港剧", 77 | "欧美剧", 78 | "动画电影", 79 | "韩国综艺", 80 | "国产综艺", 81 | "日本综艺", 82 | "欧美综艺", 83 | "冒险片", 84 | "剧情片", 85 | "动作片", 86 | "同性片", 87 | "喜剧片", 88 | "奇幻片", 89 | "恐怖片", 90 | "悬疑片", 91 | "惊悚片", 92 | "战争片", 93 | "歌舞片", 94 | "灾难片", 95 | "爱情片", 96 | "犯罪片", 97 | "科幻片", 98 | "纪录片", 99 | "经典片" 100 | ] 101 | }, 102 | { 103 | "key": "豆瓣", 104 | "name": "豆瓣", 105 | "type": 3, 106 | "api": "csp_Douban", 107 | "searchable": 0, 108 | "changeable": 1, 109 | "ext": "https://raw.kkgithub.com/gaotianliuyun/gao/master/json/douban.json" 110 | }, 111 | { 112 | "key": "新6V", 113 | "name": "新6V", 114 | "type": 3, 115 | "api": "csp_Xb6v", 116 | "searchable": 1, 117 | "changeable": 0, 118 | "timeout": 60 119 | }, 120 | { 121 | "key": "看球", 122 | "name": "看球", 123 | "type": 3, 124 | "api": "csp_Kanqiu", 125 | "searchable": 1, 126 | "changeable": 0, 127 | "style": { 128 | "type": "list" 129 | } 130 | }, 131 | { 132 | "key": "暴風", 133 | "name": "暴風", 134 | "type": 1, 135 | "api": "https://bfzyapi.com/api.php/provide/vod", 136 | "searchable": 1, 137 | "changeable": 1 138 | }, 139 | { 140 | "key": "索尼", 141 | "name": "索尼 ", 142 | "type": 1, 143 | "api": "https://suoniapi.com/api.php/provide/vod", 144 | "searchable": 1, 145 | "changeable": 1 146 | }, 147 | { 148 | "key": "快帆", 149 | "name": "快帆", 150 | "type": 1, 151 | "api": "https://api.kuaifan.tv/api.php/provide/vod", 152 | "searchable": 1, 153 | "changeable": 1 154 | }, 155 | { 156 | "key": "量子", 157 | "name": "量子", 158 | "type": 1, 159 | "api": "https://cj.lziapi.com/api.php/provide/vod", 160 | "searchable": 1, 161 | "changeable": 1 162 | }, 163 | { 164 | "key": "非凡", 165 | "name": "非凡", 166 | "type": 1, 167 | "api": "http://cj.ffzyapi.com/api.php/provide/vod", 168 | "searchable": 1, 169 | "changeable": 1 170 | }, 171 | { 172 | "key": "櫻花", 173 | "name": "櫻花", 174 | "type": 3, 175 | "api": "csp_Ying", 176 | "searchable": 1, 177 | "changeable": 1 178 | }, 179 | { 180 | "key": "巴士", 181 | "name": "巴士", 182 | "type": 3, 183 | "api": "csp_Dm84", 184 | "searchable": 1, 185 | "changeable": 1 186 | }, 187 | { 188 | "key": "異界", 189 | "name": "異界", 190 | "type": 3, 191 | "api": "csp_Ysj", 192 | "searchable": 1, 193 | "changeable": 1 194 | }, 195 | { 196 | "key": "哔哩", 197 | "name": "哔哩", 198 | "type": 3, 199 | "api": "csp_Bili", 200 | "searchable": 1, 201 | "changeable": 0, 202 | "style": { 203 | "type": "rect", 204 | "ratio": 1.433 205 | }, 206 | "ext": { 207 | "json": "https://raw.kkgithub.com/gaotianliuyun/gao/master/json/bili.json", 208 | "type": "帕梅拉#太极拳#广场舞#演唱会", 209 | "cookie": "" 210 | } 211 | }, 212 | { 213 | "key": "bili_open", 214 | "name": "哔哩貓", 215 | "type": 3, 216 | "api": "https://raw.kkgithub.com/gaotianliuyun/gao/master/cat/js/bili_open.js", 217 | "searchable": 1, 218 | "changeable": 0, 219 | "ext": { 220 | "categories": "短剧#沙雕动画#沙雕穿越#沙雕", 221 | "cookie": "" 222 | } 223 | }, 224 | { 225 | "key": "酷狗", 226 | "name": "酷狗", 227 | "type": 3, 228 | "api": "csp_Kugou", 229 | "searchable": 0, 230 | "changeable": 0 231 | }, 232 | { 233 | "key": "本地", 234 | "name": "本地", 235 | "type": 3, 236 | "api": "csp_Local", 237 | "searchable": 0, 238 | "changeable": 0 239 | }, 240 | { 241 | "key": "AList", 242 | "name": "AList", 243 | "type": 3, 244 | "api": "csp_AList", 245 | "searchable": 1, 246 | "changeable": 0, 247 | "ext": "https://raw.kkgithub.com/gaotianliuyun/gao/master/json/alist.json" 248 | }, 249 | { 250 | "key": "WebDAV", 251 | "name": "WebDAV", 252 | "type": 3, 253 | "api": "csp_WebDAV", 254 | "searchable": 0, 255 | "changeable": 0, 256 | "ext": "https://raw.kkgithub.com/gaotianliuyun/gao/master/json/webdav.json" 257 | }, 258 | { 259 | "key": "JustLive", 260 | "name": "JustLive", 261 | "type": 3, 262 | "api": "csp_JustLive", 263 | "searchable": 1, 264 | "changeable": 0 265 | }, 266 | { 267 | "key": "七夜", 268 | "name": "七夜", 269 | "type": 3, 270 | "api": "csp_Dovx", 271 | "searchable": 1, 272 | "changeable": 0 273 | }, 274 | { 275 | "key": "易搜", 276 | "name": "易搜", 277 | "type": 3, 278 | "api": "csp_YiSo", 279 | "searchable": 1, 280 | "changeable": 0 281 | }, 282 | { 283 | "key": "雲搜", 284 | "name": "雲搜", 285 | "type": 3, 286 | "api": "csp_UpYun", 287 | "searchable": 1, 288 | "changeable": 0 289 | }, 290 | { 291 | "key": "盤搜", 292 | "name": "盤搜", 293 | "type": 3, 294 | "api": "csp_PanSou", 295 | "searchable": 1, 296 | "changeable": 0 297 | }, 298 | { 299 | "key": "紙條搜", 300 | "name": "紙條搜", 301 | "type": 3, 302 | "api": "csp_XiaoZhiTiao", 303 | "searchable": 1, 304 | "changeable": 0 305 | }, 306 | { 307 | "key": "盤搜索", 308 | "name": "盤搜索", 309 | "type": 3, 310 | "api": "csp_PanSearch", 311 | "searchable": 1, 312 | "changeable": 0 313 | }, 314 | { 315 | "key": "找資源", 316 | "name": "找資源", 317 | "type": 3, 318 | "api": "csp_Zhaozy", 319 | "searchable": 1, 320 | "changeable": 0, 321 | "ext": "影視天下第一$$$test2$$$test2" 322 | }, 323 | { 324 | "key": "push_agent", 325 | "name": "推送", 326 | "type": 3, 327 | "api": "csp_Push", 328 | "searchable": 0, 329 | "changeable": 0, 330 | "timeout": 60 331 | } 332 | ], 333 | "doh": [ 334 | { 335 | "name": "Google", 336 | "url": "https://dns.google/dns-query", 337 | "ips": [ 338 | "8.8.4.4", 339 | "8.8.8.8" 340 | ] 341 | }, 342 | { 343 | "name": "Cloudflare", 344 | "url": "https://cloudflare-dns.com/dns-query", 345 | "ips": [ 346 | "1.1.1.1", 347 | "1.0.0.1", 348 | "2606:4700:4700::1111", 349 | "2606:4700:4700::1001" 350 | ] 351 | }, 352 | { 353 | "name": "AdGuard", 354 | "url": "https://dns.adguard.com/dns-query", 355 | "ips": [ 356 | "94.140.14.140", 357 | "94.140.14.141" 358 | ] 359 | }, 360 | { 361 | "name": "DNSWatch", 362 | "url": "https://resolver2.dns.watch/dns-query", 363 | "ips": [ 364 | "84.200.69.80", 365 | "84.200.70.40" 366 | ] 367 | }, 368 | { 369 | "name": "Quad9", 370 | "url": "https://dns.quad9.net/dns-quer", 371 | "ips": [ 372 | "9.9.9.9", 373 | "149.112.112.112" 374 | ] 375 | } 376 | ], 377 | "rules": [ 378 | { 379 | "name": "proxy", 380 | "hosts": [ 381 | "raw.githubusercontent.com", 382 | "googlevideo.com", 383 | "googleapis.com", 384 | "cdn.v82u1l.com", 385 | "cdn.iz8qkg.com", 386 | "cdn.kin6c1.com", 387 | "c.biggggg.com", 388 | "c.olddddd.com", 389 | "haiwaikan.com", 390 | "www.histar.tv", 391 | "youtube.com", 392 | "uhibo.com", 393 | ".*boku.*", 394 | ".*nivod.*", 395 | ".*ulivetv.*" 396 | ] 397 | }, 398 | { 399 | "name": "海外看", 400 | "hosts": [ 401 | "haiwaikan" 402 | ], 403 | "regex": [ 404 | "8.16", 405 | "8.1748", 406 | "10.0099", 407 | "10.3333", 408 | "10.85", 409 | "12.33", 410 | "16.0599" 411 | ] 412 | }, 413 | { 414 | "name": "索尼", 415 | "hosts": [ 416 | "suonizy" 417 | ], 418 | "regex": [ 419 | "15.1666", 420 | "15.2666" 421 | ] 422 | }, 423 | { 424 | "name": "暴風", 425 | "hosts": [ 426 | "bfzy" 427 | ], 428 | "regex": [ 429 | "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:3,[\\s\\S]*?#EXT-X-DISCONTINUITY" 430 | ] 431 | }, 432 | { 433 | "name": "星星", 434 | "hosts": [ 435 | "aws.ulivetv.net" 436 | ], 437 | "regex": [ 438 | "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:8,[\\s\\S]*?#EXT-X-DISCONTINUITY" 439 | ] 440 | }, 441 | { 442 | "name": "量子", 443 | "hosts": [ 444 | "vip.lz", 445 | "hd.lz", 446 | "v.cdnlz" 447 | ], 448 | "regex": [ 449 | "18.5333" 450 | ] 451 | }, 452 | { 453 | "name": "非凡", 454 | "hosts": [ 455 | "vip.ffzy", 456 | "hd.ffzy" 457 | ], 458 | "regex": [ 459 | "25.1" 460 | ] 461 | }, 462 | { 463 | "name": "火山嗅探", 464 | "hosts": [ 465 | "huoshan.com" 466 | ], 467 | "regex": [ 468 | "item_id=" 469 | ] 470 | }, 471 | { 472 | "name": "抖音嗅探", 473 | "hosts": [ 474 | "douyin.com" 475 | ], 476 | "regex": [ 477 | "is_play_url=" 478 | ] 479 | }, 480 | { 481 | "name": "農民嗅探", 482 | "hosts": [ 483 | "toutiaovod.com" 484 | ], 485 | "regex": [ 486 | "video/tos/cn" 487 | ] 488 | }, 489 | { 490 | "name": "七新嗅探", 491 | "hosts": [ 492 | "api.52wyb.com" 493 | ], 494 | "regex": [ 495 | "m3u8?pt=m3u8" 496 | ] 497 | }, 498 | { 499 | "name": "毛驢點擊", 500 | "hosts": [ 501 | "www.maolvys.com" 502 | ], 503 | "script": [ 504 | "document.getElementsByClassName('swal-button swal-button--confirm')[0].click()" 505 | ] 506 | } 507 | ], 508 | "ads": [ 509 | "static-mozai.4gtv.tv", 510 | "s3t3d2y8.afcdn.net" 511 | ] 512 | } 513 | -------------------------------------------------------------------------------- /tv/1/2hacc_oktv.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://raw.kkgithub.com/2hacc/TVBox/main/jar/tvbox.txt;md5;265301f463ec681dcbba91897f20f08b", 3 | "logo":"https://raw.kkgithub.com/2hacc/TVBox/main/logo.png", 4 | "wallpaper":"http://www.kf666888.cn/api/tvbox/img", 5 | "lives":[ 6 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 7 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 8 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo":"https://live.fanmingming.com/tv/{name}.png"}, 9 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua":"okhttp/3.15","playerType":2} 10 | ], 11 | "sites":[ 12 | {"key":"豆瓣","name":"豆瓣","type": 3,"api":"csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 13 | {"key":"玩偶哥","name":"玩偶哥","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 14 | {"key":"csp_NanGua","name":"南瓜","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"csp_Jpys","name":"文采","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 16 | {"key":"csp_NewCz","name":"厂长","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.czzyvideo.com/"}, 17 | {"key":"csp_Nmyswv","name":"糯米","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"csp_YCyz","name":"原创","type":3,"api":"csp_YCyz","timeout":15,"playerType":1,"searchable":1,"quickSearch":1,"changeable":1}, 19 | {"key":"zxzj","name":"在线","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 20 | {"key":"csp_Ddrk","name":"低端","type":3,"api":"csp_Ddrk","playerType":"2","searchable":1,"quickSearch":1,"changeable":1}, 21 | {"key":"csp_Auete","name":"Auete","type":3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 22 | {"key":"csp_Libvio","name":"Libvio","type":3,"api":"csp_Libvio","searchable":1,"quickSearch":1,"changeable":1,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 23 | {"key":"csp_AppSx","name":"木星","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 24 | {"key":"热播","name":"热播","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 25 | {"key":"萌米","name":"萌米","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 26 | {"key":"欢视","name":"欢视","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 27 | {"key":"csp_LiteApple","name":"小苹果","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 28 | {"key":"csp_Kekys","name":"可可","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 29 | {"key":"csp_Djtt","name":"短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 30 | {"key":"csp_Dm84","name":"动漫巴士","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"csp_Anime1","name":"日本动漫","type":3,"api":"csp_Anime1","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"csp_Ysj","name":"异界动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | 34 | {"key":"926看球","name":"926","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 35 | {"key":"88js","name":"88","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/88看球.js","style":{"type":"list"}, 36 | "searchable":0,"quickSearch":0,"changeable":0}, 37 | {"key":"310js","name":"310","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/310直播.js","style":{"type":"list"}, 38 | "searchable":0,"quickSearch":0,"changeable":0}, 39 | {"key":"Jrsjs","name":"Jrs","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/jrk.js","style":{"type":"list"}, 40 | "searchable":0,"quickSearch":0,"changeable":0}, 41 | {"key":"酷奇","name":"酷奇","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/酷奇MV.js","style":{"type":"rect","ratio":1.597}, 42 | "searchable":0,"quickSearch":0,"changeable":0}, 43 | {"key":"MTV","name":"明星","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 44 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/MTV.json"}}, 45 | {"key":"虎牙直播js","name":"虎牙","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/huya2.js","style":{"type":"rect","ratio":1.755}, 46 | "playerType":"2","searchable":0,"quickSearch":0,"changeable":0}, 47 | {"key":"斗鱼js","name":"斗鱼","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/斗鱼直播.js","style":{"type":"rect","ratio":1.755}, 48 | "playerType":"2","searchable":0,"quickSearch":0,"changeable":0}, 49 | 50 | {"key":"dr_兔小贝","name":"儿童","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0}, 51 | {"key":"少儿教育","name":"少儿","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 52 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/少儿教育.json"}}, 53 | {"key":"小学课堂","name":"小学","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 54 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/小学课堂.json"}}, 55 | {"key":"初中课堂","name":"初中","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 56 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/初中课堂.json"}}, 57 | {"key":"高中教育","name":"高中","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 58 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/高中课堂.json"}}, 59 | 60 | {"key":"米搜","name":"米盘","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 61 | {"key":"抠搜","name":"抠抠","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 62 | {"key":"Sso","name":"盘他","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 63 | {"key":"夸搜","name":"夸搜","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext":{"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 64 | {"key":"YiSo","name":"易搜","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 65 | {"key":"PanSearch","name":"盘Se","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 66 | {"key":"push_agent","name":"手机推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}} 67 | ] 68 | 69 | } -------------------------------------------------------------------------------- /tv/1/collection.json: -------------------------------------------------------------------------------- 1 | { 2 | "urls": [ 3 | { 4 | "url": "./heroaku_ptest.json", 5 | "name": "heroaku_ptest" 6 | }, 7 | { 8 | "url": "./heroaku_pyn.json", 9 | "name": "heroaku_pyn" 10 | }, 11 | { 12 | "url": "./heroaku_ayn.json", 13 | "name": "heroaku_ayn" 14 | }, 15 | { 16 | "url": "./heroaku_dtes.json", 17 | "name": "heroaku_dtes" 18 | }, 19 | { 20 | "url": "./gaotianliuyun_0821.json", 21 | "name": "gaotianliuyun_0821" 22 | }, 23 | { 24 | "url": "./gaotianliuyun_0826.json", 25 | "name": "gaotianliuyun_0826" 26 | }, 27 | { 28 | "url": "./gaotianliuyun_0827.json", 29 | "name": "gaotianliuyun_0827" 30 | }, 31 | { 32 | "url": "./gaotianliuyun_0825.json", 33 | "name": "gaotianliuyun_0825" 34 | }, 35 | { 36 | "url": "./gaotianliuyun_0707.json", 37 | "name": "gaotianliuyun_0707" 38 | }, 39 | { 40 | "url": "./xianyuyimu_一木自用.json", 41 | "name": "xianyuyimu_一木自用" 42 | }, 43 | { 44 | "url": "./2hacc_oktv.json", 45 | "name": "2hacc_oktv" 46 | }, 47 | { 48 | "url": "./franksun1211_0706.json", 49 | "name": "franksun1211_0706" 50 | }, 51 | { 52 | "url": "./yw88075_js.json", 53 | "name": "yw88075_js" 54 | }, 55 | { 56 | "url": "./Dong-learn9_tvbox2.json", 57 | "name": "Dong-learn9_tvbox2" 58 | }, 59 | { 60 | "url": "./liu673cn_m.json", 61 | "name": "liu673cn_m" 62 | }, 63 | { 64 | "url": "./anaer_meow.json", 65 | "name": "anaer_meow" 66 | }, 67 | { 68 | "url": "./hackyjso_jzy.json", 69 | "name": "hackyjso_jzy" 70 | } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/1/gaotianliuyun_0707.json: -------------------------------------------------------------------------------- 1 | { 2 | "urls": [ 3 | { 4 | "url": "./0821.json", 5 | "name": "高天流云 No.1" 6 | }, 7 | { 8 | "url": "./0825.json", 9 | "name": "高天流云 PG" 10 | }, 11 | { 12 | "url": "./0826.json", 13 | "name": "高天流云 FTY" 14 | }, 15 | { 16 | "url": "./0827.json", 17 | "name": "高天流云 FM" 18 | }, 19 | { 20 | "url": "./js.json", 21 | "name": "高天流云 JS" 22 | }, 23 | { 24 | "url": "./XYQ.json", 25 | "name": "高天流云 XYQ" 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /tv/1/gaotianliuyun_0826.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://raw.kkgithub.com/gaotianliuyun/gao/master/jar/fan.txt;md5;6c4ab3a9d232164c75534f9060506ee5", 3 | "wallpaper":"https://深色壁纸.xxooo.cf/", 4 | 5 | "sites":[ 6 | {"key":"豆豆","name":"备用公众号【叨观荐影】","type": 3, "api": "csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 7 | {"key":"玩偶","name":"👽玩偶哥哥┃4K弹幕","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0, "ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 8 | {"key":"YGP","name":"🚀叨观荐影┃新片","type":3,"api":"csp_YGP","searchable":0,"quickSearch":0,"changeable":0}, 9 | {"key":"alllive","name":"📽️一直播┃直播","type":3,"api":"csp_Alllive","playerType":2,"searchable":0,"quickSearch":0,"changeable":0}, 10 | {"key":"米搜","name":"🦋米盘┃搜搜","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 11 | {"key":"抠搜","name":"🍄抠抠┃搜搜","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 12 | {"key":"Lib","name": "🌟立播┃秒播","type": 3,"api": "csp_Libvio","searchable": 1,"quickSearch": 1,"changeable":1,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 13 | {"key":"文采","name":"💮文采┃秒播","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 14 | {"key":"糯米","name":"🍓糯米┃秒播","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"zxzj","name":"🍊在线┃秒播","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 16 | {"key":"比特","name":"🍄比特┃秒播","type":3,"api":"csp_Bttwoo","searchable":1,"quickSearch":1,"changeable":1}, 17 | {"key":"苹果","name":"🍎苹果┃不卡","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"厂长","name":"📔厂长┃不卡","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext": "https://www.czzy77.com/"}, 19 | {"key":"木星","name":"🌞木星┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 20 | {"key":"速播","name":"⏮️速播┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvEpcoxb5sQXd8GDXUTvbqvx0peQcuZ7GvQ0UGD/a2mS238cHqYkiBgwCduCiYrTZJtbwdDUt/L2w/LOWADxikKl6I8Cqz6OD9lIxS2anA6ytO6"}, 21 | {"key":"热播","name":"📺热播┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 22 | {"key":"南瓜","name":"🎃南瓜┃多线","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 23 | {"key":"萌米","name":"👀萌米┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 24 | 25 | {"key":"欢视","name":"👓欢视┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 26 | {"key":"可可","name":"👻可可┃多线","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 27 | {"key":"贱贱","name":"🐭贱贱┃P2P","type":3,"searchable":1,"quickSearch":1,"changeable":1,"playerType":"1","api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/jp.js"}, 28 | {"key":"Auete","name":"🏝奥特┃无广","type": 3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 29 | {"key":"新6V","name":"🧲新6V┃磁力","type":3,"api":"csp_SixV","searchable":1,"quickSearch":1,"changeable":0,"ext": "https://www.xb6v.com/"}, 30 | {"key":"短剧","name":"🌈上头┃短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"Dm84","name":"🚌巴士┃动漫","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"Ysj","name":"🎀异界┃动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | {"key":"Anime1","name":"🐾日本┃动漫","type": 3,"api": "csp_Anime1","searchable": 1,"quickSearch": 1,"changeable":1}, 34 | 35 | {"key":"926看球","name":"⚽926┃看球","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 36 | {"key":"88js","name":"⚽ 88┃看球","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/88看球.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 37 | {"key":"310js","name":"⚽ 310┃看球","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/310直播.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 38 | {"key":"Jrsjs","name":"⚽ Jrs┃球迷","type": 3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/jrk.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 39 | {"key":"酷奇","name":"🎤酷奇┃MV","type": 3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/酷奇MV.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 40 | {"key":"MTV","name":"🎧明星┃MV","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/MTV.json"}}, 41 | 42 | 43 | {"key":"虎牙直播js","name":"🐯虎牙┃直播","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.js","ext":"https://notabug.org/fantaiying/ext/main/huya2.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 44 | {"key":"斗鱼js","name":"🐟斗鱼┃直播","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/斗鱼直播.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 45 | {"key":"有声小说js","name":"🎧有声┃小说","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/有声小说吧.js","style":{"type":"rect","ratio":1},"searchable": 0,"quickSearch": 0,"changeable":0}, 46 | {"key":"Aid","name":"🚑急救┃教学","type":3,"api":"csp_FirstAid","searchable":0,"quickSearch":0,"changeable":0,"style": { "type": "rect", "ratio":3.8}}, 47 | 48 | {"key":"Sso","name":"🐌盘他┃三盘","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 49 | {"key":"夸搜","name":"🐟夸搜┃狸夸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 50 | {"key":"YiSo","name":"😹易搜┃阿狸","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 51 | {"key":"PanSearch","name":"🙀盘Se┃阿狸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 52 | {"key":"push_agent","name":"🛴手机┃推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 53 | 54 | {"key":"Bili","name":"🅱哔哔合集┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/bilibili.json"}}, 55 | {"key":"Biliych","name":"🅱哔哔演唱会┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/biliych.json"}}, 56 | {"key":"dr_兔小贝","name":"📚儿童┃启蒙","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 57 | {"key":"少儿教育","name":"📚少儿┃教育","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/少儿教育.json"}}, 58 | {"key":"小学课堂","name":"📚小学┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/小学课堂.json"}}, 59 | {"key":"初中课堂","name":"📚初中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/初中课堂.json"}}, 60 | {"key":"高中教育","name":"📚高中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/高中课堂.json"}}, 61 | {"key":"fan","name":"导航 www.饭太硬.com","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0}, 62 | {"key":"cc","name":"请勿相信视频中广告","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0} 63 | ], 64 | 65 | "logo":"https://fs-im-kefu.7moor-fs1.com/ly/4d2c3f00-7d4c-11e5-af15-41bf63ae4ea0/1716545739254/fc1b89e152cd4aa28d295107cb6c56c9.gif", 66 | "lives":[ 67 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 68 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 69 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo": "https://live.fanmingming.com/tv/{name}.png"}, 70 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua": "okhttp/3.15","playerType":2 } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/1/gaotianliuyun_0827.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider": "https://raw.kkgithub.com/gaotianliuyun/gao/master/jar/custom_spider.jar;md5;41c87635d7592069884a5dafa12acabe", 3 | "wallpaper": "http://饭太硬.top/深色壁纸/api.php", 4 | "sites": [ 5 | { 6 | "key": "商店", 7 | "name": "商店", 8 | "type": 3, 9 | "api": "csp_Market", 10 | "searchable": 0, 11 | "changeable": 0, 12 | "ext": "https://raw.kkgithub.com/gaotianliuyun/gao/master/json/market.json" 13 | }, 14 | { 15 | "key": "泥巴", 16 | "name": "泥巴", 17 | "type": 3, 18 | "api": "csp_NiNi", 19 | "searchable": 1, 20 | "changeable": 1 21 | }, 22 | { 23 | "key": "星星", 24 | "name": "星星", 25 | "type": 3, 26 | "api": "csp_Star", 27 | "searchable": 1, 28 | "changeable": 1 29 | }, 30 | { 31 | "key": "玩偶", 32 | "name": "玩偶", 33 | "type": 3, 34 | "api": "csp_Wogg", 35 | "searchable": 1, 36 | "changeable": 0, 37 | "ext": { 38 | "token": "影視天下第一", 39 | "filter": "https://raw.kkgithub.com/gaotianliuyun/gao/master/json/wogg.json" 40 | } 41 | }, 42 | { 43 | "key": "賤賤", 44 | "name": "賤賤", 45 | "type": 3, 46 | "api": "csp_Jianpian", 47 | "searchable": 1, 48 | "changeable": 1, 49 | "ext": "https://raw.kkgithub.com/gaotianliuyun/gao/master/json/jianpian.json" 50 | }, 51 | { 52 | "key": "獨播", 53 | "name": "獨播", 54 | "type": 3, 55 | "api": "csp_XPathMacFilter", 56 | "searchable": 1, 57 | "changeable": 1, 58 | "ext": "https://raw.kkgithub.com/gaotianliuyun/gao/master/json/duboku.json" 59 | }, 60 | { 61 | "key": "haiwaikan", 62 | "name": "海外看", 63 | "type": 1, 64 | "api": "https://haiwaikan.com/api.php/provide/vod", 65 | "searchable": 1, 66 | "changeable": 1, 67 | "categories": [ 68 | "日本动漫", 69 | "国产动漫", 70 | "欧美动漫", 71 | "国产剧", 72 | "韩剧", 73 | "日剧", 74 | "台剧", 75 | "泰剧", 76 | "港剧", 77 | "欧美剧", 78 | "动画电影", 79 | "韩国综艺", 80 | "国产综艺", 81 | "日本综艺", 82 | "欧美综艺", 83 | "冒险片", 84 | "剧情片", 85 | "动作片", 86 | "同性片", 87 | "喜剧片", 88 | "奇幻片", 89 | "恐怖片", 90 | "悬疑片", 91 | "惊悚片", 92 | "战争片", 93 | "歌舞片", 94 | "灾难片", 95 | "爱情片", 96 | "犯罪片", 97 | "科幻片", 98 | "纪录片", 99 | "经典片" 100 | ] 101 | }, 102 | { 103 | "key": "豆瓣", 104 | "name": "豆瓣", 105 | "type": 3, 106 | "api": "csp_Douban", 107 | "searchable": 0, 108 | "changeable": 1, 109 | "ext": "https://raw.kkgithub.com/gaotianliuyun/gao/master/json/douban.json" 110 | }, 111 | { 112 | "key": "新6V", 113 | "name": "新6V", 114 | "type": 3, 115 | "api": "csp_Xb6v", 116 | "searchable": 1, 117 | "changeable": 0, 118 | "timeout": 60 119 | }, 120 | { 121 | "key": "看球", 122 | "name": "看球", 123 | "type": 3, 124 | "api": "csp_Kanqiu", 125 | "searchable": 1, 126 | "changeable": 0, 127 | "style": { 128 | "type": "list" 129 | } 130 | }, 131 | { 132 | "key": "暴風", 133 | "name": "暴風", 134 | "type": 1, 135 | "api": "https://bfzyapi.com/api.php/provide/vod", 136 | "searchable": 1, 137 | "changeable": 1 138 | }, 139 | { 140 | "key": "索尼", 141 | "name": "索尼 ", 142 | "type": 1, 143 | "api": "https://suoniapi.com/api.php/provide/vod", 144 | "searchable": 1, 145 | "changeable": 1 146 | }, 147 | { 148 | "key": "快帆", 149 | "name": "快帆", 150 | "type": 1, 151 | "api": "https://api.kuaifan.tv/api.php/provide/vod", 152 | "searchable": 1, 153 | "changeable": 1 154 | }, 155 | { 156 | "key": "量子", 157 | "name": "量子", 158 | "type": 1, 159 | "api": "https://cj.lziapi.com/api.php/provide/vod", 160 | "searchable": 1, 161 | "changeable": 1 162 | }, 163 | { 164 | "key": "非凡", 165 | "name": "非凡", 166 | "type": 1, 167 | "api": "http://cj.ffzyapi.com/api.php/provide/vod", 168 | "searchable": 1, 169 | "changeable": 1 170 | }, 171 | { 172 | "key": "櫻花", 173 | "name": "櫻花", 174 | "type": 3, 175 | "api": "csp_Ying", 176 | "searchable": 1, 177 | "changeable": 1 178 | }, 179 | { 180 | "key": "巴士", 181 | "name": "巴士", 182 | "type": 3, 183 | "api": "csp_Dm84", 184 | "searchable": 1, 185 | "changeable": 1 186 | }, 187 | { 188 | "key": "異界", 189 | "name": "異界", 190 | "type": 3, 191 | "api": "csp_Ysj", 192 | "searchable": 1, 193 | "changeable": 1 194 | }, 195 | { 196 | "key": "哔哩", 197 | "name": "哔哩", 198 | "type": 3, 199 | "api": "csp_Bili", 200 | "searchable": 1, 201 | "changeable": 0, 202 | "style": { 203 | "type": "rect", 204 | "ratio": 1.433 205 | }, 206 | "ext": { 207 | "json": "https://raw.kkgithub.com/gaotianliuyun/gao/master/json/bili.json", 208 | "type": "帕梅拉#太极拳#广场舞#演唱会", 209 | "cookie": "" 210 | } 211 | }, 212 | { 213 | "key": "bili_open", 214 | "name": "哔哩貓", 215 | "type": 3, 216 | "api": "https://raw.kkgithub.com/gaotianliuyun/gao/master/cat/js/bili_open.js", 217 | "searchable": 1, 218 | "changeable": 0, 219 | "ext": { 220 | "categories": "短剧#沙雕动画#沙雕穿越#沙雕", 221 | "cookie": "" 222 | } 223 | }, 224 | { 225 | "key": "酷狗", 226 | "name": "酷狗", 227 | "type": 3, 228 | "api": "csp_Kugou", 229 | "searchable": 0, 230 | "changeable": 0 231 | }, 232 | { 233 | "key": "本地", 234 | "name": "本地", 235 | "type": 3, 236 | "api": "csp_Local", 237 | "searchable": 0, 238 | "changeable": 0 239 | }, 240 | { 241 | "key": "AList", 242 | "name": "AList", 243 | "type": 3, 244 | "api": "csp_AList", 245 | "searchable": 1, 246 | "changeable": 0, 247 | "ext": "https://raw.kkgithub.com/gaotianliuyun/gao/master/json/alist.json" 248 | }, 249 | { 250 | "key": "WebDAV", 251 | "name": "WebDAV", 252 | "type": 3, 253 | "api": "csp_WebDAV", 254 | "searchable": 0, 255 | "changeable": 0, 256 | "ext": "https://raw.kkgithub.com/gaotianliuyun/gao/master/json/webdav.json" 257 | }, 258 | { 259 | "key": "JustLive", 260 | "name": "JustLive", 261 | "type": 3, 262 | "api": "csp_JustLive", 263 | "searchable": 1, 264 | "changeable": 0 265 | }, 266 | { 267 | "key": "七夜", 268 | "name": "七夜", 269 | "type": 3, 270 | "api": "csp_Dovx", 271 | "searchable": 1, 272 | "changeable": 0 273 | }, 274 | { 275 | "key": "易搜", 276 | "name": "易搜", 277 | "type": 3, 278 | "api": "csp_YiSo", 279 | "searchable": 1, 280 | "changeable": 0 281 | }, 282 | { 283 | "key": "雲搜", 284 | "name": "雲搜", 285 | "type": 3, 286 | "api": "csp_UpYun", 287 | "searchable": 1, 288 | "changeable": 0 289 | }, 290 | { 291 | "key": "盤搜", 292 | "name": "盤搜", 293 | "type": 3, 294 | "api": "csp_PanSou", 295 | "searchable": 1, 296 | "changeable": 0 297 | }, 298 | { 299 | "key": "紙條搜", 300 | "name": "紙條搜", 301 | "type": 3, 302 | "api": "csp_XiaoZhiTiao", 303 | "searchable": 1, 304 | "changeable": 0 305 | }, 306 | { 307 | "key": "盤搜索", 308 | "name": "盤搜索", 309 | "type": 3, 310 | "api": "csp_PanSearch", 311 | "searchable": 1, 312 | "changeable": 0 313 | }, 314 | { 315 | "key": "找資源", 316 | "name": "找資源", 317 | "type": 3, 318 | "api": "csp_Zhaozy", 319 | "searchable": 1, 320 | "changeable": 0, 321 | "ext": "影視天下第一$$$test2$$$test2" 322 | }, 323 | { 324 | "key": "push_agent", 325 | "name": "推送", 326 | "type": 3, 327 | "api": "csp_Push", 328 | "searchable": 0, 329 | "changeable": 0, 330 | "timeout": 60 331 | } 332 | ], 333 | "doh": [ 334 | { 335 | "name": "Google", 336 | "url": "https://dns.google/dns-query", 337 | "ips": [ 338 | "8.8.4.4", 339 | "8.8.8.8" 340 | ] 341 | }, 342 | { 343 | "name": "Cloudflare", 344 | "url": "https://cloudflare-dns.com/dns-query", 345 | "ips": [ 346 | "1.1.1.1", 347 | "1.0.0.1", 348 | "2606:4700:4700::1111", 349 | "2606:4700:4700::1001" 350 | ] 351 | }, 352 | { 353 | "name": "AdGuard", 354 | "url": "https://dns.adguard.com/dns-query", 355 | "ips": [ 356 | "94.140.14.140", 357 | "94.140.14.141" 358 | ] 359 | }, 360 | { 361 | "name": "DNSWatch", 362 | "url": "https://resolver2.dns.watch/dns-query", 363 | "ips": [ 364 | "84.200.69.80", 365 | "84.200.70.40" 366 | ] 367 | }, 368 | { 369 | "name": "Quad9", 370 | "url": "https://dns.quad9.net/dns-quer", 371 | "ips": [ 372 | "9.9.9.9", 373 | "149.112.112.112" 374 | ] 375 | } 376 | ], 377 | "rules": [ 378 | { 379 | "name": "proxy", 380 | "hosts": [ 381 | "raw.githubusercontent.com", 382 | "googlevideo.com", 383 | "googleapis.com", 384 | "cdn.v82u1l.com", 385 | "cdn.iz8qkg.com", 386 | "cdn.kin6c1.com", 387 | "c.biggggg.com", 388 | "c.olddddd.com", 389 | "haiwaikan.com", 390 | "www.histar.tv", 391 | "youtube.com", 392 | "uhibo.com", 393 | ".*boku.*", 394 | ".*nivod.*", 395 | ".*ulivetv.*" 396 | ] 397 | }, 398 | { 399 | "name": "海外看", 400 | "hosts": [ 401 | "haiwaikan" 402 | ], 403 | "regex": [ 404 | "8.16", 405 | "8.1748", 406 | "10.0099", 407 | "10.3333", 408 | "10.85", 409 | "12.33", 410 | "16.0599" 411 | ] 412 | }, 413 | { 414 | "name": "索尼", 415 | "hosts": [ 416 | "suonizy" 417 | ], 418 | "regex": [ 419 | "15.1666", 420 | "15.2666" 421 | ] 422 | }, 423 | { 424 | "name": "暴風", 425 | "hosts": [ 426 | "bfzy" 427 | ], 428 | "regex": [ 429 | "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:3,[\\s\\S]*?#EXT-X-DISCONTINUITY" 430 | ] 431 | }, 432 | { 433 | "name": "星星", 434 | "hosts": [ 435 | "aws.ulivetv.net" 436 | ], 437 | "regex": [ 438 | "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:8,[\\s\\S]*?#EXT-X-DISCONTINUITY" 439 | ] 440 | }, 441 | { 442 | "name": "量子", 443 | "hosts": [ 444 | "vip.lz", 445 | "hd.lz", 446 | "v.cdnlz" 447 | ], 448 | "regex": [ 449 | "18.5333" 450 | ] 451 | }, 452 | { 453 | "name": "非凡", 454 | "hosts": [ 455 | "vip.ffzy", 456 | "hd.ffzy" 457 | ], 458 | "regex": [ 459 | "25.1" 460 | ] 461 | }, 462 | { 463 | "name": "火山嗅探", 464 | "hosts": [ 465 | "huoshan.com" 466 | ], 467 | "regex": [ 468 | "item_id=" 469 | ] 470 | }, 471 | { 472 | "name": "抖音嗅探", 473 | "hosts": [ 474 | "douyin.com" 475 | ], 476 | "regex": [ 477 | "is_play_url=" 478 | ] 479 | }, 480 | { 481 | "name": "農民嗅探", 482 | "hosts": [ 483 | "toutiaovod.com" 484 | ], 485 | "regex": [ 486 | "video/tos/cn" 487 | ] 488 | }, 489 | { 490 | "name": "七新嗅探", 491 | "hosts": [ 492 | "api.52wyb.com" 493 | ], 494 | "regex": [ 495 | "m3u8?pt=m3u8" 496 | ] 497 | }, 498 | { 499 | "name": "毛驢點擊", 500 | "hosts": [ 501 | "www.maolvys.com" 502 | ], 503 | "script": [ 504 | "document.getElementsByClassName('swal-button swal-button--confirm')[0].click()" 505 | ] 506 | } 507 | ], 508 | "ads": [ 509 | "static-mozai.4gtv.tv", 510 | "s3t3d2y8.afcdn.net" 511 | ] 512 | } 513 | -------------------------------------------------------------------------------- /tv/2/0826.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://gcore.jsdelivr.net/gh/gaotianliuyun/gao@master/jar/fan.txt;md5;6c4ab3a9d232164c75534f9060506ee5", 3 | "wallpaper":"https://深色壁纸.xxooo.cf/", 4 | 5 | "sites":[ 6 | {"key":"豆豆","name":"备用公众号【叨观荐影】","type": 3, "api": "csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 7 | {"key":"玩偶","name":"👽玩偶哥哥┃4K弹幕","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0, "ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 8 | {"key":"YGP","name":"🚀叨观荐影┃新片","type":3,"api":"csp_YGP","searchable":0,"quickSearch":0,"changeable":0}, 9 | {"key":"alllive","name":"📽️一直播┃直播","type":3,"api":"csp_Alllive","playerType":2,"searchable":0,"quickSearch":0,"changeable":0}, 10 | {"key":"米搜","name":"🦋米盘┃搜搜","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 11 | {"key":"抠搜","name":"🍄抠抠┃搜搜","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 12 | {"key":"Lib","name": "🌟立播┃秒播","type": 3,"api": "csp_Libvio","searchable": 1,"quickSearch": 1,"changeable":1,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 13 | {"key":"文采","name":"💮文采┃秒播","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 14 | {"key":"糯米","name":"🍓糯米┃秒播","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"zxzj","name":"🍊在线┃秒播","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 16 | {"key":"比特","name":"🍄比特┃秒播","type":3,"api":"csp_Bttwoo","searchable":1,"quickSearch":1,"changeable":1}, 17 | {"key":"苹果","name":"🍎苹果┃不卡","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"厂长","name":"📔厂长┃不卡","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext": "https://www.czzy77.com/"}, 19 | {"key":"木星","name":"🌞木星┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 20 | {"key":"速播","name":"⏮️速播┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvEpcoxb5sQXd8GDXUTvbqvx0peQcuZ7GvQ0UGD/a2mS238cHqYkiBgwCduCiYrTZJtbwdDUt/L2w/LOWADxikKl6I8Cqz6OD9lIxS2anA6ytO6"}, 21 | {"key":"热播","name":"📺热播┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 22 | {"key":"南瓜","name":"🎃南瓜┃多线","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 23 | {"key":"萌米","name":"👀萌米┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 24 | 25 | {"key":"欢视","name":"👓欢视┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 26 | {"key":"可可","name":"👻可可┃多线","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 27 | {"key":"贱贱","name":"🐭贱贱┃P2P","type":3,"searchable":1,"quickSearch":1,"changeable":1,"playerType":"1","api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/jp.js"}, 28 | {"key":"Auete","name":"🏝奥特┃无广","type": 3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 29 | {"key":"新6V","name":"🧲新6V┃磁力","type":3,"api":"csp_SixV","searchable":1,"quickSearch":1,"changeable":0,"ext": "https://www.xb6v.com/"}, 30 | {"key":"短剧","name":"🌈上头┃短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"Dm84","name":"🚌巴士┃动漫","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"Ysj","name":"🎀异界┃动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | {"key":"Anime1","name":"🐾日本┃动漫","type": 3,"api": "csp_Anime1","searchable": 1,"quickSearch": 1,"changeable":1}, 34 | 35 | {"key":"926看球","name":"⚽926┃看球","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 36 | {"key":"88js","name":"⚽ 88┃看球","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/88看球.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 37 | {"key":"310js","name":"⚽ 310┃看球","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/310直播.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 38 | {"key":"Jrsjs","name":"⚽ Jrs┃球迷","type": 3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/jrk.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 39 | {"key":"酷奇","name":"🎤酷奇┃MV","type": 3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/酷奇MV.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 40 | {"key":"MTV","name":"🎧明星┃MV","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/MTV.json"}}, 41 | 42 | 43 | {"key":"虎牙直播js","name":"🐯虎牙┃直播","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.js","ext":"https://notabug.org/fantaiying/ext@main/huya2.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 44 | {"key":"斗鱼js","name":"🐟斗鱼┃直播","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/斗鱼直播.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 45 | {"key":"有声小说js","name":"🎧有声┃小说","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/有声小说吧.js","style":{"type":"rect","ratio":1},"searchable": 0,"quickSearch": 0,"changeable":0}, 46 | {"key":"Aid","name":"🚑急救┃教学","type":3,"api":"csp_FirstAid","searchable":0,"quickSearch":0,"changeable":0,"style": { "type": "rect", "ratio":3.8}}, 47 | 48 | {"key":"Sso","name":"🐌盘他┃三盘","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 49 | {"key":"夸搜","name":"🐟夸搜┃狸夸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 50 | {"key":"YiSo","name":"😹易搜┃阿狸","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 51 | {"key":"PanSearch","name":"🙀盘Se┃阿狸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 52 | {"key":"push_agent","name":"🛴手机┃推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 53 | 54 | {"key":"Bili","name":"🅱哔哔合集┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/bilibili.json"}}, 55 | {"key":"Biliych","name":"🅱哔哔演唱会┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/biliych.json"}}, 56 | {"key":"dr_兔小贝","name":"📚儿童┃启蒙","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 57 | {"key":"少儿教育","name":"📚少儿┃教育","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/少儿教育.json"}}, 58 | {"key":"小学课堂","name":"📚小学┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/小学课堂.json"}}, 59 | {"key":"初中课堂","name":"📚初中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/初中课堂.json"}}, 60 | {"key":"高中教育","name":"📚高中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/高中课堂.json"}}, 61 | {"key":"fan","name":"导航 www.饭太硬.com","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0}, 62 | {"key":"cc","name":"请勿相信视频中广告","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0} 63 | ], 64 | 65 | "logo":"https://fs-im-kefu.7moor-fs1.com/ly/4d2c3f00-7d4c-11e5-af15-41bf63ae4ea0/1716545739254/fc1b89e152cd4aa28d295107cb6c56c9.gif", 66 | "lives":[ 67 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 68 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 69 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo": "https://live.fanmingming.com/tv/{name}.png"}, 70 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua": "okhttp/3.15","playerType":2 } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/2/0827.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider": "https://gcore.jsdelivr.net/gh/gaotianliuyun/gao@master/jar/custom_spider.jar;md5;41c87635d7592069884a5dafa12acabe", 3 | "wallpaper": "http://饭太硬.top/深色壁纸/api.php", 4 | "sites": [ 5 | { 6 | "key": "商店", 7 | "name": "商店", 8 | "type": 3, 9 | "api": "csp_Market", 10 | "searchable": 0, 11 | "changeable": 0, 12 | "ext": "https://gcore.jsdelivr.net/gh/gaotianliuyun/gao@master/json/market.json" 13 | }, 14 | { 15 | "key": "泥巴", 16 | "name": "泥巴", 17 | "type": 3, 18 | "api": "csp_NiNi", 19 | "searchable": 1, 20 | "changeable": 1 21 | }, 22 | { 23 | "key": "星星", 24 | "name": "星星", 25 | "type": 3, 26 | "api": "csp_Star", 27 | "searchable": 1, 28 | "changeable": 1 29 | }, 30 | { 31 | "key": "玩偶", 32 | "name": "玩偶", 33 | "type": 3, 34 | "api": "csp_Wogg", 35 | "searchable": 1, 36 | "changeable": 0, 37 | "ext": { 38 | "token": "影視天下第一", 39 | "filter": "https://gcore.jsdelivr.net/gh/gaotianliuyun/gao@master/json/wogg.json" 40 | } 41 | }, 42 | { 43 | "key": "賤賤", 44 | "name": "賤賤", 45 | "type": 3, 46 | "api": "csp_Jianpian", 47 | "searchable": 1, 48 | "changeable": 1, 49 | "ext": "https://gcore.jsdelivr.net/gh/gaotianliuyun/gao@master/json/jianpian.json" 50 | }, 51 | { 52 | "key": "獨播", 53 | "name": "獨播", 54 | "type": 3, 55 | "api": "csp_XPathMacFilter", 56 | "searchable": 1, 57 | "changeable": 1, 58 | "ext": "https://gcore.jsdelivr.net/gh/gaotianliuyun/gao@master/json/duboku.json" 59 | }, 60 | { 61 | "key": "haiwaikan", 62 | "name": "海外看", 63 | "type": 1, 64 | "api": "https://haiwaikan.com/api.php/provide/vod", 65 | "searchable": 1, 66 | "changeable": 1, 67 | "categories": [ 68 | "日本动漫", 69 | "国产动漫", 70 | "欧美动漫", 71 | "国产剧", 72 | "韩剧", 73 | "日剧", 74 | "台剧", 75 | "泰剧", 76 | "港剧", 77 | "欧美剧", 78 | "动画电影", 79 | "韩国综艺", 80 | "国产综艺", 81 | "日本综艺", 82 | "欧美综艺", 83 | "冒险片", 84 | "剧情片", 85 | "动作片", 86 | "同性片", 87 | "喜剧片", 88 | "奇幻片", 89 | "恐怖片", 90 | "悬疑片", 91 | "惊悚片", 92 | "战争片", 93 | "歌舞片", 94 | "灾难片", 95 | "爱情片", 96 | "犯罪片", 97 | "科幻片", 98 | "纪录片", 99 | "经典片" 100 | ] 101 | }, 102 | { 103 | "key": "豆瓣", 104 | "name": "豆瓣", 105 | "type": 3, 106 | "api": "csp_Douban", 107 | "searchable": 0, 108 | "changeable": 1, 109 | "ext": "https://gcore.jsdelivr.net/gh/gaotianliuyun/gao@master/json/douban.json" 110 | }, 111 | { 112 | "key": "新6V", 113 | "name": "新6V", 114 | "type": 3, 115 | "api": "csp_Xb6v", 116 | "searchable": 1, 117 | "changeable": 0, 118 | "timeout": 60 119 | }, 120 | { 121 | "key": "看球", 122 | "name": "看球", 123 | "type": 3, 124 | "api": "csp_Kanqiu", 125 | "searchable": 1, 126 | "changeable": 0, 127 | "style": { 128 | "type": "list" 129 | } 130 | }, 131 | { 132 | "key": "暴風", 133 | "name": "暴風", 134 | "type": 1, 135 | "api": "https://bfzyapi.com/api.php/provide/vod", 136 | "searchable": 1, 137 | "changeable": 1 138 | }, 139 | { 140 | "key": "索尼", 141 | "name": "索尼 ", 142 | "type": 1, 143 | "api": "https://suoniapi.com/api.php/provide/vod", 144 | "searchable": 1, 145 | "changeable": 1 146 | }, 147 | { 148 | "key": "快帆", 149 | "name": "快帆", 150 | "type": 1, 151 | "api": "https://api.kuaifan.tv/api.php/provide/vod", 152 | "searchable": 1, 153 | "changeable": 1 154 | }, 155 | { 156 | "key": "量子", 157 | "name": "量子", 158 | "type": 1, 159 | "api": "https://cj.lziapi.com/api.php/provide/vod", 160 | "searchable": 1, 161 | "changeable": 1 162 | }, 163 | { 164 | "key": "非凡", 165 | "name": "非凡", 166 | "type": 1, 167 | "api": "http://cj.ffzyapi.com/api.php/provide/vod", 168 | "searchable": 1, 169 | "changeable": 1 170 | }, 171 | { 172 | "key": "櫻花", 173 | "name": "櫻花", 174 | "type": 3, 175 | "api": "csp_Ying", 176 | "searchable": 1, 177 | "changeable": 1 178 | }, 179 | { 180 | "key": "巴士", 181 | "name": "巴士", 182 | "type": 3, 183 | "api": "csp_Dm84", 184 | "searchable": 1, 185 | "changeable": 1 186 | }, 187 | { 188 | "key": "異界", 189 | "name": "異界", 190 | "type": 3, 191 | "api": "csp_Ysj", 192 | "searchable": 1, 193 | "changeable": 1 194 | }, 195 | { 196 | "key": "哔哩", 197 | "name": "哔哩", 198 | "type": 3, 199 | "api": "csp_Bili", 200 | "searchable": 1, 201 | "changeable": 0, 202 | "style": { 203 | "type": "rect", 204 | "ratio": 1.433 205 | }, 206 | "ext": { 207 | "json": "https://gcore.jsdelivr.net/gh/gaotianliuyun/gao@master/json/bili.json", 208 | "type": "帕梅拉#太极拳#广场舞#演唱会", 209 | "cookie": "" 210 | } 211 | }, 212 | { 213 | "key": "bili_open", 214 | "name": "哔哩貓", 215 | "type": 3, 216 | "api": "https://gcore.jsdelivr.net/gh/gaotianliuyun/gao@master/cat/js/bili_open.js", 217 | "searchable": 1, 218 | "changeable": 0, 219 | "ext": { 220 | "categories": "短剧#沙雕动画#沙雕穿越#沙雕", 221 | "cookie": "" 222 | } 223 | }, 224 | { 225 | "key": "酷狗", 226 | "name": "酷狗", 227 | "type": 3, 228 | "api": "csp_Kugou", 229 | "searchable": 0, 230 | "changeable": 0 231 | }, 232 | { 233 | "key": "本地", 234 | "name": "本地", 235 | "type": 3, 236 | "api": "csp_Local", 237 | "searchable": 0, 238 | "changeable": 0 239 | }, 240 | { 241 | "key": "AList", 242 | "name": "AList", 243 | "type": 3, 244 | "api": "csp_AList", 245 | "searchable": 1, 246 | "changeable": 0, 247 | "ext": "https://gcore.jsdelivr.net/gh/gaotianliuyun/gao@master/json/alist.json" 248 | }, 249 | { 250 | "key": "WebDAV", 251 | "name": "WebDAV", 252 | "type": 3, 253 | "api": "csp_WebDAV", 254 | "searchable": 0, 255 | "changeable": 0, 256 | "ext": "https://gcore.jsdelivr.net/gh/gaotianliuyun/gao@master/json/webdav.json" 257 | }, 258 | { 259 | "key": "JustLive", 260 | "name": "JustLive", 261 | "type": 3, 262 | "api": "csp_JustLive", 263 | "searchable": 1, 264 | "changeable": 0 265 | }, 266 | { 267 | "key": "七夜", 268 | "name": "七夜", 269 | "type": 3, 270 | "api": "csp_Dovx", 271 | "searchable": 1, 272 | "changeable": 0 273 | }, 274 | { 275 | "key": "易搜", 276 | "name": "易搜", 277 | "type": 3, 278 | "api": "csp_YiSo", 279 | "searchable": 1, 280 | "changeable": 0 281 | }, 282 | { 283 | "key": "雲搜", 284 | "name": "雲搜", 285 | "type": 3, 286 | "api": "csp_UpYun", 287 | "searchable": 1, 288 | "changeable": 0 289 | }, 290 | { 291 | "key": "盤搜", 292 | "name": "盤搜", 293 | "type": 3, 294 | "api": "csp_PanSou", 295 | "searchable": 1, 296 | "changeable": 0 297 | }, 298 | { 299 | "key": "紙條搜", 300 | "name": "紙條搜", 301 | "type": 3, 302 | "api": "csp_XiaoZhiTiao", 303 | "searchable": 1, 304 | "changeable": 0 305 | }, 306 | { 307 | "key": "盤搜索", 308 | "name": "盤搜索", 309 | "type": 3, 310 | "api": "csp_PanSearch", 311 | "searchable": 1, 312 | "changeable": 0 313 | }, 314 | { 315 | "key": "找資源", 316 | "name": "找資源", 317 | "type": 3, 318 | "api": "csp_Zhaozy", 319 | "searchable": 1, 320 | "changeable": 0, 321 | "ext": "影視天下第一$$$test2$$$test2" 322 | }, 323 | { 324 | "key": "push_agent", 325 | "name": "推送", 326 | "type": 3, 327 | "api": "csp_Push", 328 | "searchable": 0, 329 | "changeable": 0, 330 | "timeout": 60 331 | } 332 | ], 333 | "doh": [ 334 | { 335 | "name": "Google", 336 | "url": "https://dns.google/dns-query", 337 | "ips": [ 338 | "8.8.4.4", 339 | "8.8.8.8" 340 | ] 341 | }, 342 | { 343 | "name": "Cloudflare", 344 | "url": "https://cloudflare-dns.com/dns-query", 345 | "ips": [ 346 | "1.1.1.1", 347 | "1.0.0.1", 348 | "2606:4700:4700::1111", 349 | "2606:4700:4700::1001" 350 | ] 351 | }, 352 | { 353 | "name": "AdGuard", 354 | "url": "https://dns.adguard.com/dns-query", 355 | "ips": [ 356 | "94.140.14.140", 357 | "94.140.14.141" 358 | ] 359 | }, 360 | { 361 | "name": "DNSWatch", 362 | "url": "https://resolver2.dns.watch/dns-query", 363 | "ips": [ 364 | "84.200.69.80", 365 | "84.200.70.40" 366 | ] 367 | }, 368 | { 369 | "name": "Quad9", 370 | "url": "https://dns.quad9.net/dns-quer", 371 | "ips": [ 372 | "9.9.9.9", 373 | "149.112.112.112" 374 | ] 375 | } 376 | ], 377 | "rules": [ 378 | { 379 | "name": "proxy", 380 | "hosts": [ 381 | "raw.githubusercontent.com", 382 | "googlevideo.com", 383 | "googleapis.com", 384 | "cdn.v82u1l.com", 385 | "cdn.iz8qkg.com", 386 | "cdn.kin6c1.com", 387 | "c.biggggg.com", 388 | "c.olddddd.com", 389 | "haiwaikan.com", 390 | "www.histar.tv", 391 | "youtube.com", 392 | "uhibo.com", 393 | ".*boku.*", 394 | ".*nivod.*", 395 | ".*ulivetv.*" 396 | ] 397 | }, 398 | { 399 | "name": "海外看", 400 | "hosts": [ 401 | "haiwaikan" 402 | ], 403 | "regex": [ 404 | "8.16", 405 | "8.1748", 406 | "10.0099", 407 | "10.3333", 408 | "10.85", 409 | "12.33", 410 | "16.0599" 411 | ] 412 | }, 413 | { 414 | "name": "索尼", 415 | "hosts": [ 416 | "suonizy" 417 | ], 418 | "regex": [ 419 | "15.1666", 420 | "15.2666" 421 | ] 422 | }, 423 | { 424 | "name": "暴風", 425 | "hosts": [ 426 | "bfzy" 427 | ], 428 | "regex": [ 429 | "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:3,[\\s\\S]*?#EXT-X-DISCONTINUITY" 430 | ] 431 | }, 432 | { 433 | "name": "星星", 434 | "hosts": [ 435 | "aws.ulivetv.net" 436 | ], 437 | "regex": [ 438 | "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:8,[\\s\\S]*?#EXT-X-DISCONTINUITY" 439 | ] 440 | }, 441 | { 442 | "name": "量子", 443 | "hosts": [ 444 | "vip.lz", 445 | "hd.lz", 446 | "v.cdnlz" 447 | ], 448 | "regex": [ 449 | "18.5333" 450 | ] 451 | }, 452 | { 453 | "name": "非凡", 454 | "hosts": [ 455 | "vip.ffzy", 456 | "hd.ffzy" 457 | ], 458 | "regex": [ 459 | "25.1" 460 | ] 461 | }, 462 | { 463 | "name": "火山嗅探", 464 | "hosts": [ 465 | "huoshan.com" 466 | ], 467 | "regex": [ 468 | "item_id=" 469 | ] 470 | }, 471 | { 472 | "name": "抖音嗅探", 473 | "hosts": [ 474 | "douyin.com" 475 | ], 476 | "regex": [ 477 | "is_play_url=" 478 | ] 479 | }, 480 | { 481 | "name": "農民嗅探", 482 | "hosts": [ 483 | "toutiaovod.com" 484 | ], 485 | "regex": [ 486 | "video/tos/cn" 487 | ] 488 | }, 489 | { 490 | "name": "七新嗅探", 491 | "hosts": [ 492 | "api.52wyb.com" 493 | ], 494 | "regex": [ 495 | "m3u8?pt=m3u8" 496 | ] 497 | }, 498 | { 499 | "name": "毛驢點擊", 500 | "hosts": [ 501 | "www.maolvys.com" 502 | ], 503 | "script": [ 504 | "document.getElementsByClassName('swal-button swal-button--confirm')[0].click()" 505 | ] 506 | } 507 | ], 508 | "ads": [ 509 | "static-mozai.4gtv.tv", 510 | "s3t3d2y8.afcdn.net" 511 | ] 512 | } 513 | -------------------------------------------------------------------------------- /tv/2/2hacc_oktv.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://raw.kkgithub.com/2hacc/TVBox/main/jar/tvbox.txt;md5;265301f463ec681dcbba91897f20f08b", 3 | "logo":"https://raw.kkgithub.com/2hacc/TVBox/main/logo.png", 4 | "wallpaper":"http://www.kf666888.cn/api/tvbox/img", 5 | "lives":[ 6 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 7 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 8 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo":"https://live.fanmingming.com/tv/{name}.png"}, 9 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua":"okhttp/3.15","playerType":2} 10 | ], 11 | "sites":[ 12 | {"key":"豆瓣","name":"豆瓣","type": 3,"api":"csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 13 | {"key":"玩偶哥","name":"玩偶哥","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 14 | {"key":"csp_NanGua","name":"南瓜","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"csp_Jpys","name":"文采","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 16 | {"key":"csp_NewCz","name":"厂长","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.czzyvideo.com/"}, 17 | {"key":"csp_Nmyswv","name":"糯米","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"csp_YCyz","name":"原创","type":3,"api":"csp_YCyz","timeout":15,"playerType":1,"searchable":1,"quickSearch":1,"changeable":1}, 19 | {"key":"zxzj","name":"在线","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 20 | {"key":"csp_Ddrk","name":"低端","type":3,"api":"csp_Ddrk","playerType":"2","searchable":1,"quickSearch":1,"changeable":1}, 21 | {"key":"csp_Auete","name":"Auete","type":3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 22 | {"key":"csp_Libvio","name":"Libvio","type":3,"api":"csp_Libvio","searchable":1,"quickSearch":1,"changeable":1,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 23 | {"key":"csp_AppSx","name":"木星","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 24 | {"key":"热播","name":"热播","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 25 | {"key":"萌米","name":"萌米","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 26 | {"key":"欢视","name":"欢视","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 27 | {"key":"csp_LiteApple","name":"小苹果","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 28 | {"key":"csp_Kekys","name":"可可","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 29 | {"key":"csp_Djtt","name":"短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 30 | {"key":"csp_Dm84","name":"动漫巴士","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"csp_Anime1","name":"日本动漫","type":3,"api":"csp_Anime1","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"csp_Ysj","name":"异界动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | 34 | {"key":"926看球","name":"926","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 35 | {"key":"88js","name":"88","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/88看球.js","style":{"type":"list"}, 36 | "searchable":0,"quickSearch":0,"changeable":0}, 37 | {"key":"310js","name":"310","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/310直播.js","style":{"type":"list"}, 38 | "searchable":0,"quickSearch":0,"changeable":0}, 39 | {"key":"Jrsjs","name":"Jrs","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/jrk.js","style":{"type":"list"}, 40 | "searchable":0,"quickSearch":0,"changeable":0}, 41 | {"key":"酷奇","name":"酷奇","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/酷奇MV.js","style":{"type":"rect","ratio":1.597}, 42 | "searchable":0,"quickSearch":0,"changeable":0}, 43 | {"key":"MTV","name":"明星","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 44 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/MTV.json"}}, 45 | {"key":"虎牙直播js","name":"虎牙","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/huya2.js","style":{"type":"rect","ratio":1.755}, 46 | "playerType":"2","searchable":0,"quickSearch":0,"changeable":0}, 47 | {"key":"斗鱼js","name":"斗鱼","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/斗鱼直播.js","style":{"type":"rect","ratio":1.755}, 48 | "playerType":"2","searchable":0,"quickSearch":0,"changeable":0}, 49 | 50 | {"key":"dr_兔小贝","name":"儿童","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0}, 51 | {"key":"少儿教育","name":"少儿","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 52 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/少儿教育.json"}}, 53 | {"key":"小学课堂","name":"小学","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 54 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/小学课堂.json"}}, 55 | {"key":"初中课堂","name":"初中","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 56 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/初中课堂.json"}}, 57 | {"key":"高中教育","name":"高中","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 58 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/高中课堂.json"}}, 59 | 60 | {"key":"米搜","name":"米盘","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 61 | {"key":"抠搜","name":"抠抠","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 62 | {"key":"Sso","name":"盘他","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 63 | {"key":"夸搜","name":"夸搜","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext":{"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 64 | {"key":"YiSo","name":"易搜","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 65 | {"key":"PanSearch","name":"盘Se","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 66 | {"key":"push_agent","name":"手机推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}} 67 | ] 68 | 69 | } -------------------------------------------------------------------------------- /tv/2/collection.json: -------------------------------------------------------------------------------- 1 | { 2 | "urls": [ 3 | { 4 | "url": "./heroaku_ptest.json", 5 | "name": "heroaku_ptest" 6 | }, 7 | { 8 | "url": "./heroaku_pyn.json", 9 | "name": "heroaku_pyn" 10 | }, 11 | { 12 | "url": "./heroaku_ayn.json", 13 | "name": "heroaku_ayn" 14 | }, 15 | { 16 | "url": "./heroaku_dtes.json", 17 | "name": "heroaku_dtes" 18 | }, 19 | { 20 | "url": "./gaotianliuyun_0821.json", 21 | "name": "gaotianliuyun_0821" 22 | }, 23 | { 24 | "url": "./gaotianliuyun_0826.json", 25 | "name": "gaotianliuyun_0826" 26 | }, 27 | { 28 | "url": "./gaotianliuyun_0827.json", 29 | "name": "gaotianliuyun_0827" 30 | }, 31 | { 32 | "url": "./gaotianliuyun_0825.json", 33 | "name": "gaotianliuyun_0825" 34 | }, 35 | { 36 | "url": "./gaotianliuyun_0707.json", 37 | "name": "gaotianliuyun_0707" 38 | }, 39 | { 40 | "url": "./xianyuyimu_一木自用.json", 41 | "name": "xianyuyimu_一木自用" 42 | }, 43 | { 44 | "url": "./2hacc_oktv.json", 45 | "name": "2hacc_oktv" 46 | }, 47 | { 48 | "url": "./franksun1211_0706.json", 49 | "name": "franksun1211_0706" 50 | }, 51 | { 52 | "url": "./yw88075_js.json", 53 | "name": "yw88075_js" 54 | }, 55 | { 56 | "url": "./Dong-learn9_tvbox2.json", 57 | "name": "Dong-learn9_tvbox2" 58 | }, 59 | { 60 | "url": "./liu673cn_m.json", 61 | "name": "liu673cn_m" 62 | }, 63 | { 64 | "url": "./anaer_meow.json", 65 | "name": "anaer_meow" 66 | }, 67 | { 68 | "url": "./hackyjso_jzy.json", 69 | "name": "hackyjso_jzy" 70 | } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/2/gaotianliuyun_0707.json: -------------------------------------------------------------------------------- 1 | { 2 | "urls": [ 3 | { 4 | "url": "./0821.json", 5 | "name": "高天流云 No.1" 6 | }, 7 | { 8 | "url": "./0825.json", 9 | "name": "高天流云 PG" 10 | }, 11 | { 12 | "url": "./0826.json", 13 | "name": "高天流云 FTY" 14 | }, 15 | { 16 | "url": "./0827.json", 17 | "name": "高天流云 FM" 18 | }, 19 | { 20 | "url": "./js.json", 21 | "name": "高天流云 JS" 22 | }, 23 | { 24 | "url": "./XYQ.json", 25 | "name": "高天流云 XYQ" 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /tv/2/gaotianliuyun_0826.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://gcore.jsdelivr.net/gh/gaotianliuyun/gao@master/jar/fan.txt;md5;6c4ab3a9d232164c75534f9060506ee5", 3 | "wallpaper":"https://深色壁纸.xxooo.cf/", 4 | 5 | "sites":[ 6 | {"key":"豆豆","name":"备用公众号【叨观荐影】","type": 3, "api": "csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 7 | {"key":"玩偶","name":"👽玩偶哥哥┃4K弹幕","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0, "ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 8 | {"key":"YGP","name":"🚀叨观荐影┃新片","type":3,"api":"csp_YGP","searchable":0,"quickSearch":0,"changeable":0}, 9 | {"key":"alllive","name":"📽️一直播┃直播","type":3,"api":"csp_Alllive","playerType":2,"searchable":0,"quickSearch":0,"changeable":0}, 10 | {"key":"米搜","name":"🦋米盘┃搜搜","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 11 | {"key":"抠搜","name":"🍄抠抠┃搜搜","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 12 | {"key":"Lib","name": "🌟立播┃秒播","type": 3,"api": "csp_Libvio","searchable": 1,"quickSearch": 1,"changeable":1,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 13 | {"key":"文采","name":"💮文采┃秒播","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 14 | {"key":"糯米","name":"🍓糯米┃秒播","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"zxzj","name":"🍊在线┃秒播","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 16 | {"key":"比特","name":"🍄比特┃秒播","type":3,"api":"csp_Bttwoo","searchable":1,"quickSearch":1,"changeable":1}, 17 | {"key":"苹果","name":"🍎苹果┃不卡","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"厂长","name":"📔厂长┃不卡","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext": "https://www.czzy77.com/"}, 19 | {"key":"木星","name":"🌞木星┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 20 | {"key":"速播","name":"⏮️速播┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvEpcoxb5sQXd8GDXUTvbqvx0peQcuZ7GvQ0UGD/a2mS238cHqYkiBgwCduCiYrTZJtbwdDUt/L2w/LOWADxikKl6I8Cqz6OD9lIxS2anA6ytO6"}, 21 | {"key":"热播","name":"📺热播┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 22 | {"key":"南瓜","name":"🎃南瓜┃多线","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 23 | {"key":"萌米","name":"👀萌米┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 24 | 25 | {"key":"欢视","name":"👓欢视┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 26 | {"key":"可可","name":"👻可可┃多线","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 27 | {"key":"贱贱","name":"🐭贱贱┃P2P","type":3,"searchable":1,"quickSearch":1,"changeable":1,"playerType":"1","api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/jp.js"}, 28 | {"key":"Auete","name":"🏝奥特┃无广","type": 3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 29 | {"key":"新6V","name":"🧲新6V┃磁力","type":3,"api":"csp_SixV","searchable":1,"quickSearch":1,"changeable":0,"ext": "https://www.xb6v.com/"}, 30 | {"key":"短剧","name":"🌈上头┃短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"Dm84","name":"🚌巴士┃动漫","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"Ysj","name":"🎀异界┃动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | {"key":"Anime1","name":"🐾日本┃动漫","type": 3,"api": "csp_Anime1","searchable": 1,"quickSearch": 1,"changeable":1}, 34 | 35 | {"key":"926看球","name":"⚽926┃看球","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 36 | {"key":"88js","name":"⚽ 88┃看球","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/88看球.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 37 | {"key":"310js","name":"⚽ 310┃看球","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/310直播.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 38 | {"key":"Jrsjs","name":"⚽ Jrs┃球迷","type": 3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/jrk.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 39 | {"key":"酷奇","name":"🎤酷奇┃MV","type": 3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/酷奇MV.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 40 | {"key":"MTV","name":"🎧明星┃MV","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/MTV.json"}}, 41 | 42 | 43 | {"key":"虎牙直播js","name":"🐯虎牙┃直播","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.js","ext":"https://notabug.org/fantaiying/ext@main/huya2.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 44 | {"key":"斗鱼js","name":"🐟斗鱼┃直播","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/斗鱼直播.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 45 | {"key":"有声小说js","name":"🎧有声┃小说","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/有声小说吧.js","style":{"type":"rect","ratio":1},"searchable": 0,"quickSearch": 0,"changeable":0}, 46 | {"key":"Aid","name":"🚑急救┃教学","type":3,"api":"csp_FirstAid","searchable":0,"quickSearch":0,"changeable":0,"style": { "type": "rect", "ratio":3.8}}, 47 | 48 | {"key":"Sso","name":"🐌盘他┃三盘","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 49 | {"key":"夸搜","name":"🐟夸搜┃狸夸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 50 | {"key":"YiSo","name":"😹易搜┃阿狸","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 51 | {"key":"PanSearch","name":"🙀盘Se┃阿狸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 52 | {"key":"push_agent","name":"🛴手机┃推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 53 | 54 | {"key":"Bili","name":"🅱哔哔合集┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/bilibili.json"}}, 55 | {"key":"Biliych","name":"🅱哔哔演唱会┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/biliych.json"}}, 56 | {"key":"dr_兔小贝","name":"📚儿童┃启蒙","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 57 | {"key":"少儿教育","name":"📚少儿┃教育","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/少儿教育.json"}}, 58 | {"key":"小学课堂","name":"📚小学┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/小学课堂.json"}}, 59 | {"key":"初中课堂","name":"📚初中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/初中课堂.json"}}, 60 | {"key":"高中教育","name":"📚高中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/高中课堂.json"}}, 61 | {"key":"fan","name":"导航 www.饭太硬.com","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0}, 62 | {"key":"cc","name":"请勿相信视频中广告","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0} 63 | ], 64 | 65 | "logo":"https://fs-im-kefu.7moor-fs1.com/ly/4d2c3f00-7d4c-11e5-af15-41bf63ae4ea0/1716545739254/fc1b89e152cd4aa28d295107cb6c56c9.gif", 66 | "lives":[ 67 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 68 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 69 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo": "https://live.fanmingming.com/tv/{name}.png"}, 70 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua": "okhttp/3.15","playerType":2 } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/3/0826.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/gaotianliuyun/gao/master/jar/fan.txt;md5;6c4ab3a9d232164c75534f9060506ee5", 3 | "wallpaper":"https://深色壁纸.xxooo.cf/", 4 | 5 | "sites":[ 6 | {"key":"豆豆","name":"备用公众号【叨观荐影】","type": 3, "api": "csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 7 | {"key":"玩偶","name":"👽玩偶哥哥┃4K弹幕","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0, "ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 8 | {"key":"YGP","name":"🚀叨观荐影┃新片","type":3,"api":"csp_YGP","searchable":0,"quickSearch":0,"changeable":0}, 9 | {"key":"alllive","name":"📽️一直播┃直播","type":3,"api":"csp_Alllive","playerType":2,"searchable":0,"quickSearch":0,"changeable":0}, 10 | {"key":"米搜","name":"🦋米盘┃搜搜","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 11 | {"key":"抠搜","name":"🍄抠抠┃搜搜","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 12 | {"key":"Lib","name": "🌟立播┃秒播","type": 3,"api": "csp_Libvio","searchable": 1,"quickSearch": 1,"changeable":1,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 13 | {"key":"文采","name":"💮文采┃秒播","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 14 | {"key":"糯米","name":"🍓糯米┃秒播","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"zxzj","name":"🍊在线┃秒播","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 16 | {"key":"比特","name":"🍄比特┃秒播","type":3,"api":"csp_Bttwoo","searchable":1,"quickSearch":1,"changeable":1}, 17 | {"key":"苹果","name":"🍎苹果┃不卡","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"厂长","name":"📔厂长┃不卡","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext": "https://www.czzy77.com/"}, 19 | {"key":"木星","name":"🌞木星┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 20 | {"key":"速播","name":"⏮️速播┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvEpcoxb5sQXd8GDXUTvbqvx0peQcuZ7GvQ0UGD/a2mS238cHqYkiBgwCduCiYrTZJtbwdDUt/L2w/LOWADxikKl6I8Cqz6OD9lIxS2anA6ytO6"}, 21 | {"key":"热播","name":"📺热播┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 22 | {"key":"南瓜","name":"🎃南瓜┃多线","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 23 | {"key":"萌米","name":"👀萌米┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 24 | 25 | {"key":"欢视","name":"👓欢视┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 26 | {"key":"可可","name":"👻可可┃多线","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 27 | {"key":"贱贱","name":"🐭贱贱┃P2P","type":3,"searchable":1,"quickSearch":1,"changeable":1,"playerType":"1","api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/jp.js"}, 28 | {"key":"Auete","name":"🏝奥特┃无广","type": 3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 29 | {"key":"新6V","name":"🧲新6V┃磁力","type":3,"api":"csp_SixV","searchable":1,"quickSearch":1,"changeable":0,"ext": "https://www.xb6v.com/"}, 30 | {"key":"短剧","name":"🌈上头┃短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"Dm84","name":"🚌巴士┃动漫","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"Ysj","name":"🎀异界┃动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | {"key":"Anime1","name":"🐾日本┃动漫","type": 3,"api": "csp_Anime1","searchable": 1,"quickSearch": 1,"changeable":1}, 34 | 35 | {"key":"926看球","name":"⚽926┃看球","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 36 | {"key":"88js","name":"⚽ 88┃看球","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/88看球.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 37 | {"key":"310js","name":"⚽ 310┃看球","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/310直播.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 38 | {"key":"Jrsjs","name":"⚽ Jrs┃球迷","type": 3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/jrk.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 39 | {"key":"酷奇","name":"🎤酷奇┃MV","type": 3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/酷奇MV.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 40 | {"key":"MTV","name":"🎧明星┃MV","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/MTV.json"}}, 41 | 42 | 43 | {"key":"虎牙直播js","name":"🐯虎牙┃直播","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.js","ext":"https://notabug.org/fantaiying/ext/main/huya2.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 44 | {"key":"斗鱼js","name":"🐟斗鱼┃直播","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/斗鱼直播.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 45 | {"key":"有声小说js","name":"🎧有声┃小说","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/有声小说吧.js","style":{"type":"rect","ratio":1},"searchable": 0,"quickSearch": 0,"changeable":0}, 46 | {"key":"Aid","name":"🚑急救┃教学","type":3,"api":"csp_FirstAid","searchable":0,"quickSearch":0,"changeable":0,"style": { "type": "rect", "ratio":3.8}}, 47 | 48 | {"key":"Sso","name":"🐌盘他┃三盘","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 49 | {"key":"夸搜","name":"🐟夸搜┃狸夸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 50 | {"key":"YiSo","name":"😹易搜┃阿狸","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 51 | {"key":"PanSearch","name":"🙀盘Se┃阿狸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 52 | {"key":"push_agent","name":"🛴手机┃推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 53 | 54 | {"key":"Bili","name":"🅱哔哔合集┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/bilibili.json"}}, 55 | {"key":"Biliych","name":"🅱哔哔演唱会┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/biliych.json"}}, 56 | {"key":"dr_兔小贝","name":"📚儿童┃启蒙","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 57 | {"key":"少儿教育","name":"📚少儿┃教育","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/少儿教育.json"}}, 58 | {"key":"小学课堂","name":"📚小学┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/小学课堂.json"}}, 59 | {"key":"初中课堂","name":"📚初中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/初中课堂.json"}}, 60 | {"key":"高中教育","name":"📚高中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/高中课堂.json"}}, 61 | {"key":"fan","name":"导航 www.饭太硬.com","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0}, 62 | {"key":"cc","name":"请勿相信视频中广告","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0} 63 | ], 64 | 65 | "logo":"https://fs-im-kefu.7moor-fs1.com/ly/4d2c3f00-7d4c-11e5-af15-41bf63ae4ea0/1716545739254/fc1b89e152cd4aa28d295107cb6c56c9.gif", 66 | "lives":[ 67 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 68 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 69 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo": "https://live.fanmingming.com/tv/{name}.png"}, 70 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua": "okhttp/3.15","playerType":2 } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/3/2hacc_oktv.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://raw.kkgithub.com/2hacc/TVBox/main/jar/tvbox.txt;md5;265301f463ec681dcbba91897f20f08b", 3 | "logo":"https://raw.kkgithub.com/2hacc/TVBox/main/logo.png", 4 | "wallpaper":"http://www.kf666888.cn/api/tvbox/img", 5 | "lives":[ 6 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 7 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 8 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo":"https://live.fanmingming.com/tv/{name}.png"}, 9 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua":"okhttp/3.15","playerType":2} 10 | ], 11 | "sites":[ 12 | {"key":"豆瓣","name":"豆瓣","type": 3,"api":"csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 13 | {"key":"玩偶哥","name":"玩偶哥","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 14 | {"key":"csp_NanGua","name":"南瓜","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"csp_Jpys","name":"文采","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 16 | {"key":"csp_NewCz","name":"厂长","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.czzyvideo.com/"}, 17 | {"key":"csp_Nmyswv","name":"糯米","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"csp_YCyz","name":"原创","type":3,"api":"csp_YCyz","timeout":15,"playerType":1,"searchable":1,"quickSearch":1,"changeable":1}, 19 | {"key":"zxzj","name":"在线","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 20 | {"key":"csp_Ddrk","name":"低端","type":3,"api":"csp_Ddrk","playerType":"2","searchable":1,"quickSearch":1,"changeable":1}, 21 | {"key":"csp_Auete","name":"Auete","type":3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 22 | {"key":"csp_Libvio","name":"Libvio","type":3,"api":"csp_Libvio","searchable":1,"quickSearch":1,"changeable":1,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 23 | {"key":"csp_AppSx","name":"木星","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 24 | {"key":"热播","name":"热播","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 25 | {"key":"萌米","name":"萌米","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 26 | {"key":"欢视","name":"欢视","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 27 | {"key":"csp_LiteApple","name":"小苹果","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 28 | {"key":"csp_Kekys","name":"可可","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 29 | {"key":"csp_Djtt","name":"短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 30 | {"key":"csp_Dm84","name":"动漫巴士","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"csp_Anime1","name":"日本动漫","type":3,"api":"csp_Anime1","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"csp_Ysj","name":"异界动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | 34 | {"key":"926看球","name":"926","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 35 | {"key":"88js","name":"88","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/88看球.js","style":{"type":"list"}, 36 | "searchable":0,"quickSearch":0,"changeable":0}, 37 | {"key":"310js","name":"310","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/310直播.js","style":{"type":"list"}, 38 | "searchable":0,"quickSearch":0,"changeable":0}, 39 | {"key":"Jrsjs","name":"Jrs","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/jrk.js","style":{"type":"list"}, 40 | "searchable":0,"quickSearch":0,"changeable":0}, 41 | {"key":"酷奇","name":"酷奇","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/酷奇MV.js","style":{"type":"rect","ratio":1.597}, 42 | "searchable":0,"quickSearch":0,"changeable":0}, 43 | {"key":"MTV","name":"明星","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 44 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/MTV.json"}}, 45 | {"key":"虎牙直播js","name":"虎牙","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/huya2.js","style":{"type":"rect","ratio":1.755}, 46 | "playerType":"2","searchable":0,"quickSearch":0,"changeable":0}, 47 | {"key":"斗鱼js","name":"斗鱼","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/斗鱼直播.js","style":{"type":"rect","ratio":1.755}, 48 | "playerType":"2","searchable":0,"quickSearch":0,"changeable":0}, 49 | 50 | {"key":"dr_兔小贝","name":"儿童","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0}, 51 | {"key":"少儿教育","name":"少儿","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 52 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/少儿教育.json"}}, 53 | {"key":"小学课堂","name":"小学","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 54 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/小学课堂.json"}}, 55 | {"key":"初中课堂","name":"初中","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 56 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/初中课堂.json"}}, 57 | {"key":"高中教育","name":"高中","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 58 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/高中课堂.json"}}, 59 | 60 | {"key":"米搜","name":"米盘","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 61 | {"key":"抠搜","name":"抠抠","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 62 | {"key":"Sso","name":"盘他","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 63 | {"key":"夸搜","name":"夸搜","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext":{"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 64 | {"key":"YiSo","name":"易搜","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 65 | {"key":"PanSearch","name":"盘Se","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 66 | {"key":"push_agent","name":"手机推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}} 67 | ] 68 | 69 | } -------------------------------------------------------------------------------- /tv/3/collection.json: -------------------------------------------------------------------------------- 1 | { 2 | "urls": [ 3 | { 4 | "url": "./heroaku_ptest.json", 5 | "name": "heroaku_ptest" 6 | }, 7 | { 8 | "url": "./heroaku_pyn.json", 9 | "name": "heroaku_pyn" 10 | }, 11 | { 12 | "url": "./heroaku_ayn.json", 13 | "name": "heroaku_ayn" 14 | }, 15 | { 16 | "url": "./heroaku_dtes.json", 17 | "name": "heroaku_dtes" 18 | }, 19 | { 20 | "url": "./gaotianliuyun_0821.json", 21 | "name": "gaotianliuyun_0821" 22 | }, 23 | { 24 | "url": "./gaotianliuyun_0826.json", 25 | "name": "gaotianliuyun_0826" 26 | }, 27 | { 28 | "url": "./gaotianliuyun_0827.json", 29 | "name": "gaotianliuyun_0827" 30 | }, 31 | { 32 | "url": "./gaotianliuyun_0825.json", 33 | "name": "gaotianliuyun_0825" 34 | }, 35 | { 36 | "url": "./gaotianliuyun_0707.json", 37 | "name": "gaotianliuyun_0707" 38 | }, 39 | { 40 | "url": "./xianyuyimu_一木自用.json", 41 | "name": "xianyuyimu_一木自用" 42 | }, 43 | { 44 | "url": "./2hacc_oktv.json", 45 | "name": "2hacc_oktv" 46 | }, 47 | { 48 | "url": "./franksun1211_0706.json", 49 | "name": "franksun1211_0706" 50 | }, 51 | { 52 | "url": "./yw88075_js.json", 53 | "name": "yw88075_js" 54 | }, 55 | { 56 | "url": "./Dong-learn9_tvbox2.json", 57 | "name": "Dong-learn9_tvbox2" 58 | }, 59 | { 60 | "url": "./liu673cn_m.json", 61 | "name": "liu673cn_m" 62 | }, 63 | { 64 | "url": "./anaer_meow.json", 65 | "name": "anaer_meow" 66 | }, 67 | { 68 | "url": "./hackyjso_jzy.json", 69 | "name": "hackyjso_jzy" 70 | } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/3/gaotianliuyun_0707.json: -------------------------------------------------------------------------------- 1 | { 2 | "urls": [ 3 | { 4 | "url": "./0821.json", 5 | "name": "高天流云 No.1" 6 | }, 7 | { 8 | "url": "./0825.json", 9 | "name": "高天流云 PG" 10 | }, 11 | { 12 | "url": "./0826.json", 13 | "name": "高天流云 FTY" 14 | }, 15 | { 16 | "url": "./0827.json", 17 | "name": "高天流云 FM" 18 | }, 19 | { 20 | "url": "./js.json", 21 | "name": "高天流云 JS" 22 | }, 23 | { 24 | "url": "./XYQ.json", 25 | "name": "高天流云 XYQ" 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /tv/3/gaotianliuyun_0826.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/gaotianliuyun/gao/master/jar/fan.txt;md5;6c4ab3a9d232164c75534f9060506ee5", 3 | "wallpaper":"https://深色壁纸.xxooo.cf/", 4 | 5 | "sites":[ 6 | {"key":"豆豆","name":"备用公众号【叨观荐影】","type": 3, "api": "csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 7 | {"key":"玩偶","name":"👽玩偶哥哥┃4K弹幕","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0, "ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 8 | {"key":"YGP","name":"🚀叨观荐影┃新片","type":3,"api":"csp_YGP","searchable":0,"quickSearch":0,"changeable":0}, 9 | {"key":"alllive","name":"📽️一直播┃直播","type":3,"api":"csp_Alllive","playerType":2,"searchable":0,"quickSearch":0,"changeable":0}, 10 | {"key":"米搜","name":"🦋米盘┃搜搜","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 11 | {"key":"抠搜","name":"🍄抠抠┃搜搜","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 12 | {"key":"Lib","name": "🌟立播┃秒播","type": 3,"api": "csp_Libvio","searchable": 1,"quickSearch": 1,"changeable":1,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 13 | {"key":"文采","name":"💮文采┃秒播","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 14 | {"key":"糯米","name":"🍓糯米┃秒播","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"zxzj","name":"🍊在线┃秒播","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 16 | {"key":"比特","name":"🍄比特┃秒播","type":3,"api":"csp_Bttwoo","searchable":1,"quickSearch":1,"changeable":1}, 17 | {"key":"苹果","name":"🍎苹果┃不卡","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"厂长","name":"📔厂长┃不卡","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext": "https://www.czzy77.com/"}, 19 | {"key":"木星","name":"🌞木星┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 20 | {"key":"速播","name":"⏮️速播┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvEpcoxb5sQXd8GDXUTvbqvx0peQcuZ7GvQ0UGD/a2mS238cHqYkiBgwCduCiYrTZJtbwdDUt/L2w/LOWADxikKl6I8Cqz6OD9lIxS2anA6ytO6"}, 21 | {"key":"热播","name":"📺热播┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 22 | {"key":"南瓜","name":"🎃南瓜┃多线","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 23 | {"key":"萌米","name":"👀萌米┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 24 | 25 | {"key":"欢视","name":"👓欢视┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 26 | {"key":"可可","name":"👻可可┃多线","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 27 | {"key":"贱贱","name":"🐭贱贱┃P2P","type":3,"searchable":1,"quickSearch":1,"changeable":1,"playerType":"1","api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/jp.js"}, 28 | {"key":"Auete","name":"🏝奥特┃无广","type": 3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 29 | {"key":"新6V","name":"🧲新6V┃磁力","type":3,"api":"csp_SixV","searchable":1,"quickSearch":1,"changeable":0,"ext": "https://www.xb6v.com/"}, 30 | {"key":"短剧","name":"🌈上头┃短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"Dm84","name":"🚌巴士┃动漫","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"Ysj","name":"🎀异界┃动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | {"key":"Anime1","name":"🐾日本┃动漫","type": 3,"api": "csp_Anime1","searchable": 1,"quickSearch": 1,"changeable":1}, 34 | 35 | {"key":"926看球","name":"⚽926┃看球","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 36 | {"key":"88js","name":"⚽ 88┃看球","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/88看球.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 37 | {"key":"310js","name":"⚽ 310┃看球","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/310直播.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 38 | {"key":"Jrsjs","name":"⚽ Jrs┃球迷","type": 3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/jrk.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 39 | {"key":"酷奇","name":"🎤酷奇┃MV","type": 3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/酷奇MV.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 40 | {"key":"MTV","name":"🎧明星┃MV","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/MTV.json"}}, 41 | 42 | 43 | {"key":"虎牙直播js","name":"🐯虎牙┃直播","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.js","ext":"https://notabug.org/fantaiying/ext/main/huya2.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 44 | {"key":"斗鱼js","name":"🐟斗鱼┃直播","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/斗鱼直播.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 45 | {"key":"有声小说js","name":"🎧有声┃小说","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/有声小说吧.js","style":{"type":"rect","ratio":1},"searchable": 0,"quickSearch": 0,"changeable":0}, 46 | {"key":"Aid","name":"🚑急救┃教学","type":3,"api":"csp_FirstAid","searchable":0,"quickSearch":0,"changeable":0,"style": { "type": "rect", "ratio":3.8}}, 47 | 48 | {"key":"Sso","name":"🐌盘他┃三盘","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 49 | {"key":"夸搜","name":"🐟夸搜┃狸夸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 50 | {"key":"YiSo","name":"😹易搜┃阿狸","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 51 | {"key":"PanSearch","name":"🙀盘Se┃阿狸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 52 | {"key":"push_agent","name":"🛴手机┃推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 53 | 54 | {"key":"Bili","name":"🅱哔哔合集┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/bilibili.json"}}, 55 | {"key":"Biliych","name":"🅱哔哔演唱会┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/biliych.json"}}, 56 | {"key":"dr_兔小贝","name":"📚儿童┃启蒙","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 57 | {"key":"少儿教育","name":"📚少儿┃教育","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/少儿教育.json"}}, 58 | {"key":"小学课堂","name":"📚小学┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/小学课堂.json"}}, 59 | {"key":"初中课堂","name":"📚初中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/初中课堂.json"}}, 60 | {"key":"高中教育","name":"📚高中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/高中课堂.json"}}, 61 | {"key":"fan","name":"导航 www.饭太硬.com","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0}, 62 | {"key":"cc","name":"请勿相信视频中广告","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0} 63 | ], 64 | 65 | "logo":"https://fs-im-kefu.7moor-fs1.com/ly/4d2c3f00-7d4c-11e5-af15-41bf63ae4ea0/1716545739254/fc1b89e152cd4aa28d295107cb6c56c9.gif", 66 | "lives":[ 67 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 68 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 69 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo": "https://live.fanmingming.com/tv/{name}.png"}, 70 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua": "okhttp/3.15","playerType":2 } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/4/0826.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://github.moeyy.xyz/https://raw.githubusercontent.com/gaotianliuyun/gao/master/jar/fan.txt;md5;6c4ab3a9d232164c75534f9060506ee5", 3 | "wallpaper":"https://深色壁纸.xxooo.cf/", 4 | 5 | "sites":[ 6 | {"key":"豆豆","name":"备用公众号【叨观荐影】","type": 3, "api": "csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 7 | {"key":"玩偶","name":"👽玩偶哥哥┃4K弹幕","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0, "ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 8 | {"key":"YGP","name":"🚀叨观荐影┃新片","type":3,"api":"csp_YGP","searchable":0,"quickSearch":0,"changeable":0}, 9 | {"key":"alllive","name":"📽️一直播┃直播","type":3,"api":"csp_Alllive","playerType":2,"searchable":0,"quickSearch":0,"changeable":0}, 10 | {"key":"米搜","name":"🦋米盘┃搜搜","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 11 | {"key":"抠搜","name":"🍄抠抠┃搜搜","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 12 | {"key":"Lib","name": "🌟立播┃秒播","type": 3,"api": "csp_Libvio","searchable": 1,"quickSearch": 1,"changeable":1,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 13 | {"key":"文采","name":"💮文采┃秒播","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 14 | {"key":"糯米","name":"🍓糯米┃秒播","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"zxzj","name":"🍊在线┃秒播","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 16 | {"key":"比特","name":"🍄比特┃秒播","type":3,"api":"csp_Bttwoo","searchable":1,"quickSearch":1,"changeable":1}, 17 | {"key":"苹果","name":"🍎苹果┃不卡","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"厂长","name":"📔厂长┃不卡","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext": "https://www.czzy77.com/"}, 19 | {"key":"木星","name":"🌞木星┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 20 | {"key":"速播","name":"⏮️速播┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvEpcoxb5sQXd8GDXUTvbqvx0peQcuZ7GvQ0UGD/a2mS238cHqYkiBgwCduCiYrTZJtbwdDUt/L2w/LOWADxikKl6I8Cqz6OD9lIxS2anA6ytO6"}, 21 | {"key":"热播","name":"📺热播┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 22 | {"key":"南瓜","name":"🎃南瓜┃多线","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 23 | {"key":"萌米","name":"👀萌米┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 24 | 25 | {"key":"欢视","name":"👓欢视┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 26 | {"key":"可可","name":"👻可可┃多线","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 27 | {"key":"贱贱","name":"🐭贱贱┃P2P","type":3,"searchable":1,"quickSearch":1,"changeable":1,"playerType":"1","api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/jp.js"}, 28 | {"key":"Auete","name":"🏝奥特┃无广","type": 3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 29 | {"key":"新6V","name":"🧲新6V┃磁力","type":3,"api":"csp_SixV","searchable":1,"quickSearch":1,"changeable":0,"ext": "https://www.xb6v.com/"}, 30 | {"key":"短剧","name":"🌈上头┃短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"Dm84","name":"🚌巴士┃动漫","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"Ysj","name":"🎀异界┃动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | {"key":"Anime1","name":"🐾日本┃动漫","type": 3,"api": "csp_Anime1","searchable": 1,"quickSearch": 1,"changeable":1}, 34 | 35 | {"key":"926看球","name":"⚽926┃看球","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 36 | {"key":"88js","name":"⚽ 88┃看球","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/88看球.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 37 | {"key":"310js","name":"⚽ 310┃看球","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/310直播.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 38 | {"key":"Jrsjs","name":"⚽ Jrs┃球迷","type": 3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/jrk.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 39 | {"key":"酷奇","name":"🎤酷奇┃MV","type": 3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/酷奇MV.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 40 | {"key":"MTV","name":"🎧明星┃MV","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/MTV.json"}}, 41 | 42 | 43 | {"key":"虎牙直播js","name":"🐯虎牙┃直播","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.js","ext":"https://notabug.org/fantaiying/ext/main/huya2.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 44 | {"key":"斗鱼js","name":"🐟斗鱼┃直播","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/斗鱼直播.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 45 | {"key":"有声小说js","name":"🎧有声┃小说","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/有声小说吧.js","style":{"type":"rect","ratio":1},"searchable": 0,"quickSearch": 0,"changeable":0}, 46 | {"key":"Aid","name":"🚑急救┃教学","type":3,"api":"csp_FirstAid","searchable":0,"quickSearch":0,"changeable":0,"style": { "type": "rect", "ratio":3.8}}, 47 | 48 | {"key":"Sso","name":"🐌盘他┃三盘","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 49 | {"key":"夸搜","name":"🐟夸搜┃狸夸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 50 | {"key":"YiSo","name":"😹易搜┃阿狸","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 51 | {"key":"PanSearch","name":"🙀盘Se┃阿狸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 52 | {"key":"push_agent","name":"🛴手机┃推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 53 | 54 | {"key":"Bili","name":"🅱哔哔合集┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/bilibili.json"}}, 55 | {"key":"Biliych","name":"🅱哔哔演唱会┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/biliych.json"}}, 56 | {"key":"dr_兔小贝","name":"📚儿童┃启蒙","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 57 | {"key":"少儿教育","name":"📚少儿┃教育","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/少儿教育.json"}}, 58 | {"key":"小学课堂","name":"📚小学┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/小学课堂.json"}}, 59 | {"key":"初中课堂","name":"📚初中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/初中课堂.json"}}, 60 | {"key":"高中教育","name":"📚高中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/高中课堂.json"}}, 61 | {"key":"fan","name":"导航 www.饭太硬.com","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0}, 62 | {"key":"cc","name":"请勿相信视频中广告","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0} 63 | ], 64 | 65 | "logo":"https://fs-im-kefu.7moor-fs1.com/ly/4d2c3f00-7d4c-11e5-af15-41bf63ae4ea0/1716545739254/fc1b89e152cd4aa28d295107cb6c56c9.gif", 66 | "lives":[ 67 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 68 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 69 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo": "https://live.fanmingming.com/tv/{name}.png"}, 70 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua": "okhttp/3.15","playerType":2 } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/4/2hacc_oktv.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://raw.kkgithub.com/2hacc/TVBox/main/jar/tvbox.txt;md5;265301f463ec681dcbba91897f20f08b", 3 | "logo":"https://raw.kkgithub.com/2hacc/TVBox/main/logo.png", 4 | "wallpaper":"http://www.kf666888.cn/api/tvbox/img", 5 | "lives":[ 6 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 7 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 8 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo":"https://live.fanmingming.com/tv/{name}.png"}, 9 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua":"okhttp/3.15","playerType":2} 10 | ], 11 | "sites":[ 12 | {"key":"豆瓣","name":"豆瓣","type": 3,"api":"csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 13 | {"key":"玩偶哥","name":"玩偶哥","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 14 | {"key":"csp_NanGua","name":"南瓜","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"csp_Jpys","name":"文采","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 16 | {"key":"csp_NewCz","name":"厂长","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.czzyvideo.com/"}, 17 | {"key":"csp_Nmyswv","name":"糯米","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"csp_YCyz","name":"原创","type":3,"api":"csp_YCyz","timeout":15,"playerType":1,"searchable":1,"quickSearch":1,"changeable":1}, 19 | {"key":"zxzj","name":"在线","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 20 | {"key":"csp_Ddrk","name":"低端","type":3,"api":"csp_Ddrk","playerType":"2","searchable":1,"quickSearch":1,"changeable":1}, 21 | {"key":"csp_Auete","name":"Auete","type":3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 22 | {"key":"csp_Libvio","name":"Libvio","type":3,"api":"csp_Libvio","searchable":1,"quickSearch":1,"changeable":1,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 23 | {"key":"csp_AppSx","name":"木星","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 24 | {"key":"热播","name":"热播","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 25 | {"key":"萌米","name":"萌米","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 26 | {"key":"欢视","name":"欢视","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 27 | {"key":"csp_LiteApple","name":"小苹果","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 28 | {"key":"csp_Kekys","name":"可可","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 29 | {"key":"csp_Djtt","name":"短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 30 | {"key":"csp_Dm84","name":"动漫巴士","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"csp_Anime1","name":"日本动漫","type":3,"api":"csp_Anime1","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"csp_Ysj","name":"异界动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | 34 | {"key":"926看球","name":"926","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 35 | {"key":"88js","name":"88","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/88看球.js","style":{"type":"list"}, 36 | "searchable":0,"quickSearch":0,"changeable":0}, 37 | {"key":"310js","name":"310","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/310直播.js","style":{"type":"list"}, 38 | "searchable":0,"quickSearch":0,"changeable":0}, 39 | {"key":"Jrsjs","name":"Jrs","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/jrk.js","style":{"type":"list"}, 40 | "searchable":0,"quickSearch":0,"changeable":0}, 41 | {"key":"酷奇","name":"酷奇","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/酷奇MV.js","style":{"type":"rect","ratio":1.597}, 42 | "searchable":0,"quickSearch":0,"changeable":0}, 43 | {"key":"MTV","name":"明星","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 44 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/MTV.json"}}, 45 | {"key":"虎牙直播js","name":"虎牙","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/huya2.js","style":{"type":"rect","ratio":1.755}, 46 | "playerType":"2","searchable":0,"quickSearch":0,"changeable":0}, 47 | {"key":"斗鱼js","name":"斗鱼","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/斗鱼直播.js","style":{"type":"rect","ratio":1.755}, 48 | "playerType":"2","searchable":0,"quickSearch":0,"changeable":0}, 49 | 50 | {"key":"dr_兔小贝","name":"儿童","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0}, 51 | {"key":"少儿教育","name":"少儿","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 52 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/少儿教育.json"}}, 53 | {"key":"小学课堂","name":"小学","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 54 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/小学课堂.json"}}, 55 | {"key":"初中课堂","name":"初中","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 56 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/初中课堂.json"}}, 57 | {"key":"高中教育","name":"高中","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 58 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/高中课堂.json"}}, 59 | 60 | {"key":"米搜","name":"米盘","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 61 | {"key":"抠搜","name":"抠抠","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 62 | {"key":"Sso","name":"盘他","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 63 | {"key":"夸搜","name":"夸搜","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext":{"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 64 | {"key":"YiSo","name":"易搜","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 65 | {"key":"PanSearch","name":"盘Se","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 66 | {"key":"push_agent","name":"手机推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}} 67 | ] 68 | 69 | } -------------------------------------------------------------------------------- /tv/4/collection.json: -------------------------------------------------------------------------------- 1 | { 2 | "urls": [ 3 | { 4 | "url": "./heroaku_ptest.json", 5 | "name": "heroaku_ptest" 6 | }, 7 | { 8 | "url": "./heroaku_pyn.json", 9 | "name": "heroaku_pyn" 10 | }, 11 | { 12 | "url": "./heroaku_ayn.json", 13 | "name": "heroaku_ayn" 14 | }, 15 | { 16 | "url": "./heroaku_dtes.json", 17 | "name": "heroaku_dtes" 18 | }, 19 | { 20 | "url": "./gaotianliuyun_0821.json", 21 | "name": "gaotianliuyun_0821" 22 | }, 23 | { 24 | "url": "./gaotianliuyun_0826.json", 25 | "name": "gaotianliuyun_0826" 26 | }, 27 | { 28 | "url": "./gaotianliuyun_0827.json", 29 | "name": "gaotianliuyun_0827" 30 | }, 31 | { 32 | "url": "./gaotianliuyun_0825.json", 33 | "name": "gaotianliuyun_0825" 34 | }, 35 | { 36 | "url": "./gaotianliuyun_0707.json", 37 | "name": "gaotianliuyun_0707" 38 | }, 39 | { 40 | "url": "./xianyuyimu_一木自用.json", 41 | "name": "xianyuyimu_一木自用" 42 | }, 43 | { 44 | "url": "./2hacc_oktv.json", 45 | "name": "2hacc_oktv" 46 | }, 47 | { 48 | "url": "./franksun1211_0706.json", 49 | "name": "franksun1211_0706" 50 | }, 51 | { 52 | "url": "./yw88075_js.json", 53 | "name": "yw88075_js" 54 | }, 55 | { 56 | "url": "./Dong-learn9_tvbox2.json", 57 | "name": "Dong-learn9_tvbox2" 58 | }, 59 | { 60 | "url": "./liu673cn_m.json", 61 | "name": "liu673cn_m" 62 | }, 63 | { 64 | "url": "./anaer_meow.json", 65 | "name": "anaer_meow" 66 | }, 67 | { 68 | "url": "./hackyjso_jzy.json", 69 | "name": "hackyjso_jzy" 70 | } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/4/gaotianliuyun_0707.json: -------------------------------------------------------------------------------- 1 | { 2 | "urls": [ 3 | { 4 | "url": "./0821.json", 5 | "name": "高天流云 No.1" 6 | }, 7 | { 8 | "url": "./0825.json", 9 | "name": "高天流云 PG" 10 | }, 11 | { 12 | "url": "./0826.json", 13 | "name": "高天流云 FTY" 14 | }, 15 | { 16 | "url": "./0827.json", 17 | "name": "高天流云 FM" 18 | }, 19 | { 20 | "url": "./js.json", 21 | "name": "高天流云 JS" 22 | }, 23 | { 24 | "url": "./XYQ.json", 25 | "name": "高天流云 XYQ" 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /tv/4/gaotianliuyun_0826.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://github.moeyy.xyz/https://raw.githubusercontent.com/gaotianliuyun/gao/master/jar/fan.txt;md5;6c4ab3a9d232164c75534f9060506ee5", 3 | "wallpaper":"https://深色壁纸.xxooo.cf/", 4 | 5 | "sites":[ 6 | {"key":"豆豆","name":"备用公众号【叨观荐影】","type": 3, "api": "csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 7 | {"key":"玩偶","name":"👽玩偶哥哥┃4K弹幕","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0, "ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 8 | {"key":"YGP","name":"🚀叨观荐影┃新片","type":3,"api":"csp_YGP","searchable":0,"quickSearch":0,"changeable":0}, 9 | {"key":"alllive","name":"📽️一直播┃直播","type":3,"api":"csp_Alllive","playerType":2,"searchable":0,"quickSearch":0,"changeable":0}, 10 | {"key":"米搜","name":"🦋米盘┃搜搜","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 11 | {"key":"抠搜","name":"🍄抠抠┃搜搜","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 12 | {"key":"Lib","name": "🌟立播┃秒播","type": 3,"api": "csp_Libvio","searchable": 1,"quickSearch": 1,"changeable":1,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 13 | {"key":"文采","name":"💮文采┃秒播","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 14 | {"key":"糯米","name":"🍓糯米┃秒播","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"zxzj","name":"🍊在线┃秒播","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 16 | {"key":"比特","name":"🍄比特┃秒播","type":3,"api":"csp_Bttwoo","searchable":1,"quickSearch":1,"changeable":1}, 17 | {"key":"苹果","name":"🍎苹果┃不卡","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"厂长","name":"📔厂长┃不卡","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext": "https://www.czzy77.com/"}, 19 | {"key":"木星","name":"🌞木星┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 20 | {"key":"速播","name":"⏮️速播┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvEpcoxb5sQXd8GDXUTvbqvx0peQcuZ7GvQ0UGD/a2mS238cHqYkiBgwCduCiYrTZJtbwdDUt/L2w/LOWADxikKl6I8Cqz6OD9lIxS2anA6ytO6"}, 21 | {"key":"热播","name":"📺热播┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 22 | {"key":"南瓜","name":"🎃南瓜┃多线","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 23 | {"key":"萌米","name":"👀萌米┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 24 | 25 | {"key":"欢视","name":"👓欢视┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 26 | {"key":"可可","name":"👻可可┃多线","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 27 | {"key":"贱贱","name":"🐭贱贱┃P2P","type":3,"searchable":1,"quickSearch":1,"changeable":1,"playerType":"1","api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/jp.js"}, 28 | {"key":"Auete","name":"🏝奥特┃无广","type": 3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 29 | {"key":"新6V","name":"🧲新6V┃磁力","type":3,"api":"csp_SixV","searchable":1,"quickSearch":1,"changeable":0,"ext": "https://www.xb6v.com/"}, 30 | {"key":"短剧","name":"🌈上头┃短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"Dm84","name":"🚌巴士┃动漫","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"Ysj","name":"🎀异界┃动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | {"key":"Anime1","name":"🐾日本┃动漫","type": 3,"api": "csp_Anime1","searchable": 1,"quickSearch": 1,"changeable":1}, 34 | 35 | {"key":"926看球","name":"⚽926┃看球","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 36 | {"key":"88js","name":"⚽ 88┃看球","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/88看球.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 37 | {"key":"310js","name":"⚽ 310┃看球","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/310直播.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 38 | {"key":"Jrsjs","name":"⚽ Jrs┃球迷","type": 3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/jrk.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 39 | {"key":"酷奇","name":"🎤酷奇┃MV","type": 3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/酷奇MV.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 40 | {"key":"MTV","name":"🎧明星┃MV","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/MTV.json"}}, 41 | 42 | 43 | {"key":"虎牙直播js","name":"🐯虎牙┃直播","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.js","ext":"https://notabug.org/fantaiying/ext/main/huya2.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 44 | {"key":"斗鱼js","name":"🐟斗鱼┃直播","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/斗鱼直播.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 45 | {"key":"有声小说js","name":"🎧有声┃小说","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/有声小说吧.js","style":{"type":"rect","ratio":1},"searchable": 0,"quickSearch": 0,"changeable":0}, 46 | {"key":"Aid","name":"🚑急救┃教学","type":3,"api":"csp_FirstAid","searchable":0,"quickSearch":0,"changeable":0,"style": { "type": "rect", "ratio":3.8}}, 47 | 48 | {"key":"Sso","name":"🐌盘他┃三盘","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 49 | {"key":"夸搜","name":"🐟夸搜┃狸夸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 50 | {"key":"YiSo","name":"😹易搜┃阿狸","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 51 | {"key":"PanSearch","name":"🙀盘Se┃阿狸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 52 | {"key":"push_agent","name":"🛴手机┃推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 53 | 54 | {"key":"Bili","name":"🅱哔哔合集┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/bilibili.json"}}, 55 | {"key":"Biliych","name":"🅱哔哔演唱会┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/biliych.json"}}, 56 | {"key":"dr_兔小贝","name":"📚儿童┃启蒙","type":3,"api":"https://notabug.org/fantaiying/ext/main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext/main/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 57 | {"key":"少儿教育","name":"📚少儿┃教育","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/少儿教育.json"}}, 58 | {"key":"小学课堂","name":"📚小学┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/小学课堂.json"}}, 59 | {"key":"初中课堂","name":"📚初中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/初中课堂.json"}}, 60 | {"key":"高中教育","name":"📚高中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext/main/高中课堂.json"}}, 61 | {"key":"fan","name":"导航 www.饭太硬.com","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0}, 62 | {"key":"cc","name":"请勿相信视频中广告","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0} 63 | ], 64 | 65 | "logo":"https://fs-im-kefu.7moor-fs1.com/ly/4d2c3f00-7d4c-11e5-af15-41bf63ae4ea0/1716545739254/fc1b89e152cd4aa28d295107cb6c56c9.gif", 66 | "lives":[ 67 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 68 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 69 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo": "https://live.fanmingming.com/tv/{name}.png"}, 70 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua": "okhttp/3.15","playerType":2 } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/5/0826.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://fastly.jsdelivr.net/gh/gaotianliuyun/gao@master/jar/fan.txt;md5;6c4ab3a9d232164c75534f9060506ee5", 3 | "wallpaper":"https://深色壁纸.xxooo.cf/", 4 | 5 | "sites":[ 6 | {"key":"豆豆","name":"备用公众号【叨观荐影】","type": 3, "api": "csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 7 | {"key":"玩偶","name":"👽玩偶哥哥┃4K弹幕","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0, "ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 8 | {"key":"YGP","name":"🚀叨观荐影┃新片","type":3,"api":"csp_YGP","searchable":0,"quickSearch":0,"changeable":0}, 9 | {"key":"alllive","name":"📽️一直播┃直播","type":3,"api":"csp_Alllive","playerType":2,"searchable":0,"quickSearch":0,"changeable":0}, 10 | {"key":"米搜","name":"🦋米盘┃搜搜","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 11 | {"key":"抠搜","name":"🍄抠抠┃搜搜","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 12 | {"key":"Lib","name": "🌟立播┃秒播","type": 3,"api": "csp_Libvio","searchable": 1,"quickSearch": 1,"changeable":1,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 13 | {"key":"文采","name":"💮文采┃秒播","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 14 | {"key":"糯米","name":"🍓糯米┃秒播","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"zxzj","name":"🍊在线┃秒播","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 16 | {"key":"比特","name":"🍄比特┃秒播","type":3,"api":"csp_Bttwoo","searchable":1,"quickSearch":1,"changeable":1}, 17 | {"key":"苹果","name":"🍎苹果┃不卡","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"厂长","name":"📔厂长┃不卡","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext": "https://www.czzy77.com/"}, 19 | {"key":"木星","name":"🌞木星┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 20 | {"key":"速播","name":"⏮️速播┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvEpcoxb5sQXd8GDXUTvbqvx0peQcuZ7GvQ0UGD/a2mS238cHqYkiBgwCduCiYrTZJtbwdDUt/L2w/LOWADxikKl6I8Cqz6OD9lIxS2anA6ytO6"}, 21 | {"key":"热播","name":"📺热播┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 22 | {"key":"南瓜","name":"🎃南瓜┃多线","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 23 | {"key":"萌米","name":"👀萌米┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 24 | 25 | {"key":"欢视","name":"👓欢视┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 26 | {"key":"可可","name":"👻可可┃多线","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 27 | {"key":"贱贱","name":"🐭贱贱┃P2P","type":3,"searchable":1,"quickSearch":1,"changeable":1,"playerType":"1","api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/jp.js"}, 28 | {"key":"Auete","name":"🏝奥特┃无广","type": 3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 29 | {"key":"新6V","name":"🧲新6V┃磁力","type":3,"api":"csp_SixV","searchable":1,"quickSearch":1,"changeable":0,"ext": "https://www.xb6v.com/"}, 30 | {"key":"短剧","name":"🌈上头┃短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"Dm84","name":"🚌巴士┃动漫","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"Ysj","name":"🎀异界┃动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | {"key":"Anime1","name":"🐾日本┃动漫","type": 3,"api": "csp_Anime1","searchable": 1,"quickSearch": 1,"changeable":1}, 34 | 35 | {"key":"926看球","name":"⚽926┃看球","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 36 | {"key":"88js","name":"⚽ 88┃看球","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/88看球.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 37 | {"key":"310js","name":"⚽ 310┃看球","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/310直播.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 38 | {"key":"Jrsjs","name":"⚽ Jrs┃球迷","type": 3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/jrk.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 39 | {"key":"酷奇","name":"🎤酷奇┃MV","type": 3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/酷奇MV.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 40 | {"key":"MTV","name":"🎧明星┃MV","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/MTV.json"}}, 41 | 42 | 43 | {"key":"虎牙直播js","name":"🐯虎牙┃直播","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.js","ext":"https://notabug.org/fantaiying/ext@main/huya2.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 44 | {"key":"斗鱼js","name":"🐟斗鱼┃直播","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/斗鱼直播.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 45 | {"key":"有声小说js","name":"🎧有声┃小说","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/有声小说吧.js","style":{"type":"rect","ratio":1},"searchable": 0,"quickSearch": 0,"changeable":0}, 46 | {"key":"Aid","name":"🚑急救┃教学","type":3,"api":"csp_FirstAid","searchable":0,"quickSearch":0,"changeable":0,"style": { "type": "rect", "ratio":3.8}}, 47 | 48 | {"key":"Sso","name":"🐌盘他┃三盘","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 49 | {"key":"夸搜","name":"🐟夸搜┃狸夸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 50 | {"key":"YiSo","name":"😹易搜┃阿狸","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 51 | {"key":"PanSearch","name":"🙀盘Se┃阿狸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 52 | {"key":"push_agent","name":"🛴手机┃推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 53 | 54 | {"key":"Bili","name":"🅱哔哔合集┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/bilibili.json"}}, 55 | {"key":"Biliych","name":"🅱哔哔演唱会┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/biliych.json"}}, 56 | {"key":"dr_兔小贝","name":"📚儿童┃启蒙","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 57 | {"key":"少儿教育","name":"📚少儿┃教育","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/少儿教育.json"}}, 58 | {"key":"小学课堂","name":"📚小学┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/小学课堂.json"}}, 59 | {"key":"初中课堂","name":"📚初中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/初中课堂.json"}}, 60 | {"key":"高中教育","name":"📚高中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/高中课堂.json"}}, 61 | {"key":"fan","name":"导航 www.饭太硬.com","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0}, 62 | {"key":"cc","name":"请勿相信视频中广告","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0} 63 | ], 64 | 65 | "logo":"https://fs-im-kefu.7moor-fs1.com/ly/4d2c3f00-7d4c-11e5-af15-41bf63ae4ea0/1716545739254/fc1b89e152cd4aa28d295107cb6c56c9.gif", 66 | "lives":[ 67 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 68 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 69 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo": "https://live.fanmingming.com/tv/{name}.png"}, 70 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua": "okhttp/3.15","playerType":2 } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/5/2hacc_oktv.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://raw.kkgithub.com/2hacc/TVBox/main/jar/tvbox.txt;md5;265301f463ec681dcbba91897f20f08b", 3 | "logo":"https://raw.kkgithub.com/2hacc/TVBox/main/logo.png", 4 | "wallpaper":"http://www.kf666888.cn/api/tvbox/img", 5 | "lives":[ 6 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 7 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 8 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo":"https://live.fanmingming.com/tv/{name}.png"}, 9 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua":"okhttp/3.15","playerType":2} 10 | ], 11 | "sites":[ 12 | {"key":"豆瓣","name":"豆瓣","type": 3,"api":"csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 13 | {"key":"玩偶哥","name":"玩偶哥","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 14 | {"key":"csp_NanGua","name":"南瓜","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"csp_Jpys","name":"文采","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 16 | {"key":"csp_NewCz","name":"厂长","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.czzyvideo.com/"}, 17 | {"key":"csp_Nmyswv","name":"糯米","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"csp_YCyz","name":"原创","type":3,"api":"csp_YCyz","timeout":15,"playerType":1,"searchable":1,"quickSearch":1,"changeable":1}, 19 | {"key":"zxzj","name":"在线","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 20 | {"key":"csp_Ddrk","name":"低端","type":3,"api":"csp_Ddrk","playerType":"2","searchable":1,"quickSearch":1,"changeable":1}, 21 | {"key":"csp_Auete","name":"Auete","type":3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 22 | {"key":"csp_Libvio","name":"Libvio","type":3,"api":"csp_Libvio","searchable":1,"quickSearch":1,"changeable":1,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 23 | {"key":"csp_AppSx","name":"木星","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 24 | {"key":"热播","name":"热播","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 25 | {"key":"萌米","name":"萌米","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 26 | {"key":"欢视","name":"欢视","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 27 | {"key":"csp_LiteApple","name":"小苹果","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 28 | {"key":"csp_Kekys","name":"可可","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 29 | {"key":"csp_Djtt","name":"短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 30 | {"key":"csp_Dm84","name":"动漫巴士","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"csp_Anime1","name":"日本动漫","type":3,"api":"csp_Anime1","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"csp_Ysj","name":"异界动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | 34 | {"key":"926看球","name":"926","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 35 | {"key":"88js","name":"88","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/88看球.js","style":{"type":"list"}, 36 | "searchable":0,"quickSearch":0,"changeable":0}, 37 | {"key":"310js","name":"310","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/310直播.js","style":{"type":"list"}, 38 | "searchable":0,"quickSearch":0,"changeable":0}, 39 | {"key":"Jrsjs","name":"Jrs","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/jrk.js","style":{"type":"list"}, 40 | "searchable":0,"quickSearch":0,"changeable":0}, 41 | {"key":"酷奇","name":"酷奇","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/酷奇MV.js","style":{"type":"rect","ratio":1.597}, 42 | "searchable":0,"quickSearch":0,"changeable":0}, 43 | {"key":"MTV","name":"明星","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 44 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/MTV.json"}}, 45 | {"key":"虎牙直播js","name":"虎牙","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/huya2.js","style":{"type":"rect","ratio":1.755}, 46 | "playerType":"2","searchable":0,"quickSearch":0,"changeable":0}, 47 | {"key":"斗鱼js","name":"斗鱼","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/斗鱼直播.js","style":{"type":"rect","ratio":1.755}, 48 | "playerType":"2","searchable":0,"quickSearch":0,"changeable":0}, 49 | 50 | {"key":"dr_兔小贝","name":"儿童","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://raw.kkgithub.com/2hacc/TVBox/main/drpy/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0}, 51 | {"key":"少儿教育","name":"少儿","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 52 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/少儿教育.json"}}, 53 | {"key":"小学课堂","name":"小学","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 54 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/小学课堂.json"}}, 55 | {"key":"初中课堂","name":"初中","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 56 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/初中课堂.json"}}, 57 | {"key":"高中教育","name":"高中","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597}, 58 | "searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://raw.kkgithub.com/2hacc/TVBox/main/json/高中课堂.json"}}, 59 | 60 | {"key":"米搜","name":"米盘","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 61 | {"key":"抠搜","name":"抠抠","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 62 | {"key":"Sso","name":"盘他","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 63 | {"key":"夸搜","name":"夸搜","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext":{"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 64 | {"key":"YiSo","name":"易搜","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 65 | {"key":"PanSearch","name":"盘Se","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 66 | {"key":"push_agent","name":"手机推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext":{"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}} 67 | ] 68 | 69 | } -------------------------------------------------------------------------------- /tv/5/collection.json: -------------------------------------------------------------------------------- 1 | { 2 | "urls": [ 3 | { 4 | "url": "./heroaku_ptest.json", 5 | "name": "heroaku_ptest" 6 | }, 7 | { 8 | "url": "./heroaku_pyn.json", 9 | "name": "heroaku_pyn" 10 | }, 11 | { 12 | "url": "./heroaku_ayn.json", 13 | "name": "heroaku_ayn" 14 | }, 15 | { 16 | "url": "./heroaku_dtes.json", 17 | "name": "heroaku_dtes" 18 | }, 19 | { 20 | "url": "./gaotianliuyun_0821.json", 21 | "name": "gaotianliuyun_0821" 22 | }, 23 | { 24 | "url": "./gaotianliuyun_0826.json", 25 | "name": "gaotianliuyun_0826" 26 | }, 27 | { 28 | "url": "./gaotianliuyun_0827.json", 29 | "name": "gaotianliuyun_0827" 30 | }, 31 | { 32 | "url": "./gaotianliuyun_0825.json", 33 | "name": "gaotianliuyun_0825" 34 | }, 35 | { 36 | "url": "./gaotianliuyun_0707.json", 37 | "name": "gaotianliuyun_0707" 38 | }, 39 | { 40 | "url": "./xianyuyimu_一木自用.json", 41 | "name": "xianyuyimu_一木自用" 42 | }, 43 | { 44 | "url": "./2hacc_oktv.json", 45 | "name": "2hacc_oktv" 46 | }, 47 | { 48 | "url": "./franksun1211_0706.json", 49 | "name": "franksun1211_0706" 50 | }, 51 | { 52 | "url": "./yw88075_js.json", 53 | "name": "yw88075_js" 54 | }, 55 | { 56 | "url": "./Dong-learn9_tvbox2.json", 57 | "name": "Dong-learn9_tvbox2" 58 | }, 59 | { 60 | "url": "./liu673cn_m.json", 61 | "name": "liu673cn_m" 62 | }, 63 | { 64 | "url": "./anaer_meow.json", 65 | "name": "anaer_meow" 66 | }, 67 | { 68 | "url": "./hackyjso_jzy.json", 69 | "name": "hackyjso_jzy" 70 | } 71 | ] 72 | } -------------------------------------------------------------------------------- /tv/5/gaotianliuyun_0707.json: -------------------------------------------------------------------------------- 1 | { 2 | "urls": [ 3 | { 4 | "url": "./0821.json", 5 | "name": "高天流云 No.1" 6 | }, 7 | { 8 | "url": "./0825.json", 9 | "name": "高天流云 PG" 10 | }, 11 | { 12 | "url": "./0826.json", 13 | "name": "高天流云 FTY" 14 | }, 15 | { 16 | "url": "./0827.json", 17 | "name": "高天流云 FM" 18 | }, 19 | { 20 | "url": "./js.json", 21 | "name": "高天流云 JS" 22 | }, 23 | { 24 | "url": "./XYQ.json", 25 | "name": "高天流云 XYQ" 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /tv/5/gaotianliuyun_0826.json: -------------------------------------------------------------------------------- 1 | { 2 | "spider":"https://fastly.jsdelivr.net/gh/gaotianliuyun/gao@master/jar/fan.txt;md5;6c4ab3a9d232164c75534f9060506ee5", 3 | "wallpaper":"https://深色壁纸.xxooo.cf/", 4 | 5 | "sites":[ 6 | {"key":"豆豆","name":"备用公众号【叨观荐影】","type": 3, "api": "csp_DouDou","searchable": 0,"quickSearch": 0,"filterable": 0}, 7 | {"key":"玩偶","name":"👽玩偶哥哥┃4K弹幕","type":3,"api":"csp_WoGG","searchable":1,"quickSearch":1,"changeable":0, "ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto","siteUrl":"https://www.wogg.net/","danMu":"弹"}}, 8 | {"key":"YGP","name":"🚀叨观荐影┃新片","type":3,"api":"csp_YGP","searchable":0,"quickSearch":0,"changeable":0}, 9 | {"key":"alllive","name":"📽️一直播┃直播","type":3,"api":"csp_Alllive","playerType":2,"searchable":0,"quickSearch":0,"changeable":0}, 10 | {"key":"米搜","name":"🦋米盘┃搜搜","type":3,"api":"csp_MIPanSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 11 | {"key":"抠搜","name":"🍄抠抠┃搜搜","type":3,"api":"csp_KkSs","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 12 | {"key":"Lib","name": "🌟立播┃秒播","type": 3,"api": "csp_Libvio","searchable": 1,"quickSearch": 1,"changeable":1,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 13 | {"key":"文采","name":"💮文采┃秒播","type":3,"api":"csp_Jpys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 14 | {"key":"糯米","name":"🍓糯米┃秒播","type":3,"api":"csp_Nmyswv","searchable":1,"quickSearch":1,"changeable":1}, 15 | {"key":"zxzj","name":"🍊在线┃秒播","type":3,"api":"csp_Zxzj","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://www.zxzjhd.com/"}, 16 | {"key":"比特","name":"🍄比特┃秒播","type":3,"api":"csp_Bttwoo","searchable":1,"quickSearch":1,"changeable":1}, 17 | {"key":"苹果","name":"🍎苹果┃不卡","type":3,"api":"csp_LiteApple","searchable":1,"quickSearch":1,"changeable":1}, 18 | {"key":"厂长","name":"📔厂长┃不卡","type":3,"api":"csp_NewCz","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext": "https://www.czzy77.com/"}, 19 | {"key":"木星","name":"🌞木星┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvE6sExbctTGI9OTT9b/fj1hQEfFo3ZpT7IjxyVo6ytU3boJSbS02op2WA9SGNlCJpscUJASIjSk1eTbWgFj3BY0O58XL66c3hoMFG1cCcjgoux+ibEY4c2WZ85pgVQ9BW3RV1NZ7a2+xJHJdcafyUM"}, 20 | {"key":"速播","name":"⏮️速播┃多线","type":3,"api":"csp_AppSx","searchable":1,"quickSearch":1,"changeable":1,"ext":"FbjDcUxPqpfNr0QF4QvEpcoxb5sQXd8GDXUTvbqvx0peQcuZ7GvQ0UGD/a2mS238cHqYkiBgwCduCiYrTZJtbwdDUt/L2w/LOWADxikKl6I8Cqz6OD9lIxS2anA6ytO6"}, 21 | {"key":"热播","name":"📺热播┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8I/B5wQc4Qma+pU="}, 22 | {"key":"南瓜","name":"🎃南瓜┃多线","type":3,"api":"csp_NanGua","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 23 | {"key":"萌米","name":"👀萌米┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8Iifux0Y8Qze6tVlMg=="}, 24 | 25 | {"key":"欢视","name":"👓欢视┃多线","type":3,"api":"csp_AppTT","playerType":2,"searchable":1,"quickSearch":1,"changeable":1,"ext":"AO7TcBkd8IPB+BwH4Qma+opv"}, 26 | {"key":"可可","name":"👻可可┃多线","type":3,"api":"csp_Kekys","playerType":2,"searchable":1,"quickSearch":1,"changeable":1}, 27 | {"key":"贱贱","name":"🐭贱贱┃P2P","type":3,"searchable":1,"quickSearch":1,"changeable":1,"playerType":"1","api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/jp.js"}, 28 | {"key":"Auete","name":"🏝奥特┃无广","type": 3,"api":"csp_Auete","timeout":15,"searchable":1,"quickSearch":1,"changeable":1,"ext":"https://auete.com/"}, 29 | {"key":"新6V","name":"🧲新6V┃磁力","type":3,"api":"csp_SixV","searchable":1,"quickSearch":1,"changeable":0,"ext": "https://www.xb6v.com/"}, 30 | {"key":"短剧","name":"🌈上头┃短剧","type":3,"api":"csp_Djtt","searchable":1,"quickSearch":1,"changeable":1}, 31 | {"key":"Dm84","name":"🚌巴士┃动漫","type":3,"api":"csp_Dm84","searchable":1,"quickSearch":1,"changeable":1}, 32 | {"key":"Ysj","name":"🎀异界┃动漫","type":3,"api":"csp_Ysj","searchable":1,"quickSearch":1,"changeable":1}, 33 | {"key":"Anime1","name":"🐾日本┃动漫","type": 3,"api": "csp_Anime1","searchable": 1,"quickSearch": 1,"changeable":1}, 34 | 35 | {"key":"926看球","name":"⚽926┃看球","type":3,"api":"csp_kanqiu926","searchable":0,"changeable":0,"style":{"type":"list"}}, 36 | {"key":"88js","name":"⚽ 88┃看球","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/88看球.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 37 | {"key":"310js","name":"⚽ 310┃看球","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/310直播.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 38 | {"key":"Jrsjs","name":"⚽ Jrs┃球迷","type": 3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/jrk.js","style":{"type":"list"},"searchable": 0,"quickSearch": 0,"changeable":0}, 39 | {"key":"酷奇","name":"🎤酷奇┃MV","type": 3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/酷奇MV.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 40 | {"key":"MTV","name":"🎧明星┃MV","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/MTV.json"}}, 41 | 42 | 43 | {"key":"虎牙直播js","name":"🐯虎牙┃直播","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.js","ext":"https://notabug.org/fantaiying/ext@main/huya2.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 44 | {"key":"斗鱼js","name":"🐟斗鱼┃直播","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/斗鱼直播.js","style":{"type":"rect","ratio":1.755},"playerType":"2","searchable": 0,"quickSearch": 0,"changeable":0}, 45 | {"key":"有声小说js","name":"🎧有声┃小说","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/有声小说吧.js","style":{"type":"rect","ratio":1},"searchable": 0,"quickSearch": 0,"changeable":0}, 46 | {"key":"Aid","name":"🚑急救┃教学","type":3,"api":"csp_FirstAid","searchable":0,"quickSearch":0,"changeable":0,"style": { "type": "rect", "ratio":3.8}}, 47 | 48 | {"key":"Sso","name":"🐌盘他┃三盘","type":3,"api":"csp_PanSso","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 49 | {"key":"夸搜","name":"🐟夸搜┃狸夸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"pan":"quark","Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 50 | {"key":"YiSo","name":"😹易搜┃阿狸","type":3,"api":"csp_YiSo","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 51 | {"key":"PanSearch","name":"🙀盘Se┃阿狸","type":3,"api":"csp_PanSearch","searchable":1,"quickSearch":1,"changeable":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 52 | {"key":"push_agent","name":"🛴手机┃推送","type":3,"api":"csp_Push","searchable":0,"quickSearch":0,"ext": {"Cloud-drive":"tvfan/Cloud-drive.txt","from":"4k|auto"}}, 53 | 54 | {"key":"Bili","name":"🅱哔哔合集┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/bilibili.json"}}, 55 | {"key":"Biliych","name":"🅱哔哔演唱会┃弹幕","type": 3,"api": "csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":1,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/biliych.json"}}, 56 | {"key":"dr_兔小贝","name":"📚儿童┃启蒙","type":3,"api":"https://notabug.org/fantaiying/ext@main/drpy2.min.js","ext":"https://notabug.org/fantaiying/ext@main/%E5%85%94%E5%B0%8F%E8%B4%9D.js","style":{"type":"rect","ratio":1.597},"searchable": 0,"quickSearch": 0,"changeable":0}, 57 | {"key":"少儿教育","name":"📚少儿┃教育","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/少儿教育.json"}}, 58 | {"key":"小学课堂","name":"📚小学┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/小学课堂.json"}}, 59 | {"key":"初中课堂","name":"📚初中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/初中课堂.json"}}, 60 | {"key":"高中教育","name":"📚高中┃课堂","type":3,"api":"csp_Bili","style":{"type":"rect","ratio":1.597},"searchable":0,"quickSearch":0,"changeable":0,"ext":{"json":"https://notabug.org/fantaiying/ext@main/高中课堂.json"}}, 61 | {"key":"fan","name":"导航 www.饭太硬.com","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0}, 62 | {"key":"cc","name":"请勿相信视频中广告","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"changeable":0} 63 | ], 64 | 65 | "logo":"https://fs-im-kefu.7moor-fs1.com/ly/4d2c3f00-7d4c-11e5-af15-41bf63ae4ea0/1716545739254/fc1b89e152cd4aa28d295107cb6c56c9.gif", 66 | "lives":[ 67 | {"name":"IPV4","type":0,"url":"https://ghp.ci/raw.githubusercontent.com/MemoryCollection/IPTV/refs/heads/main/itvlist.m3u","playerType":1}, 68 | {"name":"IPV6①","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/fanmingming/live/refs/heads/main/tv/m3u/ipv6.m3u","playerType":1}, 69 | {"name":"IPV6②","type":0,"url":"https://ghp.ci/https://raw.githubusercontent.com/wwb521/live/main/tv.m3u","playerType":1,"logo": "https://live.fanmingming.com/tv/{name}.png"}, 70 | {"name":"平台直播","type":0,"url":"https://tv.iill.top/m3u/Live","ua": "okhttp/3.15","playerType":2 } 71 | ] 72 | } -------------------------------------------------------------------------------- /url.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"url":"https://github.com/heroaku/TVboxo/raw/main/Text/ptest.json","name":"heroaku_ptest","baes":"https://github.com/heroaku/TVboxo/","path":"https://github.com/heroaku/TVboxo/raw/main/Text/" }, 3 | {"url":"https://github.com/heroaku/TVboxo/raw/main/Text/pyn.json","name":"heroaku_pyn","baes":"https://github.com/heroaku/TVboxo/","path":"https://github.com/heroaku/TVboxo/raw/main/Text/" }, 4 | {"url":"https://github.com/heroaku/TVboxo/raw/main/Text/ayn.json","name":"heroaku_ayn","baes":"https://github.com/heroaku/TVboxo/","path":"https://github.com/heroaku/TVboxo/raw/main/Text/" }, 5 | {"url":"https://github.com/heroaku/TVboxo/raw/main/Text/dtes.json","name":"heroaku_dtes","baes":"https://github.com/heroaku/TVboxo/","path":"https://github.com/heroaku/TVboxo/raw/main/Text/"}, 6 | {"url":"https://github.com/gaotianliuyun/gao/raw/master/0821.json","name":"gaotianliuyun_0821","baes":"https://github.com/gaotianliuyun/gao/","path":"https://github.com/gaotianliuyun/gao/raw/master/"}, 7 | {"url":"https://github.com/gaotianliuyun/gao/raw/master/0826.json","name":"gaotianliuyun_0826","baes":"https://github.com/gaotianliuyun/gao/","path":"https://github.com/gaotianliuyun/gao/raw/master/"}, 8 | {"url":"https://github.com/gaotianliuyun/gao/raw/master/0827.json","name":"gaotianliuyun_0827","baes":"https://github.com/gaotianliuyun/gao/","path":"https://github.com/gaotianliuyun/gao/raw/master/"}, 9 | {"url":"https://github.com/gaotianliuyun/gao/raw/master/0825.json","name":"gaotianliuyun_0825","baes":"https://github.com/gaotianliuyun/gao/","path":"https://github.com/gaotianliuyun/gao/raw/master/"}, 10 | {"url":"https://github.com/gaotianliuyun/gao/raw/master/0707.json","name":"gaotianliuyun_0707","baes":"https://github.com/gaotianliuyun/gao/","path":"https://github.com/gaotianliuyun/gao/raw/master/"}, 11 | {"url":"https://github.com/gaotianliuyun/gao/raw/master/0821.json","name":"0821","baes":"https://github.com/gaotianliuyun/gao/","path":"https://github.com/gaotianliuyun/gao/raw/master/"}, 12 | {"url":"https://github.com/gaotianliuyun/gao/raw/master/0825.json","name":"0825","baes":"https://github.com/gaotianliuyun/gao/","path":"https://github.com/gaotianliuyun/gao/raw/master/"}, 13 | {"url":"https://github.com/gaotianliuyun/gao/raw/master/0826.json","name":"0826","baes":"https://github.com/gaotianliuyun/gao/","path":"https://github.com/gaotianliuyun/gao/raw/master/"}, 14 | {"url":"https://github.com/gaotianliuyun/gao/raw/master/0827.json","name":"0827","baes":"https://github.com/gaotianliuyun/gao/","path":"https://github.com/gaotianliuyun/gao/raw/master/"}, 15 | {"url":"https://github.com/gaotianliuyun/gao/raw/master/js.json","name":"js","baes":"https://github.com/gaotianliuyun/gao/","path":"https://github.com/gaotianliuyun/gao/raw/master/"}, 16 | {"url":"https://github.com/gaotianliuyun/gao/raw/master/XYQ.json","name":"XYQ","baes":"https://github.com/gaotianliuyun/gao/","path":"https://github.com/gaotianliuyun/gao/raw/master/"}, 17 | {"url":"https://github.com/xianyuyimu/TVBOX-/raw/main/TVBox/%E4%B8%80%E6%9C%A8%E8%87%AA%E7%94%A8.json","name":"xianyuyimu_一木自用","baes":"https://github.com/xianyuyimu/TVBOX-/","path":"https://github.com/xianyuyimu/TVBOX-/raw/main/TVBox/"}, 18 | {"url":"https://github.com/2hacc/TVBox/raw/main/oktv.json","name":"2hacc_oktv","baes":"https://github.com/2hacc/TVBox/","path":"https://github.com/2hacc/TVBox/raw/main/"}, 19 | {"url":"https://github.com/franksun1211/TVBOX/raw/main/0706.json","name":"franksun1211_0706","baes":"https://github.com/franksun1211/TVBOX/","path":"https://github.com/franksun1211/TVBOX/raw/main/"}, 20 | {"url":"https://github.com/yw88075/tvbox/raw/main/dr/js.json","name":"yw88075_js","baes":"https://github.com/yw88075/tvbox/","path":"https://github.com/yw88075/tvbox/raw/main/dr/"}, 21 | {"url":"https://github.com/Dong-learn9/TVBox-zyjk/raw/main/tvbox2.json","name":"Dong-learn9_tvbox2","baes":"https://github.com/Dong-learn9/TVBox-zyjk/","path":"https://github.com/Dong-learn9/TVBox-zyjk/raw/main/"}, 22 | {"url":"https://github.com/liu673cn/box/raw/main/m.json","name":"liu673cn_m","baes":"https://github.com/liu673cn/box/","path":"https://github.com/liu673cn/box/raw/main/"}, 23 | {"url":"https://github.com/anaer/Meow/raw/main/meow.json","name":"anaer_meow","baes":"https://github.com/anaer/Meow/","path":"https://github.com/anaer/Meow/raw/main/"}, 24 | {"url":"https://github.com/hackyjso/box/raw/main/jzy.txt","name":"hackyjso_jzy","baes":"https://github.com/hackyjso/box/","path":"https://github.com/hackyjso/box/" } 25 | ] 26 | --------------------------------------------------------------------------------