免费看电视-方案

本文最后更新于:几秒前

📺免费看电视

相关资源仓库

小苹果影视

内置播放源,央视卫士直播,影视轮播等,可以直接安装 安卓端TV端

点我去下载

我的电视

内置直播源,亦可自定义

项目地址

TVBox

自行配置数据源

项目地址

数据源获取

渠道1

渠道2

测试可用(时间:2024年10月29日)

菜妮丝

https://tv.xn--yhqu5zs87a.top

巧儿

http://pandown.pro/tvbox/tvbox.json

俊哥

http://home.jundie.top:81/top98.json

dxawi

https://dxawi.github.io/0/0.json

小盒子多仓

http://xhztv.top/tvbox.txt

毒盒多仓

https://tv.youdu.fan:666

业余打发多仓

https://ghproxy.net/https://raw.githubusercontent.com/yyfxz/qqtv/main/qq.json

直播源

可用1

https://agit.ai/Yoursmile7/TVBox/raw/branch/master/live.txt

可用2

http://175.178.251.183:6689/live.m3u

🔧工具脚本:批量检测数据源的可用性

将你的链接都放到一个txt文本里面,然后执行这个脚本,可用的链接将单独筛选出来,这样就不用一个一个链接去试了😁

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import requests

# 读取链接文件
with open('links.txt', 'r') as file:
links = file.readlines()

# 存储可用的链接
reachable_links = []

# 测试每个链接
for link in links:
link = link.strip()
try:
response = requests.head(link, allow_redirects=True)
if response.status_code == 200:
reachable_links.append(link)
print(f"可用链接: {link}")
else:
print(f"不可用链接: {link} (状态码: {response.status_code})")
except requests.RequestException:
print(f"不可用链接: {link} (请求异常)")

# 将可用的链接写入新文件
with open('reachable_links.txt', 'w') as file:
for link in reachable_links:
file.write(link + '\n')

print("可用的链接已保存到 reachable_links.txt 文件中。")

免费看电视-方案
https://yan-sheng-li.github.io/blog/posts/18883.html
作者
李延胜
发布于
2024年11月2日
许可协议