Release: v1.0.6
This commit is contained in:
parent
9c86c1fec3
commit
4bc5f9c911
67
.github/workflows/main.yml
vendored
Normal file
67
.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,67 @@
|
||||
name: 'update schedule'
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
workflow_dispatch:
|
||||
branches:
|
||||
- master
|
||||
- dev
|
||||
jobs:
|
||||
push:
|
||||
runs-on: ${{ matrix.operating-system }}
|
||||
timeout-minutes: 120
|
||||
strategy:
|
||||
matrix:
|
||||
operating-system: ['ubuntu-20.04']
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Run with setup-python 3.9
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.9'
|
||||
update-environment: false
|
||||
cache: 'pipenv'
|
||||
- name: Install Selenium
|
||||
run: |
|
||||
sudo pip3 install selenium
|
||||
- name: Set up Chrome
|
||||
uses: browser-actions/setup-chrome@latest
|
||||
with:
|
||||
chrome-version: stable
|
||||
- name: Download chrome driver
|
||||
uses: nanasess/setup-chromedriver@master
|
||||
- name: Launch chrome driver
|
||||
run: |
|
||||
export DISPLAY=:99
|
||||
chromedriver --url-base=/wd/hub &
|
||||
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & # optional
|
||||
- name: Install pipenv
|
||||
run: pip3 install --user pipenv
|
||||
- name: Install dependecies
|
||||
run: pipenv --python python3 && pipenv install
|
||||
- name: Build
|
||||
run: pipenv run build
|
||||
- name: Commit and push if changed
|
||||
run: |
|
||||
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
||||
git config --local user.name "github-actions[bot]"
|
||||
git diff
|
||||
final_file=$(python -c '
|
||||
try:
|
||||
import user_config as config
|
||||
except ImportError:
|
||||
import config
|
||||
print(config.final_file)')
|
||||
if [[ -f "$final_file" ]]; then
|
||||
git add -f "$final_file"
|
||||
fi
|
||||
if [[ -f user_result.log ]]; then
|
||||
git add -f user_result.log
|
||||
elif [[ -f result.log ]]; then
|
||||
git add -f result.log
|
||||
fi
|
||||
if ! git diff --staged --quiet; then
|
||||
git commit -m "Github Action Auto Updated"
|
||||
git push --force
|
||||
fi
|
@ -1,5 +1,14 @@
|
||||
# 更新日志(Changelog)
|
||||
|
||||
## v1.0.6
|
||||
|
||||
### 2024/4/12
|
||||
|
||||
- 恢复工作流更新,请谨慎合理使用,勿尝试更改默认运行参数,可能导致封禁的风险!首推使用本地更新(Workflow updates have been restored. Please use them carefully and do not attempt to change the default runtime parameters, as this may risk being banned! It is recommended to use local updates first.)
|
||||
- 调整默认配置参数,降低单次更新运行时长(Adjusted the default configuration parameters to reduce the runtime of a single update.)
|
||||
- 依赖版本锁定,解决可能出现的环境错误(#72)(Dependency versions have been locked to solve potential environmental errors (#72).)
|
||||
- 优化逻辑与增加检测,避免网络异常占用工作流运行(Optimized logic and added checks to prevent network anomalies from occupying workflow operations.)
|
||||
|
||||
## v1.0.5
|
||||
|
||||
### 2024/4/10
|
||||
|
@ -9,10 +9,8 @@ Customize channel menus, automatically fetch and update the latest live source i
|
||||
- Customize templates to generate the channel categories and order you want
|
||||
- Interface validation to filter out invalid interfaces
|
||||
- Comprehensive sorting based on response time and resolution
|
||||
<s>
|
||||
- Scheduled execution, updates every day at 8:00 am Beijing time
|
||||
- The maximum number of update channels is 200
|
||||
</s>
|
||||
- Set up key focus channels and configure the number of pages fetched separately
|
||||
- Pagination results retrieval (configurable number of pages and interfaces)
|
||||
- Ensure update timeliness, configure to retrieve interfaces updated within a recent time range
|
||||
|
@ -9,10 +9,8 @@
|
||||
- 自定义模板,生成您想要的频道分类与频道顺序
|
||||
- 接口验效,过滤无效接口
|
||||
- 按响应时间、分辨率综合权衡排序
|
||||
<s>
|
||||
- 定时执行,北京时间每日 8:00 执行更新一次
|
||||
- 更新频道数量上限 200 个
|
||||
</s>
|
||||
- 可设置重点关注频道,单独配置获取分页的数量
|
||||
- 分页结果获取(可配置页数、接口数量)
|
||||
- 保证更新时效性,配置获取最近时间范围内更新的接口
|
||||
|
@ -15,9 +15,9 @@ favorite_list = [
|
||||
"湖南卫视",
|
||||
"翡翠台",
|
||||
]
|
||||
favorite_page_num = 6
|
||||
default_page_num = 4
|
||||
urls_limit = 15
|
||||
favorite_page_num = 3
|
||||
default_page_num = 2
|
||||
urls_limit = 10
|
||||
response_time_weight = 0.5
|
||||
resolution_weight = 0.5
|
||||
recent_days = 30
|
||||
|
@ -72,7 +72,7 @@ Adjust the configuration as needed. Below is the default configuration explanati
|
||||
| domain_blacklist | ["epg.pw"] | Interface domain blacklist, used to filter out interfaces with low-quality, ad-inclusive domains |
|
||||
| url_keywords_blacklist | [] | Interface keyword blacklist, used to filter out interfaces containing specific characters |
|
||||
|
||||
## Step 4: Run Updates Locally
|
||||
## Step 4: Run Updates Locally (Recommended, Stable, Supports a large number of channel updates)
|
||||
|
||||
### 1. Install Python
|
||||
|
||||
@ -113,15 +113,9 @@ Follow this project to be notified by email about the latest updates and release
|
||||
Return to the homepage of your repository. If there are updates to the project, click on "Sync fork" and then "Update branch" to confirm and update to the latest code.
|
||||

|
||||
|
||||
<center>
|
||||
<p style="color: red; text-align: center; font-size: 24px; font-weight: bolder;">Please use the following content with caution. If you have a large number of channels that need to be updated, please use local updates instead of automatic updates. Improper configuration may lead to your account or workflow being banned!</p>
|
||||
|
||||
## The following content is deprecated
|
||||
|
||||
</center>
|
||||
|
||||
<s>
|
||||
|
||||
## Step 6: Enable Auto-update
|
||||
## Step 6: Enable Auto-update (Only suitable for a small number of channel updates)
|
||||
|
||||
If your template and configuration modifications are correct, you can configure Actions to achieve automatic updates
|
||||
|
||||
@ -181,7 +175,9 @@ If you can access this link and it returns the updated interface content, then y
|
||||

|
||||
If you want to modify the update frequency (default: daily at 8:00 am Beijing time), you can modify the on:schedule:- cron field.
|
||||
|
||||
- #### It is strongly discouraged to make modifications, as there is no difference in the content of the interface in a short period of time. Both too frequent updates and high-consumption running workflows may be judged as resource abuse, leading to the risk of the repository and account being banned.
|
||||
- #### Please pay attention to the runtime of your workflow. If you find that the execution time is too long, you need to appropriately reduce the number of channels in the template, modify the number of pages and interfaces in the configuration, in order to meet the compliant operation requirements.
|
||||
|
||||
</s>
|
||||
<p style="color: red; font-size: 16px; font-weight: bolder;">
|
||||
1. It is strongly discouraged to make modifications, as there is no difference in the content of the interface in a short period of time. Both too frequent updates and high-consumption running workflows may be judged as resource abuse, leading to the risk of the repository and account being banned.
|
||||
</p>
|
||||
<p style="color: red; font-size: 16px; font-weight: bolder;">
|
||||
2. Please pay attention to the runtime of your workflow. If you find that the execution time is too long, you need to appropriately reduce the number of channels in the template, modify the number of pages and interfaces in the configuration, in order to meet the compliant operation requirements.
|
||||
</p>
|
||||
|
@ -71,7 +71,7 @@
|
||||
| domain_blacklist | ["epg.pw"] | 接口域名黑名单,用于过滤低质量含广告类域名的接口 |
|
||||
| url_keywords_blacklist | [] | 接口关键字黑名单,用于过滤含特定字符的接口 |
|
||||
|
||||
## 步骤四:本地运行更新
|
||||
## 步骤四:本地运行更新(推荐,稳定,支持大量频道更新)
|
||||
|
||||
### 1. 安装 Python
|
||||
|
||||
@ -112,15 +112,9 @@ https://mirror.ghproxy.com/raw.githubusercontent.com/您的github用户名/仓
|
||||
回到您的仓库首页,如果项目有更新内容,点击 Sync fork,Update branch 确认即可更新最新代码
|
||||

|
||||
|
||||
<center>
|
||||
<p style="color: red; text-align: center; font-size: 24px; font-weight: bolder;">以下内容请谨慎使用,如果您有大量的频道需要更新,请使用本地更新,勿使用自动更新,配置不当可能导致账户或工作流封禁!</p>
|
||||
|
||||
## 以下内容已废弃
|
||||
|
||||
</center>
|
||||
|
||||
<s>
|
||||
|
||||
## 步骤六:开启自动更新
|
||||
## 步骤六:开启自动更新(仅适合少量频道更新)
|
||||
|
||||
如果您的模板和配置修改没有问题的话,这时就可以配置 Actions 来实现自动更新啦
|
||||
|
||||
@ -180,7 +174,9 @@ https://mirror.ghproxy.com/raw.githubusercontent.com/您的github用户名/仓
|
||||

|
||||
如果您想修改更新频率(默认北京时间每日 8:00),可修改 on:schedule:- cron 字段。
|
||||
|
||||
- #### 强烈不建议修改,因为短时间内的接口内容并无差异,过高的更新频率与高耗时运行的工作流都有可能被判定为资源滥用,导致仓库与账户被封禁的风险。
|
||||
- #### 请留意您的工作流运行时长,若发现执行时间过长,需要适当删减模板中频道数量、修改配置中的分页数量和接口数量,以达到合规的运行要求。
|
||||
|
||||
</s>
|
||||
<p style="color: red; font-size: 16px; font-weight: bolder;">
|
||||
1. 强烈不建议修改,因为短时间内的接口内容并无差异,过高的更新频率与高耗时运行的工作流都有可能被判定为资源滥用,导致仓库与账户被封禁的风险。
|
||||
</p>
|
||||
<p style="color: red; font-size: 16px; font-weight: bolder;">
|
||||
2. 请留意您的工作流运行时长,若发现执行时间过长,需要适当删减模板中频道数量、修改配置中的分页数量和接口数量,以达到合规的运行要求。
|
||||
</p>
|
||||
|
85
main.py
85
main.py
@ -20,6 +20,7 @@ from utils import (
|
||||
checkByDomainBlacklist,
|
||||
checkByURLKeywordsBlacklist,
|
||||
filterUrlsByPatterns,
|
||||
checkUrlAccessible,
|
||||
)
|
||||
import logging
|
||||
import os
|
||||
@ -73,49 +74,53 @@ class UpdateSource:
|
||||
pageNum = (
|
||||
config.favorite_page_num if isFavorite else config.default_page_num
|
||||
)
|
||||
baseUrl = "https://www.foodieguide.com/iptvsearch/"
|
||||
infoList = []
|
||||
for page in range(1, pageNum + 1):
|
||||
try:
|
||||
page_url = f"https://www.foodieguide.com/iptvsearch/?page={page}&s={name}"
|
||||
self.driver.get(page_url)
|
||||
WebDriverWait(self.driver, 10).until(
|
||||
EC.presence_of_element_located(
|
||||
(By.CSS_SELECTOR, "div.tables")
|
||||
urlAccessible = await checkUrlAccessible(baseUrl)
|
||||
if urlAccessible:
|
||||
for page in range(1, pageNum + 1):
|
||||
try:
|
||||
page_url = f"{baseUrl}?page={page}&s={name}"
|
||||
self.driver.get(page_url)
|
||||
WebDriverWait(self.driver, 10).until(
|
||||
EC.presence_of_element_located(
|
||||
(By.CSS_SELECTOR, "div.tables")
|
||||
)
|
||||
)
|
||||
)
|
||||
soup = BeautifulSoup(self.driver.page_source, "html.parser")
|
||||
tables_div = soup.find("div", class_="tables")
|
||||
results = (
|
||||
tables_div.find_all("div", class_="result")
|
||||
if tables_div
|
||||
else []
|
||||
)
|
||||
for result in results:
|
||||
try:
|
||||
url, date, resolution = getUrlInfo(result)
|
||||
if (
|
||||
url
|
||||
and checkUrlIPVType(url)
|
||||
and checkByDomainBlacklist(url)
|
||||
and checkByURLKeywordsBlacklist(url)
|
||||
):
|
||||
infoList.append((url, date, resolution))
|
||||
except Exception as e:
|
||||
print(f"Error on result {result}: {e}")
|
||||
continue
|
||||
except Exception as e:
|
||||
print(f"Error on page {page}: {e}")
|
||||
continue
|
||||
soup = BeautifulSoup(self.driver.page_source, "html.parser")
|
||||
tables_div = soup.find("div", class_="tables")
|
||||
results = (
|
||||
tables_div.find_all("div", class_="result")
|
||||
if tables_div
|
||||
else []
|
||||
)
|
||||
for result in results:
|
||||
try:
|
||||
url, date, resolution = getUrlInfo(result)
|
||||
if (
|
||||
url
|
||||
and checkUrlIPVType(url)
|
||||
and checkByDomainBlacklist(url)
|
||||
and checkByURLKeywordsBlacklist(url)
|
||||
):
|
||||
infoList.append((url, date, resolution))
|
||||
except Exception as e:
|
||||
print(f"Error on result {result}: {e}")
|
||||
continue
|
||||
except Exception as e:
|
||||
print(f"Error on page {page}: {e}")
|
||||
continue
|
||||
try:
|
||||
sorted_data = await compareSpeedAndResolution(infoList)
|
||||
if sorted_data:
|
||||
channelUrls[name] = (
|
||||
getTotalUrls(sorted_data) or channelObj[name]
|
||||
)
|
||||
for (url, date, resolution), response_time in sorted_data:
|
||||
logging.info(
|
||||
f"Name: {name}, URL: {url}, Date: {date}, Resolution: {resolution}, Response Time: {response_time}ms"
|
||||
if infoList:
|
||||
sorted_data = await compareSpeedAndResolution(infoList)
|
||||
if sorted_data:
|
||||
channelUrls[name] = (
|
||||
getTotalUrls(sorted_data) or channelObj[name]
|
||||
)
|
||||
for (url, date, resolution), response_time in sorted_data:
|
||||
logging.info(
|
||||
f"Name: {name}, URL: {url}, Date: {date}, Resolution: {resolution}, Response Time: {response_time}ms"
|
||||
)
|
||||
else:
|
||||
channelUrls[name] = filterUrlsByPatterns(channelObj[name])
|
||||
except Exception as e:
|
||||
@ -124,7 +129,7 @@ class UpdateSource:
|
||||
finally:
|
||||
pbar.update()
|
||||
updateChannelUrlsTxt(cate, channelUrls)
|
||||
# await asyncio.sleep(1)
|
||||
await asyncio.sleep(1)
|
||||
pbar.close()
|
||||
|
||||
def main(self):
|
||||
|
1527
result.log
1527
result.log
File diff suppressed because it is too large
Load Diff
467
result.txt
467
result.txt
@ -1,9 +1,11 @@
|
||||
广东频道,#genre#
|
||||
广东珠江,http://113.86.204.95:9999/udp/239.77.0.114:5146
|
||||
广东珠江,http://113.86.204.95:9999/udp/239.77.0.1:5146
|
||||
广东珠江,http://218.13.170.98:9901/tsfile/live/1000_1.m3u8
|
||||
广东珠江,http://113.110.72.109:8090/hls/105/index.m3u8
|
||||
广东珠江,http://113.100.72.95:8899/udp/239.77.0.114:5146
|
||||
广东珠江,http://113.110.203.138:8888/udp/239.77.0.1:5146
|
||||
广东珠江,http://113.86.204.95:9999/udp/239.77.0.114:5146
|
||||
广东珠江,http://113.101.119.52:808/hls/105/index.m3u8
|
||||
广东珠江,http://219.135.208.218:8083/tsfile/live/0017_1.m3u8
|
||||
广东珠江,http://113.100.72.95:8899/udp/239.77.0.114:5146
|
||||
广东珠江,http://113.86.205.10:8090/hls/105/index.m3u8
|
||||
广东珠江,http://gmxw.7766.org:808/hls/83/index.m3u8
|
||||
广东珠江,http://angtv.cc/jd/gdlz.php?id=gdzj
|
||||
@ -21,31 +23,30 @@
|
||||
广东体育,http://113.100.72.95:8899/udp/239.77.0.112:5146
|
||||
广东体育,http://218.13.170.98:9901/tsfile/live/0019_1.m3u8
|
||||
广东体育,http://php.jdshipin.com:8880/chudian.php?id=gdty
|
||||
广东体育,http://116.21.123.201:8000/udp/239.77.1.97:5146
|
||||
广东体育,http://113.100.72.95:8899/udp/239.77.0.168:5146
|
||||
广东体育,http://219.135.208.218:8083/tsfile/live/1000_1.m3u8
|
||||
广东体育,http://gmxw.7766.org:808/hls/2/index.m3u8
|
||||
广东体育,http://api2.52tb.xyz/info?id=414&token=20230326xflvzc
|
||||
广东体育,http://angtv.cc/jd/gdlz.php?id=dgty
|
||||
广东体育,http://api2.52tb.xyz/info?id=414&token=20230326xflvzc
|
||||
广东体育,http://r.jdshipin.com/LiYdg
|
||||
广东新闻,http://113.15.187.233:8181/tsfile/live/1007_1.m3u8
|
||||
广东新闻,http://183.237.246.14:9931/tsfile/live/1012_1.m3u8
|
||||
广东新闻,http://113.101.119.52:808/hls/106/index.m3u8
|
||||
广东新闻,http://113.86.204.95:9999/udp/239.77.0.173:5146
|
||||
广东新闻,http://gmxw.7766.org:808/hls/5/index.m3u8
|
||||
广东卫视,http://219.147.3.106:4455/newlive/live/hls/26/live.m3u8
|
||||
广东卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226216/1.m3u8
|
||||
广东卫视,http://111.75.151.236:50085/newlive/live/hls/25/live.m3u8
|
||||
广东卫视,http://219.147.3.106:4455/newlive/live/hls/26/live.m3u8
|
||||
广东卫视,http://xxw.me0.cn/api/migu.php?id=28
|
||||
广东卫视,http://14.29.76.30:9901/tsfile/live/0125_1.m3u8
|
||||
广东卫视,http://219.135.208.218:8083/tsfile/live/0016_1.m3u8
|
||||
广东卫视,http://113.101.119.52:808/hls/152/index.m3u8
|
||||
广东卫视,http://125.210.152.19:9123/live/hzgq-gdwsgq-h264.m3u8
|
||||
广东卫视,http://218.13.170.98:9901/tsfile/live/0017_1.m3u8
|
||||
广东卫视,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226216/1.m3u8
|
||||
广东卫视,http://61.182.33.218:8000/hls/23/index.m3u8
|
||||
广东卫视,http://cfss.cc/api/ysp/gdws.m3u8
|
||||
广东卫视,http://gxft.7766.org:9901/tsfile/live/0125_1.m3u8
|
||||
广东卫视,http://gmxw.7766.org:808/hls/80/index.m3u8
|
||||
广东卫视,http://113.101.119.52:808/hls/152/index.m3u8
|
||||
广东卫视,http://14.29.76.30:9901/tsfile/live/0125_1.m3u8
|
||||
广东卫视,http://218.13.170.98:9901/tsfile/live/0017_1.m3u8
|
||||
广东卫视,http://125.210.152.19:9123/live/hzgq-gdwsgq-h264.m3u8
|
||||
广东卫视,http://61.182.33.218:8000/hls/23/index.m3u8
|
||||
广东卫视,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226216/1.m3u8
|
||||
广东卫视,http://gxft.7766.org:9901/tsfile/live/0125_1.m3u8
|
||||
广东卫视,http://angtv.cc/test/lngd.php?id=092
|
||||
广东卫视,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225589/index.m3u8
|
||||
大湾区卫视,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226218/index.m3u8
|
||||
大湾区卫视,http://223.10.24.101:8085/udp/239.1.1.69:8069
|
||||
@ -67,75 +68,80 @@
|
||||
珠海,http://113.86.204.95:9999/udp/239.77.0.155:5146
|
||||
深圳卫视,http://219.147.3.106:4455/newlive/live/hls/25/live.m3u8
|
||||
深圳卫视,http://58.220.219.14:9901/tsfile/live/0126_1.m3u8?key=txiptv
|
||||
深圳卫视,http://111.75.151.236:50085/newlive/live/hls/26/live.m3u8
|
||||
深圳卫视,http://218.13.170.98:9901/tsfile/live/1005_1.m3u8
|
||||
深圳卫视,http://115.149.139.141:10001/tsfile/live/1032_1.m3u8
|
||||
深圳卫视,http://125.210.152.19:9123/live/hzgq-szwsgq-h264.m3u8
|
||||
深圳卫视,http://111.75.151.236:50085/newlive/live/hls/26/live.m3u8
|
||||
深圳卫视,http://222.240.82.92:9901/tsfile/live/0126_1.m3u8
|
||||
深圳卫视,http://61.182.33.218:8000/hls/21/index.m3u8
|
||||
深圳卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226205/1.m3u8
|
||||
深圳卫视,http://61.182.33.218:8000/hls/21/index.m3u8
|
||||
深圳卫视,http://gmxw.7766.org:808/hls/45/index.m3u8
|
||||
深圳卫视,http://php.jdshipin.com:8880/bst.php?id=szwshd/4000000
|
||||
|
||||
央视频道,#genre#
|
||||
CCTV-1,http://14.117.233.245:9000/udp/239.77.0.188:5146
|
||||
CCTV-1,http://183.164.47.117:4022/rtp/238.1.79.35:4392
|
||||
CCTV-1,http://211.158.155.48:8002/udp/225.0.4.74:7980
|
||||
CCTV-1,http://123.145.79.12:8001/udp/225.0.4.74:7980
|
||||
CCTV-1,http://183.164.47.117:4022/rtp/238.1.79.35:4392
|
||||
CCTV-1,http://123.149.206.177:8800/rtp/239.16.20.1:10010
|
||||
CCTV-1,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225785/1.m3u8
|
||||
CCTV-1,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226921/index.m3u8
|
||||
CCTV-1,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225785/index.m3u8
|
||||
CCTV-1,http://221.15.7.42:8888/rtp/225.1.4.73:1102
|
||||
CCTV-1,http://121.24.99.30:8090/hls/9/index.m3u8
|
||||
CCTV-1,http://110.240.239.100:8888/rtp/239.253.92.83:8012
|
||||
CCTV-1,http://119.118.170.190:8888/rtp/232.0.0.15:1234
|
||||
CCTV-1,http://stream.smntv.cn/smtv1/sd/live.m3u8
|
||||
CCTV-1,http://113.116.4.70:808/hls/30/index.m3u8
|
||||
CCTV-1,http://110.7.130.123:8096/tsfile/live/0014_2.m3u8
|
||||
CCTV-1,http://62.210.209.138:41000/series/v52/v43/6818.mp4
|
||||
CCTV-1,http://117.141.149.101:4431/tsfile/live/faacts/1010_1.m3u8
|
||||
CCTV-1,http://117.141.149.101:9901/tsfile/live/1010_1.m3u8
|
||||
CCTV-1,http://222.83.181.3:9901/tsfile/live/1005_1.m3u8
|
||||
CCTV-1,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226189/index.m3u8
|
||||
CCTV-2,http://112.114.137.121:888/hls/2/index.m3u8
|
||||
CCTV-2,http://220.178.185.92:4022/rtp/238.1.78.235:7752
|
||||
CCTV-2,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226224/1.m3u8
|
||||
CCTV-2,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226195/index.m3u8
|
||||
CCTV-2,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226195/1.m3u8
|
||||
CCTV-2,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226195/index.m3u8?
|
||||
CCTV-2,http://111.11.98.205:9900/hls/2/index.m3u8
|
||||
CCTV-2,http://angtv.cc/jd/gdlz.php?id=cctv2
|
||||
CCTV-2,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226195/index.m3u8?
|
||||
CCTV-2,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225612/index.m3u8
|
||||
CCTV-2,http://angtv.cc/jd/gdlz.php?id=cctv2
|
||||
CCTV-2,https://live.goodiptv.club/api/bestv.php?id=cctv2hd8m/8000000
|
||||
CCTV-2,https://cntv.lat/tv/live.php?auth=231110&id=cctv2
|
||||
CCTV-3,http://114.100.195.107:4022/rtp/238.1.78.170:7232
|
||||
CCTV-3,http://106.8.191.222:8189/rtp/239.254.200.13:6000
|
||||
CCTV-3,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226397/1.m3u8
|
||||
CCTV-3,http://114.252.225.231:8000/rtp/239.3.1.172:8001
|
||||
CCTV-3,http://111.126.255.2:808/hls/103/index.m3u8
|
||||
CCTV-3,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226397/1.m3u8
|
||||
CCTV-3,http://angtv.cc/jd/gdlz.php?id=cctv3
|
||||
CCTV-3,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225611/index.m3u8
|
||||
CCTV-3,https://cntv.lat/tv/live.php?auth=231110&id=cctv3
|
||||
CCTV-3,https://live.goodiptv.club/api/bestv.php?id=cctv38m/8000000
|
||||
CCTV-4,http://lu1.cc/itv/php/cctv4k.php
|
||||
CCTV-4,http://121.235.191.182:12999/hls/4/index.m3u8
|
||||
CCTV-4,http://113.86.205.10:808/hls/116/index.m3u8
|
||||
CCTV-4,http://39.134.24.161/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226191/index.m3u8
|
||||
CCTV-4,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226191/1.m3u8
|
||||
CCTV-4,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226191/index.m3u8
|
||||
CCTV-4,http://159.75.85.63:5679/cctv4k.php
|
||||
CCTV-4,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226191/index.m3u8
|
||||
CCTV-4,http://39.134.24.161/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226191/index.m3u8
|
||||
CCTV-4,https://global.cgtn.cicc.media.caton.cloud/master/cgtn-america.m3u8
|
||||
CCTV-4,http://113.86.205.10:808/hls/116/index.m3u8
|
||||
CCTV-4,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226191/1.m3u8
|
||||
CCTV-4,http://angtv.cc/jd/gdlz.php?id=cctv4
|
||||
CCTV-4,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225610/index.m3u8
|
||||
CCTV-4,https://cntv.lat/tv/live.php?auth=231110&id=cctv4k
|
||||
CCTV-4,https://cntv.lat/tv/live.php?auth=231110&id=cctv4
|
||||
CCTV-4,https://live.goodiptv.club/api/bestv.php?id=cctv4hd8m/8000000
|
||||
CCTV-4,https://global.cgtn.cicc.media.caton.cloud/master/cgtn-america.m3u8
|
||||
CCTV-4,https://live.v1.mk/api/bestv.php?id=cctv4k/15000000
|
||||
CCTV-4,https://live.goodiptv.club/api/bestv.php?id=cctv4k/15000000
|
||||
CCTV-4,https://live.v1.mk/api/bestv.php?id=cctv4k/15000000
|
||||
CCTV-5,http://114.249.19.38:4022/rtp/239.3.1.173:8001
|
||||
CCTV-5,http://39.134.24.161/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226395/index.m3u8
|
||||
CCTV-5,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226395/1.m3u8
|
||||
CCTV-5,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225761/index.m3u8
|
||||
CCTV-5,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226395/1.m3u8
|
||||
CCTV-5,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226395/1.m3u8
|
||||
CCTV-5,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225761/1.m3u8
|
||||
CCTV-5,http://angtv.cc/jd/gdlz.php?id=cctv5p
|
||||
CCTV-5,http://angtv.cc/jd/gdlz.php?id=cctv5
|
||||
CCTV-5,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225489/index.m3u8
|
||||
CCTV-5,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225494/index.m3u8
|
||||
CCTV-5,https://live.goodiptv.club/api/bestv.php?id=cctv5phd8m/8000000
|
||||
CCTV-5,https://live.goodiptv.club/api/bestv.php?id=cctv5hd8m/8000000
|
||||
CCTV-5,https://cntv.lat/tv/live.php?auth=231110&id=cctv5p
|
||||
CCTV-5,https://cntv.lat/tv/live.php?auth=231110&id=cctv5
|
||||
CCTV-5,https://live.goodiptv.club/api/bestv.php?id=cctv58m/8000000
|
||||
CCTV-5,https://live.goodiptv.club/api/bestv.php?id=cctv5phd8m/8000000
|
||||
CCTV-5+,http://114.249.19.38:4022/rtp/239.3.1.173:8001
|
||||
CCTV-5+,http://39.134.24.161/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226395/index.m3u8
|
||||
CCTV-5+,http://xxw.me0.cn/api/migu.php?id=8
|
||||
CCTV-5+,https://piccpndali.v.myalicdn.com/audio/cctv5_2.m3u8
|
||||
@ -147,72 +153,77 @@ CCTV-6,http://110.7.130.110:9901/tsfile/live/0006_1.m3u8
|
||||
CCTV-6,http://110.7.130.246:9901/tsfile/live/0006_1.m3u8
|
||||
CCTV-6,http://angtv.cc/jd/gdlz.php?id=cctv6
|
||||
CCTV-6,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225609/index.m3u8
|
||||
CCTV-6,https://cntv.lat/tv/live.php?auth=231110&id=cctv6
|
||||
CCTV-6,https://live.goodiptv.club/api/bestv.php?id=cctv6hd8m/8000000
|
||||
CCTV-7,http://xxw.me0.cn/api/migu.php?id=10
|
||||
CCTV-7,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226192/index.m3u8
|
||||
CCTV-7,http://222.240.82.92:9901/tsfile/live/0007_1.m3u8
|
||||
CCTV-7,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226192/1.m3u8
|
||||
CCTV-7,http://1.195.111.251:11190/tsfile/live/0007_1.m3u8
|
||||
CCTV-7,https://piccpndali.v.myalicdn.com/audio/cctv7_2.m3u8
|
||||
CCTV-7,http://ainm.cc/a/play/php/gehua.php?id=cctv7
|
||||
CCTV-7,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226192/index.m3u8
|
||||
CCTV-7,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226192/1.m3u8
|
||||
CCTV-7,http://angtv.cc/jd/gdlz.php?id=cctv7
|
||||
CCTV-7,https://cd-live-stream.news.cctvplus.com/live/smil:CHANNEL1.smil/playlist.m3u8
|
||||
CCTV-7,http://xxw.me0.cn/api/migu.php?id=10
|
||||
CCTV-7,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226002/index.m3u8
|
||||
CCTV-7,https://live.goodiptv.club/api/bestv.php?id=cctv7hd8m/8000000
|
||||
CCTV-8,http://121.24.98.185:8090/hls/16/index.m3u8
|
||||
CCTV-8,http://220.178.185.92:4022/rtp/238.1.78.173:7256
|
||||
CCTV-8,http://121.24.98.185:8090/hls/16/index.m3u8
|
||||
CCTV-8,http://xxw.me0.cn/api/migu.php?id=11
|
||||
CCTV-8,http://117.141.149.101:9901/tsfile/live/0008_1.m3u8
|
||||
CCTV-8,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226012/index.m3u8?
|
||||
CCTV-8,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226012/index.m3u8
|
||||
CCTV-8,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226391/1.m3u8
|
||||
CCTV-8,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226012/1.m3u8
|
||||
CCTV-8,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226012/index.m3u8
|
||||
CCTV-8,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226012/1.m3u8
|
||||
CCTV-8,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226391/1.m3u8
|
||||
CCTV-8,http://1.195.111.251:11190/tsfile/live/0008_1.m3u8
|
||||
CCTV-8,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226012/index.m3u8?
|
||||
CCTV-8,https://piccpndali.v.myalicdn.com/audio/cctv8_2.m3u8
|
||||
CCTV-8,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225492/index.m3u8
|
||||
CCTV-8,http://angtv.cc/jd/gdlz.php?id=cctv8
|
||||
CCTV-8,https://live.goodiptv.club/api/bestv.php?id=cctv8hd8m/8000000
|
||||
CCTV-9,http://121.24.99.52:8090/hls/17/index.m3u8
|
||||
CCTV-9,https://streamcdnb1-dd782ed59e2a4e86aabf6fc508674b59.msvdn.net/live/S3160845/0tuSetc8UFkF/playlist_video.m3u8
|
||||
CCTV-9,http://14.155.226.57:8888/hls/5/index.m3u8
|
||||
CCTV-9,http://xxw.me0.cn/api/migu.php?id=12
|
||||
CCTV-9,http://222.240.82.92:9901/tsfile/live/0009_1.m3u8
|
||||
CCTV-9,https://news.cgtn.com/resource/live/english/cgtn-news.m3u8
|
||||
CCTV-9,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226197/index.m3u8
|
||||
CCTV-9,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226197/index.m3u8?
|
||||
CCTV-9,https://piccpndali.v.myalicdn.com/audio/cctv9_2.m3u8
|
||||
CCTV-9,https://cd-live-stream.news.cctvplus.com/live/smil:CHANNEL1.smil/playlist.m3u8
|
||||
CCTV-9,http://stream1.jlntv.cn/fzpd/sd/live.m3u8
|
||||
CCTV-9,http://222.240.82.92:9901/tsfile/live/0009_1.m3u8
|
||||
CCTV-9,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226197/1.m3u8
|
||||
CCTV-9,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226197/1.m3u8
|
||||
CCTV-9,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226197/index.m3u8?
|
||||
CCTV-9,http://1.195.111.251:11190/tsfile/live/0009_1.m3u8
|
||||
CCTV-9,https://piccpndali.v.myalicdn.com/audio/cctv9_2.m3u8
|
||||
CCTV-9,http://angtv.cc/jd/gdlz.php?id=cctv9
|
||||
CCTV-9,https://live.goodiptv.club/api/bestv.php?id=cctv9hd8m/8000000
|
||||
CCTV-10,http://xxw.me0.cn/api/migu.php?id=13
|
||||
CCTV-10,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226189/index.m3u8?
|
||||
CCTV-10,http://222.240.82.92:9901/tsfile/live/0010_1.m3u8
|
||||
CCTV-10,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226189/index.m3u8
|
||||
CCTV-10,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226189/index.m3u8?
|
||||
CCTV-10,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226189/1.m3u8
|
||||
CCTV-10,https://piccpndali.v.myalicdn.com/audio/cctv10_2.m3u8
|
||||
CCTV-10,http://angtv.cc/jd/gdlz.php?id=cctv10
|
||||
CCTV-10,http://wanzhoulive.cbg.cn:8017/Cz7WPb8/800/live.m3u8
|
||||
CCTV-10,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225606/index.m3u8
|
||||
CCTV-10,http://1.195.111.251:11190/tsfile/live/0010_1.m3u8
|
||||
CCTV-10,https://live.goodiptv.club/api/bestv.php?id=cctv10hd8m/8000000
|
||||
CCTV-10,http://123.184.70.100:801/hls/78/index.m3u8
|
||||
CCTV-10,http://wanzhoulive.cbg.cn:8017/Cz7WPb8/800/live.m3u8
|
||||
CCTV-10,http://xxw.me0.cn/api/migu.php?id=13
|
||||
CCTV-10,https://piccpndali.v.myalicdn.com/audio/cctv10_2.m3u8
|
||||
CCTV-10,http://222.240.82.92:9901/tsfile/live/0010_1.m3u8
|
||||
CCTV-10,http://angtv.cc/jd/gdlz.php?id=cctv10
|
||||
CCTV-10,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225606/index.m3u8
|
||||
CCTV-10,https://live.goodiptv.club/api/bestv.php?id=cctv10hd8m/8000000
|
||||
CCTV-10,http://1.195.111.251:11190/tsfile/live/0010_1.m3u8
|
||||
CCTV-11,http://xxw.me0.cn/api/migu.php?id=14
|
||||
CCTV-11,http://1.195.111.251:11190/tsfile/live/0011_1.m3u8
|
||||
CCTV-11,https://piccpndali.v.myalicdn.com/audio/cctv11_2.m3u8
|
||||
CCTV-11,https://cd-live-stream.news.cctvplus.com/live/smil:CHANNEL1.smil/playlist.m3u8
|
||||
CCTV-11,http://ainm.cc/a/play/php/gehua.php?id=cctv11c
|
||||
CCTV-11,https://cd-live-stream.news.cctvplus.com/live/smil:CHANNEL1.smil/playlist.m3u8
|
||||
CCTV-11,http://angtv.cc/jd/gdlz.php?id=cctv11
|
||||
CCTV-11,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225853/index.m3u8
|
||||
CCTV-11,https://live.goodiptv.club/api/bestv.php?id=cctv11hd8m/8000000
|
||||
CCTV-12,http://113.116.4.70:808/hls/30/index.m3u8
|
||||
CCTV-11,https://cntv.lat/tv/live.php?auth=231110&id=cctv11
|
||||
CCTV-12,http://xxw.me0.cn/api/migu.php?id=15
|
||||
CCTV-12,http://222.240.82.92:9901/tsfile/live/0012_1.m3u8
|
||||
CCTV-12,http://1.195.111.251:11190/tsfile/live/0012_1.m3u8
|
||||
CCTV-12,https://piccpndali.v.myalicdn.com/audio/cctv12_2.m3u8
|
||||
CCTV-12,http://ainm.cc/a/play/php/gehua.php?id=cctv12
|
||||
CCTV-12,http://angtv.cc/jd/gdlz.php?id=cctv12
|
||||
CCTV-12,http://1.195.111.251:11190/tsfile/live/0012_1.m3u8
|
||||
CCTV-12,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225605/index.m3u8
|
||||
CCTV-12,https://cntv.lat/tv/live.php?auth=231110&id=cctv12
|
||||
CCTV-13,http://14.117.233.245:9000/udp/239.77.0.188:5146
|
||||
CCTV-13,http://183.164.47.117:4022/rtp/238.1.79.35:4392
|
||||
CCTV-13,http://119.118.170.190:8888/rtp/232.0.0.15:1234
|
||||
@ -222,45 +233,45 @@ CCTV-13,http://xxw.me0.cn/api/migu.php?id=16
|
||||
CCTV-13,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226233/index.m3u8
|
||||
CCTV-13,http://123.117.163.147:18888/rtp/239.3.1.124:8128
|
||||
CCTV-13,http://stream.smntv.cn/smtv1/playlist.m3u8
|
||||
CCTV-13,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226062/index.m3u8
|
||||
CCTV-13,http://222.240.82.92:9901/tsfile/live/0013_1.m3u8
|
||||
CCTV-13,http://l.cztvcloud.com/channels/lantian/SXshangyu1/720p.m3u8
|
||||
CCTV-13,http://222.240.82.92:9901/tsfile/live/0013_1.m3u8
|
||||
CCTV-13,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226233/1.m3u8
|
||||
CCTV-13,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226233/index.m3u8?
|
||||
CCTV-14,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226193/1.m3u8
|
||||
CCTV-14,http://1.195.111.251:11190/tsfile/live/0014_1.m3u8
|
||||
CCTV-14,http://222.240.82.92:9901/tsfile/live/0014_1.m3u8
|
||||
CCTV-14,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226193/index.m3u8
|
||||
CCTV-14,http://xxw.me0.cn/api/migu.php?id=17
|
||||
CCTV-14,http://1.195.111.251:11190/tsfile/live/0014_1.m3u8
|
||||
CCTV-14,https://piccpndali.v.myalicdn.com/audio/cctv14_2.m3u8
|
||||
CCTV-14,http://ainm.cc/a/play/php/gehua.php?id=cctv14
|
||||
CCTV-14,http://xxw.me0.cn/api/migu.php?id=17
|
||||
CCTV-14,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225604/index.m3u8
|
||||
CCTV-14,https://cntv.lat/tv/live.php?auth=231110&id=cctv14
|
||||
CCTV-15,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225785/index.m3u8
|
||||
CCTV-15,http://xxw.me0.cn/api/migu.php?id=18
|
||||
CCTV-15,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225785/index.m3u8?
|
||||
CCTV-15,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225785/1.m3u8
|
||||
CCTV-15,http://110.7.130.123:8096/tsfile/live/0014_2.m3u8
|
||||
CCTV-15,http://xxw.me0.cn/api/migu.php?id=18
|
||||
CCTV-15,http://1.195.111.251:11190/tsfile/live/0015_1.m3u8
|
||||
CCTV-15,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225785/index.m3u8?
|
||||
CCTV-15,https://piccpndali.v.myalicdn.com/audio/cctv15_2.m3u8
|
||||
CCTV-15,http://angtv.cc/jd/gdlz.php?id=cctv15
|
||||
CCTV-15,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225854/index.m3u8
|
||||
CCTV-15,http://1.195.111.251:11190/tsfile/live/0015_1.m3u8
|
||||
CCTV-15,https://cntv.lat/tv/live.php?auth=231110&id=cctv15
|
||||
CCTV-15,https://live.goodiptv.club/api/bestv.php?id=cctv15hd8m/8000000
|
||||
CCTV-16,http://159.75.85.63:5681/sxg.php?id=CCTV-16-4K_8000
|
||||
CCTV-16,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226921/index.m3u8
|
||||
CCTV-16,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226921/1.m3u8
|
||||
CCTV-16,http://159.75.85.63:5681/sxg.php?id=CCTV-16-4K_8000
|
||||
CCTV-16,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226921/1.m3u8
|
||||
CCTV-16,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226921/1.m3u8
|
||||
CCTV-16,https://piccpndali.v.myalicdn.com/audio/cctv16_2.m3u8
|
||||
CCTV-16,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226095/index.m3u8
|
||||
CCTV-16,https://cntv.lat/tv/live.php?auth=231110&id=cctv16
|
||||
CCTV-16,https://cntv.lat/tv/live.php?auth=231110&id=cctv164k
|
||||
CCTV-16,https://live.goodiptv.club/api/bestv.php?id=cctv16hd8m/8000000
|
||||
CCTV-16-4K,http://159.75.85.63:5681/sxg.php?id=CCTV-16-4K_8000
|
||||
CCTV-17,http://218.13.170.98:9901/tsfile/live/0016_1.m3u8
|
||||
CCTV-17,http://xxw.me0.cn/api/migu.php?id=19
|
||||
CCTV-17,https://piccpndali.v.myalicdn.com/audio/cctv17_2.m3u8
|
||||
CCTV-17,http://ainm.cc/a/play/php/gehua.php?id=cctv17
|
||||
CCTV-17,http://stream1.jlntv.cn/xcpd/sd/live.m3u8
|
||||
CCTV-17,http://ainm.cc/a/play/php/gehua.php?id=cctv17
|
||||
CCTV-17,http://218.13.170.98:9901/tsfile/live/0016_1.m3u8
|
||||
CCTV-17,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225608/index.m3u8
|
||||
CCTV-17,http://62.210.209.138:41000/series/v52/v43/8058.mp4
|
||||
CCTV-17,http://62.210.209.138:41000/series/v52/v43/6891.mp4
|
||||
CCTV-17,http://62.210.209.138:41000/series/v52/v43/8058.mp4
|
||||
CCTV-17,http://listplay4k.live:8080/play/sEqGlXBK924GUbV9yuY_SE-NqejOBHvsvoaAvbJWVAkq3EfVoNKe7gLLB5X1KwhI/ts
|
||||
CCTV-17,https://cntv.lat/tv/live.php?auth=231110&id=cctv17
|
||||
|
||||
@ -270,77 +281,79 @@ CCTV-17,https://cntv.lat/tv/live.php?auth=231110&id=cctv17
|
||||
大湾区卫视,http://gmxw.7766.org:808/hls/132/index.m3u8
|
||||
大湾区卫视,http://38.64.72.148/hls/modn/list/4011/chunklist0.m3u8
|
||||
广东卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226216/1.m3u8
|
||||
广东卫视,http://111.75.151.236:50085/newlive/live/hls/25/live.m3u8
|
||||
广东卫视,http://219.147.3.106:4455/newlive/live/hls/26/live.m3u8
|
||||
广东卫视,http://111.75.151.236:50085/newlive/live/hls/25/live.m3u8
|
||||
广东卫视,http://xxw.me0.cn/api/migu.php?id=28
|
||||
广东卫视,http://218.13.170.98:9901/tsfile/live/0017_1.m3u8
|
||||
广东卫视,http://219.135.208.218:8083/tsfile/live/0016_1.m3u8
|
||||
广东卫视,http://14.29.76.30:9901/tsfile/live/0125_1.m3u8
|
||||
广东卫视,http://gmxw.7766.org:808/hls/80/index.m3u8
|
||||
广东卫视,http://113.101.119.52:808/hls/152/index.m3u8
|
||||
广东卫视,http://125.210.152.19:9123/live/hzgq-gdwsgq-h264.m3u8
|
||||
广东卫视,http://cfss.cc/api/ysp/gdws.m3u8
|
||||
广东卫视,http://61.182.33.218:8000/hls/23/index.m3u8
|
||||
广东卫视,http://113.57.109.36:9901/tsfile/live/0125_1.m3u8
|
||||
广东卫视,http://gxft.7766.org:9901/tsfile/live/0125_1.m3u8
|
||||
广东卫视,http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226216/1.m3u8
|
||||
广东卫视,http://218.13.170.98:9901/tsfile/live/0017_1.m3u8
|
||||
广东卫视,http://angtv.cc/test/lngd.php?id=092
|
||||
广东卫视,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225589/index.m3u8
|
||||
浙江卫视,http://111.75.151.236:50085/newlive/live/hls/21/live.m3u8
|
||||
浙江卫视,https://ali-m-l.cztv.com/channels/lantian/channel001/1080p.m3u8
|
||||
浙江卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225798/1.m3u8
|
||||
浙江卫视,http://219.147.3.106:4455/newlive/live/hls/17/live.m3u8
|
||||
浙江卫视,http://gmxw.7766.org:808/hls/37/index.m3u8
|
||||
浙江卫视,http://14.29.76.30:9901/tsfile/live/0124_1.m3u8
|
||||
浙江卫视,http://cfss.cc/api/ysp/zjws.m3u8
|
||||
浙江卫视,http://39.165.35.152:9901/tsfile/live/0124_1.m3u8?key=txiptv
|
||||
浙江卫视,http://58.220.219.14:9901/tsfile/live/0124_1.m3u8?key=txiptv
|
||||
浙江卫视,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225505/index.m3u8
|
||||
浙江卫视,http://218.13.170.98:9901/tsfile/live/1002_1.m3u8
|
||||
浙江卫视,http://125.210.152.19:9123/live/hzgq-zjwsgq-h264.m3u8
|
||||
浙江卫视,http://113.57.109.36:9901/tsfile/live/0124_1.m3u8
|
||||
浙江卫视,http://219.147.3.106:4455/newlive/live/hls/17/live.m3u8
|
||||
浙江卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225798/1.m3u8
|
||||
浙江卫视,http://39.165.35.152:9901/tsfile/live/0124_1.m3u8?key=txiptv
|
||||
浙江卫视,http://angtv.cc/jd/gdlz.php?id=zjws
|
||||
浙江卫视,http://php.jdshipin.com:8880/bst.php?id=zjwshd/4000000
|
||||
浙江卫视,http://angtv.cc/test/lngd.php?id=094
|
||||
浙江卫视,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225505/index.m3u8
|
||||
浙江卫视,http://58.220.219.14:9901/tsfile/live/0124_1.m3u8?key=txiptv
|
||||
浙江卫视,http://php.jdshipin.com:8880/bst.php?id=zjwshd/4000000
|
||||
浙江卫视,https://live.v1.mk/api/bestv.php?id=zjwshd8m/8000000
|
||||
浙江卫视,http://218.13.170.98:9901/tsfile/live/1002_1.m3u8
|
||||
湖南卫视,http://182.122.73.120:8089/hls/30/index.m3u8
|
||||
湖南卫视,http://219.147.3.106:4455/newlive/live/hls/18/live.m3u8
|
||||
湖南卫视,http://121.24.98.185:8090/hls/56/index.m3u8
|
||||
湖南卫视,http://iptv123.msns.cn:9901/tsfile/live/0128_1.m3u8
|
||||
湖南卫视,http://antvlive.ab5c6921.cdnviet.com/antv/playlist.m3u8
|
||||
湖南卫视,http://221.15.7.42:8888/rtp/225.1.4.17:1046
|
||||
湖南卫视,http://125.210.152.19:9123/live/hzgq-hnwsgq-h264.m3u8
|
||||
湖南卫视,http://111.75.151.236:50085/newlive/live/hls/20/live.m3u8
|
||||
湖南卫视,http://xxw.me0.cn/api/migu.php?id=25
|
||||
湖南卫视,http://220.164.192.48:50085/tsfile/live/0107_1.m3u8
|
||||
湖南卫视,http://120.7.86.41:808/hls/18/index.m3u8
|
||||
湖南卫视,http://219.147.3.106:4455/newlive/live/hls/18/live.m3u8
|
||||
湖南卫视,http://221.15.7.42:8888/rtp/225.1.4.17:1046
|
||||
湖南卫视,http://xxw.me0.cn/api/migu.php?id=25
|
||||
湖南卫视,http://111.75.151.236:50085/newlive/live/hls/20/live.m3u8
|
||||
湖南卫视,http://125.210.152.19:9123/live/hzgq-hnwsgq-h264.m3u8
|
||||
湖南卫视,http://61.182.33.218:8000/hls/17/index.m3u8
|
||||
湖南卫视,http://218.13.170.98:9901/tsfile/live/1001_1.m3u8
|
||||
湖南卫视,http://220.164.192.48:50085/tsfile/live/0107_1.m3u8
|
||||
湖南卫视,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225506/index.m3u8
|
||||
湖南卫视,http://php.jdshipin.com:8880/bst.php?id=hnwshd/4000000
|
||||
湖南卫视,http://218.13.170.98:9901/tsfile/live/1001_1.m3u8
|
||||
北京卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226222/1.m3u8
|
||||
北京卫视,http://118.79.7.20:6001/rtp/226.0.2.177:9328
|
||||
北京卫视,http://123.123.184.43:1314/rtp/239.3.1.241:8000
|
||||
北京卫视,http://61.182.33.218:8000/hls/19/index.m3u8
|
||||
北京卫视,http://60.223.72.32:8005/rtp/226.0.2.177:9328
|
||||
北京卫视,https://live-hls-web-ajb.getaj.net/AJB/01.m3u8
|
||||
北京卫视,http://125.210.152.19:9123/live/hzgq-bjgqws-h264.m3u8
|
||||
北京卫视,http://118.79.7.20:6001/rtp/226.0.2.39:8224
|
||||
北京卫视,http://111.75.151.236:50085/newlive/live/hls/24/live.m3u8
|
||||
北京卫视,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225796/index.m3u8
|
||||
北京卫视,http://113.57.109.36:9901/tsfile/live/0122_1.m3u8
|
||||
北京卫视,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225796/index.m3u8?
|
||||
北京卫视,http://219.147.3.106:4455/newlive/live/hls/20/live.m3u8
|
||||
北京卫视,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225796/index.m3u8
|
||||
北京卫视,http://61.138.128.226:19901/tsfile/live/0122_1.m3u8
|
||||
北京卫视,http://php.jdshipin.com:8880/bst.php?id=bjwshd/4000000
|
||||
湖北卫视,http://219.147.3.106:4455/newlive/live/hls/32/live.m3u8
|
||||
湖北卫视,http://xxw.me0.cn/api/migu.php?id=24
|
||||
湖北卫视,http://111.75.151.236:50085/newlive/live/hls/27/live.m3u8
|
||||
湖北卫视,http://218.13.170.98:9901/tsfile/live/1007_1.m3u8
|
||||
湖北卫视,http://125.210.152.19:9123/live/hzgq-hbwsgq-h264.m3u8
|
||||
湖北卫视,http://113.57.109.36:9901/tsfile/live/1013_1.m3u8
|
||||
湖北卫视,http://58.220.219.14:9901/tsfile/live/0132_1.m3u8?key=txiptv
|
||||
湖北卫视,http://111.75.151.236:50085/newlive/live/hls/27/live.m3u8
|
||||
湖北卫视,http://xxw.me0.cn/api/migu.php?id=24
|
||||
湖北卫视,http://125.210.152.19:9123/live/hzgq-hbwsgq-h264.m3u8
|
||||
湖北卫视,http://php.jdshipin.com:8880/bst.php?id=hbwshd/4000000
|
||||
黑龙江卫视,http://111.75.151.236:50085/newlive/live/hls/32/live.m3u8
|
||||
黑龙江卫视,http://218.13.170.98:9901/tsfile/live/1006_1.m3u8
|
||||
黑龙江卫视,http://125.210.152.19:9123/live/hzgq-hljwsgq-h264.m3u8
|
||||
黑龙江卫视,http://58.220.219.14:9901/tsfile/live/0143_1.m3u8?key=txiptv
|
||||
黑龙江卫视,http://113.57.109.36:9901/tsfile/live/0143_1.m3u8
|
||||
黑龙江卫视,http://219.147.3.106:4455/newlive/live/hls/28/live.m3u8
|
||||
黑龙江卫视,http://221.210.64.165:2233/hls/1/index.m3u8
|
||||
黑龙江卫视,http://php.jdshipin.com:8880/bst.php?id=hljwshd/4000000
|
||||
黑龙江卫视,http://218.13.170.98:9901/tsfile/live/1006_1.m3u8
|
||||
黑龙江卫视,http://php.jdshipin.com:8880/bst.php?id=hljwshd8m/8000000
|
||||
黑龙江卫视,http://php.jdshipin.com:8880/bst.php?id=hljwshd/4000000
|
||||
安徽卫视,http://219.147.3.106:4455/newlive/live/hls/21/live.m3u8
|
||||
安徽卫视,http://111.75.151.236:50085/newlive/live/hls/29/live.m3u8
|
||||
安徽卫视,http://125.210.152.19:9123/live/hzgq-ahwsgq-h264.m3u8
|
||||
@ -348,88 +361,90 @@ CCTV-17,https://cntv.lat/tv/live.php?auth=231110&id=cctv17
|
||||
安徽卫视,http://php.jdshipin.com:8880/bst.php?id=ahwshd/4000000
|
||||
重庆卫视,http://111.75.151.236:50085/newlive/live/hls/40/live.m3u8
|
||||
重庆卫视,http://125.210.152.19:9123/live/hzgq-cqwsgq-h264.m3u8
|
||||
重庆卫视,http://113.57.109.36:9901/tsfile/live/0142_1.m3u8
|
||||
重庆卫视,http://219.147.3.106:4455/newlive/live/hls/24/live.m3u8
|
||||
重庆卫视,http://php.jdshipin.com:8880/bst.php?id=cqwshd8m/8000000
|
||||
重庆卫视,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225601/index.m3u8
|
||||
重庆卫视,http://218.13.170.98:9901/tsfile/live/1012_1.m3u8
|
||||
重庆卫视,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225601/index.m3u8
|
||||
东方卫视,http://219.147.3.106:4455/newlive/live/hls/23/live.m3u8
|
||||
东方卫视,http://xxw.me0.cn/api/migu.php?id=20
|
||||
东方卫视,http://218.13.170.98:9901/tsfile/live/1010_1.m3u8
|
||||
东方卫视,http://121.27.126.129:809/hls/38/index.m3u8
|
||||
东方卫视,http://111.75.151.236:50085/newlive/live/hls/23/live.m3u8
|
||||
东方卫视,http://125.210.152.19:9123/live/hzgq-dftvgq-h264.m3u8
|
||||
东方卫视,http://113.57.109.36:9901/tsfile/live/0107_1.m3u8
|
||||
东方卫视,http://219.147.3.106:4455/newlive/live/hls/23/live.m3u8
|
||||
东方卫视,http://182.46.8.161:8018/hls/54/index.m3u8
|
||||
东方卫视,http://cfss.cc/api/ysp/dfws.m3u8
|
||||
东方卫视,http://php.jdshipin.com:8880/bst.php?id=hddfws/4000000
|
||||
东方卫视,http://218.13.170.98:9901/tsfile/live/1010_1.m3u8
|
||||
东南卫视,http://219.147.3.106:4455/newlive/live/hls/29/live.m3u8
|
||||
东南卫视,http://111.75.151.236:50085/newlive/live/hls/33/live.m3u8
|
||||
东南卫视,http://125.210.152.19:9123/live/hzgq-fjwsgq-h264.m3u8
|
||||
东南卫视,http://113.57.109.36:9901/tsfile/live/0137_1.m3u8
|
||||
东南卫视,http://219.147.3.106:4455/newlive/live/hls/29/live.m3u8
|
||||
东南卫视,http://61.182.33.218:8000/hls/33/index.m3u8
|
||||
东南卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225766/1.m3u8
|
||||
东南卫视,http://61.182.33.218:8000/hls/33/index.m3u8
|
||||
东南卫视,http://iptv123.msns.cn:9901/tsfile/live/0137_1.m3u8
|
||||
东南卫视,http://angtv.cc/test/lngd.php?id=483
|
||||
东南卫视,http://php.jdshipin.com:8880/bst.php?id=dnwshd/4000000
|
||||
甘肃卫视,http://218.13.170.98:9901/tsfile/live/0141_1.m3u8
|
||||
甘肃卫视,http://111.75.151.236:50085/newlive/live/hls/41/live.m3u8
|
||||
甘肃卫视,http://125.210.152.19:9123/live/hszx-gstv-h264.m3u8
|
||||
甘肃卫视,http://gmxw.7766.org:808/hls/119/index.m3u8
|
||||
甘肃卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225754/1.m3u8
|
||||
甘肃卫视,http://111.75.151.236:50085/newlive/live/hls/41/live.m3u8
|
||||
甘肃卫视,http://218.13.170.98:9901/tsfile/live/0141_1.m3u8
|
||||
甘肃卫视,http://125.210.152.19:9123/live/hszx-gstv-h264.m3u8
|
||||
甘肃卫视,http://58.220.219.14:9901/tsfile/live/0141_1.m3u8?key=txiptv
|
||||
甘肃卫视,http://61.182.33.218:8000/hls/39/index.m3u8
|
||||
甘肃卫视,http://219.147.3.106:4455/newlive/live/hls/47/live.m3u8
|
||||
甘肃卫视,http://api2.52tb.xyz/info?id=46&token=20230326xflvzc
|
||||
甘肃卫视,http://61.182.33.218:8000/hls/39/index.m3u8
|
||||
甘肃卫视,http://223.109.210.41/1301-tx.otvstream.otvcloud.com/otv/skcc/live/channel57/index.m3u8
|
||||
甘肃卫视,http://angtv.cc/jd/gdlz.php?id=gsws
|
||||
甘肃卫视,http://gmxw.7766.org:808/hls/119/index.m3u8
|
||||
甘肃卫视,http://angtv.cc/test/lngd.php?id=119
|
||||
甘肃卫视,http://api2.52tb.xyz/info?id=46&token=20230326xflvzc
|
||||
甘肃卫视,http://php.jdshipin.com:8880/bst.php?id=gswshd8m/8000000
|
||||
广西卫视,http://113.12.72.152:9901/tsfile/live/1024_1.m3u8
|
||||
甘肃卫视,https://cntv.lat/tv/live.php?auth=231110&id=gsws
|
||||
广西卫视,http://222.84.98.48:4200/udp/239.81.0.107:4056
|
||||
广西卫视,http://113.12.72.152:9901/tsfile/live/1024_1.m3u8
|
||||
广西卫视,http://111.75.151.236:50085/newlive/live/hls/37/live.m3u8
|
||||
广西卫视,http://218.13.170.98:9901/tsfile/live/1019_1.m3u8
|
||||
广西卫视,http://125.210.152.19:9123/live/hszx-gxtv-h264.m3u8
|
||||
广西卫视,http://58.220.219.14:9901/tsfile/live/0113_1.m3u8?key=txiptv
|
||||
广西卫视,http://219.147.3.106:4455/newlive/live/hls/39/live.m3u8
|
||||
广西卫视,http://120.7.86.41:808/hls/33/index.m3u8
|
||||
广西卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225770/1.m3u8
|
||||
广西卫视,http://120.7.86.41:808/hls/33/index.m3u8
|
||||
广西卫视,http://61.182.33.218:8000/hls/34/index.m3u8
|
||||
广西卫视,https://live.goodiptv.club/api/bestv.php?id=gxwshd8m/8000000
|
||||
广西卫视,http://219.147.3.106:4455/newlive/live/hls/39/live.m3u8
|
||||
广西卫视,http://58.220.219.14:9901/tsfile/live/0113_1.m3u8?key=txiptv
|
||||
广西卫视,http://php.jdshipin.com:8880/bst.php?id=gxwshd8m/8000000
|
||||
贵州卫视,http://111.75.151.236:50085/newlive/live/hls/45/live.m3u8
|
||||
广西卫视,https://live.goodiptv.club/api/bestv.php?id=gxwshd8m/8000000
|
||||
广西卫视,http://218.13.170.98:9901/tsfile/live/1019_1.m3u8
|
||||
贵州卫视,http://218.13.170.98:9901/tsfile/live/1014_1.m3u8
|
||||
贵州卫视,http://111.75.151.236:50085/newlive/live/hls/45/live.m3u8
|
||||
贵州卫视,http://125.210.152.19:9123/live/hszx-gztv-h264.m3u8
|
||||
贵州卫视,http://219.147.3.106:4455/newlive/live/hls/42/live.m3u8
|
||||
贵州卫视,http://223.109.210.41/1301-tx.otvstream.otvcloud.com/otv/skcc/live/channel30/index.m3u8
|
||||
贵州卫视,http://php.jdshipin.com:8880/bst.php?id=gzwshd8m/8000000
|
||||
贵州卫视,https://live.goodiptv.club/api/bestv.php?id=gzwshd8m/8000000
|
||||
海南卫视,http://218.13.170.98:9901/tsfile/live/1020_1.m3u8
|
||||
海南卫视,http://111.75.151.236:50085/newlive/live/hls/42/live.m3u8
|
||||
海南卫视,http://125.210.152.19:9123/live/hszx-lytv-h264.m3u8
|
||||
海南卫视,http://218.13.170.98:9901/tsfile/live/1020_1.m3u8
|
||||
海南卫视,http://gmxw.7766.org:808/hls/124/index.m3u8
|
||||
海南卫视,http://58.220.219.14:9901/tsfile/live/0120_2.m3u8?key=txiptv
|
||||
海南卫视,http://125.210.152.19:9123/live/hszx-lytv-h264.m3u8
|
||||
海南卫视,http://api2.52tb.xyz/info?id=38&token=20230326xflvzc
|
||||
海南卫视,http://219.147.3.106:4455/newlive/live/hls/31/live.m3u8
|
||||
海南卫视,http://59.44.192.22:65000/hls/99/index.m3u8
|
||||
海南卫视,http://223.109.210.41/1301-tx.otvstream.otvcloud.com/otv/skcc/live/channel62/index.m3u8
|
||||
海南卫视,http://angtv.cc/test/lngd.php?id=473
|
||||
海南卫视,http://angtv.cc/jd/gdlz.php?id=hiws
|
||||
海南卫视,http://58.220.219.14:9901/tsfile/live/0120_2.m3u8?key=txiptv
|
||||
海南卫视,http://219.147.3.106:4455/newlive/live/hls/31/live.m3u8
|
||||
海南卫视,https://cntv.lat/tv/live.php?auth=231110&id=hinws
|
||||
海南卫视,http://angtv.cc/test/lngd.php?id=473
|
||||
海南卫视,http://php.jdshipin.com:8880/bst.php?id=hainanwshd8m/8000000
|
||||
河北卫视,http://125.210.152.19:9123/live/hzgq-hbwsgq1-h264.m3u8
|
||||
河北卫视,http://218.13.170.98:9901/tsfile/live/1016_1.m3u8
|
||||
河北卫视,http://113.57.109.36:9901/tsfile/live/0117_1.m3u8
|
||||
河北卫视,http://219.147.3.106:4455/newlive/live/hls/35/live.m3u8
|
||||
河北卫视,http://61.182.33.218:8000/hls/16/index.m3u8
|
||||
河北卫视,http://120.197.112.28:9901/tsfile/live/1050_1.m3u8
|
||||
河北卫视,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226328/index.m3u8
|
||||
河北卫视,http://110.240.239.100:8888/rtp/239.253.92.154:6011
|
||||
河北卫视,http://111.75.151.236:50085/newlive/live/hls/51/live.m3u8
|
||||
河北卫视,http://125.210.152.19:9123/live/hzgq-hbwsgq1-h264.m3u8
|
||||
河北卫视,http://113.57.109.36:9901/tsfile/live/0117_1.m3u8
|
||||
河北卫视,http://120.197.112.28:9901/tsfile/live/1050_1.m3u8
|
||||
河北卫视,http://61.182.33.218:8000/hls/16/index.m3u8
|
||||
河北卫视,http://219.147.3.106:4455/newlive/live/hls/35/live.m3u8
|
||||
河北卫视,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226328/index.m3u8
|
||||
河北卫视,http://218.13.170.98:9901/tsfile/live/1016_1.m3u8
|
||||
河北卫视,http://php.jdshipin.com:8880/bst.php?id=hbwshd8m/8000000
|
||||
河南卫视,http://219.147.3.106:4455/newlive/live/hls/38/live.m3u8
|
||||
河南卫视,http://111.75.151.236:50085/newlive/live/hls/39/live.m3u8
|
||||
河南卫视,http://113.57.109.36:9901/tsfile/live/0139_1.m3u8
|
||||
河南卫视,http://125.210.152.19:9123/live/hzgq-henanwsgq-h264.m3u8
|
||||
河南卫视,http://angtv.cc/test/lngd.php?id=339
|
||||
河南卫视,http://58.220.219.14:9901/tsfile/live/0139_1.m3u8?key=txiptv
|
||||
河南卫视,http://angtv.cc/test/lngd.php?id=339
|
||||
河南卫视,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226064/index.m3u8
|
||||
吉林卫视,http://majian.ixiaobai.net:58888/rtp/239.37.0.111:5540
|
||||
吉林卫视,http://live.ybtvyun.com/video/s10016-7e5f23de35df/index.m3u8
|
||||
@ -438,260 +453,268 @@ CCTV-17,https://cntv.lat/tv/live.php?auth=231110&id=cctv17
|
||||
吉林卫视,http://125.210.152.19:9123/live/hzgq-jlwsgq-h264.m3u8
|
||||
吉林卫视,http://61.182.33.218:8000/hls/35/index.m3u8
|
||||
吉林卫视,https://pulltv1.wanfudaluye.com/live/tv1.m3u8
|
||||
吉林卫视,http://stream1.jlntv.cn/jlws/sd/live.m3u8
|
||||
吉林卫视,http://223.109.210.41/1301-tx.otvstream.otvcloud.com/otv/skcc/live/channel20/index.m3u8
|
||||
吉林卫视,http://stream1.jlntv.cn/jlws/playlist.m3u8
|
||||
吉林卫视,http://stream1.jlntv.cn/jlws/sd/live.m3u8
|
||||
吉林卫视,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225598/index.m3u8
|
||||
吉林卫视,http://php.jdshipin.com:8880/bst.php?id=jlwshd8m/8000000
|
||||
江苏卫视,http://182.122.73.120:8089/hls/31/index.m3u8
|
||||
江苏卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226200/1.m3u8
|
||||
江苏卫视,http://111.75.151.236:50085/newlive/live/hls/22/live.m3u8
|
||||
江苏卫视,http://125.210.152.19:9123/live/hzgq-jswsgq-h264.m3u8
|
||||
江苏卫视,http://xxw.me0.cn/api/migu.php?id=27
|
||||
江苏卫视,http://111.75.151.236:50085/newlive/live/hls/22/live.m3u8
|
||||
江苏卫视,http://171.8.245.48:808/hls/30/index.m3u8
|
||||
江苏卫视,http://125.210.152.19:9123/live/hzgq-jswsgq-h264.m3u8
|
||||
江苏卫视,http://113.57.109.36:9901/tsfile/live/0127_1.m3u8
|
||||
江苏卫视,http://61.182.33.218:8000/hls/18/index.m3u8
|
||||
江苏卫视,http://219.147.3.106:4455/newlive/live/hls/19/live.m3u8
|
||||
江苏卫视,http://cfss.cc/api/ysp/jsws.m3u8
|
||||
江苏卫视,http://php.jdshipin.com:8880/bst.php?id=jswshd/4000000
|
||||
江西卫视,http://xxw.me0.cn/api/migu.php?id=26
|
||||
江西卫视,http://111.75.151.236:50085/newlive/live/hls/16/live.m3u8
|
||||
江西卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225764/1.m3u8
|
||||
江西卫视,http://125.210.152.19:9123/live/hzgq-jxwsgq-h264.m3u8
|
||||
江西卫视,http://219.147.3.106:4455/newlive/live/hls/36/live.m3u8
|
||||
江西卫视,http://113.57.109.36:9901/tsfile/live/1003_1.m3u8
|
||||
江西卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225764/1.m3u8
|
||||
江西卫视,http://php.jdshipin.com:8880/bst.php?id=jxwshd/4000000
|
||||
辽宁卫视,http://221.220.135.32:9999/rtp/239.3.1.210:8056
|
||||
辽宁卫视,http://xxw.me0.cn/api/migu.php?id=21
|
||||
辽宁卫视,http://111.75.151.236:50085/newlive/live/hls/30/live.m3u8
|
||||
辽宁卫视,http://125.210.152.19:9123/live/hzgq-lnwsgq-h264.m3u8
|
||||
辽宁卫视,http://123.163.55.234:9901/tsfile/live/0121_1.m3u8
|
||||
辽宁卫视,http://113.57.109.36:9901/tsfile/live/0121_1.m3u8
|
||||
辽宁卫视,http://cfss.cc/api/ysp/lnws.m3u8
|
||||
辽宁卫视,http://219.147.3.106:4455/newlive/live/hls/27/live.m3u8
|
||||
辽宁卫视,http://xxw.me0.cn/api/migu.php?id=21
|
||||
辽宁卫视,http://123.163.55.234:9901/tsfile/live/0121_1.m3u8
|
||||
辽宁卫视,http://php.jdshipin.com:8880/bst.php?id=lnwshd8m/8000000
|
||||
辽宁卫视,http://php.jdshipin.com:8880/bst.php?id=lnwshd/4000000
|
||||
内蒙古卫视,http://218.13.170.98:9901/tsfile/live/0109_1.m3u8
|
||||
内蒙古卫视,http://111.75.151.236:50085/newlive/live/hls/48/live.m3u8
|
||||
内蒙古卫视,http://125.210.152.19:9123/live/hszx-nmgtv-h264.m3u8
|
||||
内蒙古卫视,http://gmxw.7766.org:808/hls/60/index.m3u8
|
||||
内蒙古卫视,http://125.210.152.19:9123/live/hszx-nmgtv-h264.m3u8
|
||||
内蒙古卫视,http://111.75.151.236:50085/newlive/live/hls/48/live.m3u8
|
||||
内蒙古卫视,http://60.12.183.46:9901/tsfile/live/1003_1.m3u8
|
||||
内蒙古卫视,http://219.147.3.106:4455/newlive/live/hls/41/live.m3u8
|
||||
内蒙古卫视,http://223.109.210.41/1301-tx.otvstream.otvcloud.com/otv/skcc/live/channel93/index.m3u8
|
||||
内蒙古卫视,http://php.jdshipin.com:8880/bst.php?id=nmgws/1300000
|
||||
宁夏卫视,http://gmxw.7766.org:808/hls/106/index.m3u8
|
||||
宁夏卫视,http://218.13.170.98:9901/tsfile/live/0112_1.m3u8
|
||||
宁夏卫视,http://111.75.151.236:50085/newlive/live/hls/38/live.m3u8
|
||||
宁夏卫视,http://gmxw.7766.org:808/hls/106/index.m3u8
|
||||
宁夏卫视,http://125.210.152.19:9123/live/hszx-nxtv-h264.m3u8
|
||||
宁夏卫视,http://219.147.3.106:4455/newlive/live/hls/44/live.m3u8
|
||||
宁夏卫视,http://api2.52tb.xyz/info?id=49&token=20230326xflvzc
|
||||
宁夏卫视,http://223.109.210.41/1301-tx.otvstream.otvcloud.com/otv/skcc/live/channel69/index.m3u8
|
||||
宁夏卫视,http://angtv.cc/jd/gdlz.php?id=nxws
|
||||
宁夏卫视,http://58.220.219.14:9901/tsfile/live/0112_1.m3u8?key=txiptv
|
||||
宁夏卫视,https://cntv.lat/tv/live.php?auth=231110&id=nxws
|
||||
宁夏卫视,https://ktpremium.com:443/K3939/6757/718670
|
||||
青海卫视,http://stream.qhbtv.com/qhws/sd/live.m3u8
|
||||
青海卫视,http://111.75.151.236:50085/newlive/live/hls/46/live.m3u8
|
||||
青海卫视,http://gmxw.7766.org:808/hls/61/index.m3u8
|
||||
青海卫视,http://218.13.170.98:9901/tsfile/live/0140_1.m3u8
|
||||
青海卫视,http://111.75.151.236:50085/newlive/live/hls/46/live.m3u8
|
||||
青海卫视,http://125.210.152.19:9123/live/hszx-qhtv-h264.m3u8
|
||||
青海卫视,http://219.147.3.106:4455/newlive/live/hls/43/live.m3u8
|
||||
青海卫视,http://api2.52tb.xyz/info?id=50&token=20230326xflvzc
|
||||
青海卫视,https://piccpndali.v.myalicdn.com/audio/qinghai_2.m3u8
|
||||
青海卫视,http://stream.qhbtv.com/qhws/playlist.m3u8
|
||||
青海卫视,https://piccpndali.v.myalicdn.com/audio/qinghai_2.m3u8
|
||||
青海卫视,http://angtv.cc/test/lngd.php?id=111
|
||||
青海卫视,http://223.109.210.41/1301-tx.otvstream.otvcloud.com/otv/skcc/live/channel60/index.m3u8
|
||||
青海卫视,http://stream.qhbtv.com/qhws/sd/live.m3u8?_upt=f35a89681647856030
|
||||
青海卫视,http://stream.qhbtv.com/qhws/sd/live.m3u8?_upt=63cf437e1591689484
|
||||
青海卫视,https://cntv.lat/tv/live.php?auth=231110&id=qhws
|
||||
青海卫视,http://php.jdshipin.com:8880/bst.php?id=qhws/1300000
|
||||
山东卫视,http://xxw.me0.cn/api/migu.php?id=23
|
||||
山东卫视,http://111.75.151.236:50085/newlive/live/hls/31/live.m3u8
|
||||
山东卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226012/1.m3u8
|
||||
山东卫视,http://113.57.109.36:9901/tsfile/live/1002_1.m3u8
|
||||
山东卫视,http://125.210.152.19:9123/live/hzgq-sdwsgq-h264.m3u8
|
||||
山东卫视,http://219.147.3.106:4455/newlive/live/hls/48/live.m3u8
|
||||
山东卫视,http://218.13.170.98:9901/tsfile/live/1009_1.m3u8
|
||||
山东卫视,http://182.46.8.252:8686/udp/239.21.1.87:5002
|
||||
山东卫视,http://111.75.151.236:50085/newlive/live/hls/31/live.m3u8
|
||||
山东卫视,http://125.210.152.19:9123/live/hzgq-sdwsgq-h264.m3u8
|
||||
山东卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226012/1.m3u8
|
||||
山东卫视,http://61.182.33.218:8000/hls/22/index.m3u8
|
||||
山东卫视,http://xxw.me0.cn/api/migu.php?id=23
|
||||
山东卫视,http://218.13.170.98:9901/tsfile/live/1009_1.m3u8
|
||||
山东卫视,http://php.jdshipin.com:8880/bst.php?id=sdwshd/4000000
|
||||
山西卫视,http://80ec27bff7f9ae80b961481da488e302.livehwc3.cn/liveflash.sxrtv.com/live/sxwshd.m3u8?sub_m3u8=true&edge_slice=true&user_session_id=d04ce01474da4193c8863ea281ec4759
|
||||
山西卫视,http://live.cooltv.top/tv/tide.php?id=sxiws2
|
||||
山西卫视,http://183.185.40.158:8084/rtp/226.0.2.11:8000
|
||||
山西卫视,http://218.13.170.98:9901/tsfile/live/0118_1.m3u8
|
||||
山西卫视,http://111.75.151.236:50085/newlive/live/hls/44/live.m3u8
|
||||
山西卫视,http://gmxw.7766.org:808/hls/59/index.m3u8
|
||||
山西卫视,http://125.210.152.19:9123/live/hszx-shanxitv-h264.m3u8
|
||||
山西卫视,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225763/index.m3u8
|
||||
山西卫视,http://113.57.109.36:9901/tsfile/live/0118_1.m3u8
|
||||
山西卫视,http://58.220.219.14:9901/tsfile/live/0118_1.m3u8?key=txiptv
|
||||
山西卫视,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225763/index.m3u8?
|
||||
山西卫视,http://219.147.3.106:4455/newlive/live/hls/33/live.m3u8
|
||||
山西卫视,http://angtv.cc/jd/gdlz.php?id=sxws
|
||||
山西卫视,http://gmxw.7766.org:808/hls/59/index.m3u8
|
||||
山西卫视,http://218.13.170.98:9901/tsfile/live/0118_1.m3u8
|
||||
山西卫视,http://113.57.109.36:9901/tsfile/live/0118_1.m3u8
|
||||
山西卫视,http://125.210.152.19:9123/live/hszx-shanxitv-h264.m3u8
|
||||
山西卫视,http://61.182.33.218:8000/hls/37/index.m3u8
|
||||
山西卫视,http://php.jdshipin.com:8880/bst.php?id=shanxiws/1300000
|
||||
陕西卫视,http://gmxw.7766.org:808/hls/58/index.m3u8
|
||||
山西卫视,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225763/index.m3u8
|
||||
山西卫视,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225763/index.m3u8?
|
||||
山西卫视,http://angtv.cc/jd/gdlz.php?id=sxws
|
||||
山西卫视,http://58.220.219.14:9901/tsfile/live/0118_1.m3u8?key=txiptv
|
||||
山西卫视,https://cntv.lat/tv/live.php?auth=231110&id=sxiws
|
||||
陕西卫视,http://218.13.170.98:9901/tsfile/live/0136_1.m3u8
|
||||
陕西卫视,http://111.75.151.236:50085/newlive/live/hls/47/live.m3u8
|
||||
陕西卫视,http://125.210.152.19:9123/live/hszx-sxtv-h264.m3u8
|
||||
陕西卫视,http://219.147.3.106:4455/newlive/live/hls/30/live.m3u8
|
||||
陕西卫视,http://61.182.33.218:8000/hls/36/index.m3u8
|
||||
陕西卫视,http://223.109.210.41/1301-tx.otvstream.otvcloud.com/otv/skcc/live/channel55/index.m3u8
|
||||
陕西卫视,http://angtv.cc/test/lngd.php?id=512
|
||||
陕西卫视,http://58.220.219.14:9901/tsfile/live/0120_7.m3u8?key=txiptv
|
||||
陕西卫视,http://223.109.210.41/1301-tx.otvstream.otvcloud.com/otv/skcc/live/channel55/index.m3u8
|
||||
陕西卫视,http://gmxw.7766.org:808/hls/58/index.m3u8
|
||||
陕西卫视,http://angtv.cc/test/lngd.php?id=512
|
||||
陕西卫视,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225498/index.m3u8
|
||||
陕西卫视,https://cntv.lat/tv/live.php?auth=231110&id=sxws
|
||||
陕西卫视,http://php.jdshipin.com:8880/bst.php?id=sxws/1300000
|
||||
四川卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225768/1.m3u8
|
||||
四川卫视,http://111.75.151.236:50085/newlive/live/hls/43/live.m3u8
|
||||
四川卫视,http://125.210.152.19:9123/live/hszx-sctv-h264.m3u8
|
||||
四川卫视,http://111.75.151.236:50085/newlive/live/hls/43/live.m3u8
|
||||
四川卫视,http://113.57.109.36:9901/tsfile/live/0123_1.m3u8
|
||||
四川卫视,http://219.147.3.106:4455/newlive/live/hls/34/live.m3u8
|
||||
四川卫视,http://php.jdshipin.com:8880/bst.php?id=scwshd8m/8000000
|
||||
深圳卫视,http://219.147.3.106:4455/newlive/live/hls/25/live.m3u8
|
||||
深圳卫视,http://58.220.219.14:9901/tsfile/live/0126_1.m3u8?key=txiptv
|
||||
深圳卫视,http://111.75.151.236:50085/newlive/live/hls/26/live.m3u8
|
||||
深圳卫视,http://115.149.139.141:10001/tsfile/live/1032_1.m3u8
|
||||
深圳卫视,http://222.240.82.92:9901/tsfile/live/0126_1.m3u8
|
||||
深圳卫视,http://gmxw.7766.org:808/hls/45/index.m3u8
|
||||
深圳卫视,http://218.13.170.98:9901/tsfile/live/1005_1.m3u8
|
||||
深圳卫视,http://125.210.152.19:9123/live/hzgq-szwsgq-h264.m3u8
|
||||
深圳卫视,http://gmxw.7766.org:808/hls/45/index.m3u8
|
||||
深圳卫视,http://115.149.139.141:10001/tsfile/live/1032_1.m3u8
|
||||
深圳卫视,http://113.57.109.36:9901/tsfile/live/0126_1.m3u8
|
||||
深圳卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226205/1.m3u8
|
||||
深圳卫视,http://61.182.33.218:8000/hls/21/index.m3u8
|
||||
深圳卫视,http://222.240.82.92:9901/tsfile/live/0126_1.m3u8
|
||||
深圳卫视,http://php.jdshipin.com:8880/bst.php?id=szwshd/4000000
|
||||
三沙卫视,http://61.138.128.226:19901/tsfile/live/1020_1.m3u8
|
||||
三沙卫视,http://125.210.152.19:9123/live/hzgq-ssws-h264.m3u8
|
||||
三沙卫视,https://pullsstv90080111.ssws.tv/live/SSTV20220729.m3u8
|
||||
天津卫视,http://125.210.152.19:9123/live/hzgq-tjwsgq-h264.m3u8
|
||||
三沙卫视,https://cntv.lat/tv/live.php?auth=231110&id=ssws
|
||||
天津卫视,http://218.13.170.98:9901/tsfile/live/1008_1.m3u8
|
||||
天津卫视,http://111.75.151.236:50085/newlive/live/hls/28/live.m3u8
|
||||
天津卫视,http://113.57.109.36:9901/tsfile/live/0135_1.m3u8
|
||||
天津卫视,http://125.210.152.19:9123/live/hzgq-tjwsgq-h264.m3u8
|
||||
天津卫视,http://61.182.33.218:8000/hls/20/index.m3u8
|
||||
天津卫视,http://219.147.3.106:4455/newlive/live/hls/22/live.m3u8
|
||||
天津卫视,http://218.13.170.98:9901/tsfile/live/1008_1.m3u8
|
||||
天津卫视,http://php.jdshipin.com:8880/bst.php?id=tjwshd/4000000
|
||||
西藏卫视,http://111.75.151.236:50085/newlive/live/hls/36/live.m3u8
|
||||
西藏卫视,http://gmxw.7766.org:808/hls/64/index.m3u8
|
||||
西藏卫视,http://218.13.170.98:9901/tsfile/live/0111_1.m3u8
|
||||
西藏卫视,http://125.210.152.19:9123/live/hszx-xztv-h264.m3u8
|
||||
西藏卫视,http://58.220.219.14:9901/tsfile/live/0120_5.m3u8?key=txiptv
|
||||
西藏卫视,http://219.147.3.106:4455/newlive/live/hls/46/live.m3u8
|
||||
西藏卫视,http://113.12.72.152:9901/tsfile/live/1035_1.m3u8
|
||||
西藏卫视,http://gmxw.7766.org:808/hls/64/index.m3u8
|
||||
西藏卫视,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226212/index.m3u8
|
||||
西藏卫视,http://api2.52tb.xyz/info?id=52&token=20230326xflvzc
|
||||
西藏卫视,http://219.147.3.106:4455/newlive/live/hls/46/live.m3u8
|
||||
西藏卫视,http://223.109.210.41/4309-tx.otvstream.otvcloud.com/otv/skcc/live/channel66/index.m3u8
|
||||
西藏卫视,http://api2.52tb.xyz/info?id=52&token=20230326xflvzc
|
||||
西藏卫视,http://58.220.219.14:9901/tsfile/live/0120_5.m3u8?key=txiptv
|
||||
西藏卫视,http://113.12.72.152:9901/tsfile/live/1035_1.m3u8
|
||||
西藏卫视,http://php.jdshipin.com:8880/bst.php?id=xzws/1300000
|
||||
西藏卫视,https://cntv.lat/tv/live.php?auth=231110&id=xzws
|
||||
新疆卫视,http://111.75.151.236:50085/newlive/live/hls/49/live.m3u8
|
||||
新疆卫视,http://gmxw.7766.org:808/hls/65/index.m3u8
|
||||
新疆卫视,http://218.13.170.98:9901/tsfile/live/0110_1.m3u8
|
||||
新疆卫视,http://113.12.72.152:9901/tsfile/live/1036_1.m3u8
|
||||
新疆卫视,http://125.210.152.19:9123/live/hszx-xjtv-h264.m3u8
|
||||
新疆卫视,http://58.220.219.14:9901/tsfile/live/0120_6.m3u8?key=txiptv
|
||||
新疆卫视,http://39.134.24.165/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225747/1.m3u8
|
||||
新疆卫视,http://219.147.3.106:4455/newlive/live/hls/45/live.m3u8
|
||||
新疆卫视,http://106.124.91.222:9901/tsfile/live/21212_1.m3u8
|
||||
新疆卫视,http://223.109.210.41/4309-tx.otvstream.otvcloud.com/otv/skcc/live/channel64/index.m3u8
|
||||
新疆卫视,http://api2.52tb.xyz/info?id=51&token=20230326xflvzc
|
||||
新疆卫视,http://58.220.219.14:9901/tsfile/live/0120_6.m3u8?key=txiptv
|
||||
新疆卫视,https://cntv.lat/tv/live.php?auth=231110&id=xjws
|
||||
新疆卫视,http://106.124.91.222:9901/tsfile/live/21212_1.m3u8
|
||||
新疆卫视,http://gmxw.7766.org:808/hls/65/index.m3u8
|
||||
新疆卫视,http://223.109.210.41/4309-tx.otvstream.otvcloud.com/otv/skcc/live/channel64/index.m3u8
|
||||
新疆卫视,http://php.jdshipin.com:8880/bst.php?id=xjws/1300000
|
||||
新疆卫视,http://218.13.170.98:9901/tsfile/live/0110_1.m3u8
|
||||
云南卫视,http://125.210.152.19:9123/live/hzgq-ynwsgq-h264.m3u8
|
||||
云南卫视,http://tvlive.ynradio.com/live/yunnanweishi/chunks.m3u8
|
||||
云南卫视,http://219.147.3.106:4455/newlive/live/hls/40/live.m3u8
|
||||
云南卫视,http://gmxw.7766.org:808/hls/52/index.m3u8
|
||||
云南卫视,http://111.75.151.236:50085/newlive/live/hls/34/live.m3u8
|
||||
云南卫视,http://113.57.109.36:9901/tsfile/live/0119_1.m3u8
|
||||
云南卫视,http://223.109.210.41/1301-tx.otvstream.otvcloud.com/otv/skcc/live/channel61/index.m3u8
|
||||
云南卫视,http://angtv.cc/test/lngd.php?id=482
|
||||
云南卫视,http://angtv.cc/jd/gdlz.php?id=ynws
|
||||
云南卫视,http://58.220.219.14:9901/tsfile/live/0119_1.m3u8?key=txiptv
|
||||
云南卫视,http://angtv.cc/test/lngd.php?id=482
|
||||
云南卫视,http://fxgm.fxjf.work:19901/tsfile/live/0119_1.m3u8
|
||||
云南卫视,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226063/index.m3u8
|
||||
云南卫视,https://cntv.lat/tv/live.php?auth=231110&id=ynws
|
||||
云南卫视,http://58.220.219.14:9901/tsfile/live/0119_1.m3u8?key=txiptv
|
||||
云南卫视,http://php.jdshipin.com:8880/bst.php?id=ynwshd8m/8000000
|
||||
|
||||
港·澳·台,#genre#
|
||||
翡翠台,http://qwas.eatuo.com:9901/tsfile/live/1013_1.m3u8
|
||||
翡翠台,http://tvdrs.wsrtv.com.cn:8100/channellive/ch1.flv
|
||||
翡翠台,http://198.16.100.90:8278/jade_twn/playlist.m3u8?tid=MDAD1890217018902170&ct=19249&tsum=36346362d72a1e85802fa5d3eee3861c
|
||||
翡翠台,http://198.16.100.90:8278/jade_twn/playlist.m3u8?tid=ME6E1330319113303191&ct=19225&tsum=d76985c4965fd63807e131035f66af09
|
||||
翡翠台,https://cloudfront41.lexanetwork.com:1344/relay01/livestream002.sdp/playlist.m3u8
|
||||
翡翠台,http://ali.hlspull.yximgs.com/live/twlivefhwwzpthzyztzzzxcxbfhzzfzvhdtzdvbtvzszxzfszzcvbctvbfc.flv
|
||||
翡翠台,http://210.210.155.37/dr9445/h/h20/index.m3u8
|
||||
翡翠台,https://pi.0472.org/tv/fct.php?auth=2309081833
|
||||
翡翠台,https://pi.0472.org/tv/fct.php?auth=230918
|
||||
翡翠台,http://xjayrf.eatuo.com:9901/tsfile/live/1004_1.m3u8
|
||||
翡翠台,http://r.jdshipin.com/qClQf
|
||||
翡翠台,http://ali.hlspull.yximgs.com/live/twlivefhwwzpthzyztzzzxcxbfhzzfzvhdtzdvbtvzszxzfszzcvbctvbfc.flv
|
||||
翡翠台,http://r.jdshipin.com/n90gt
|
||||
翡翠台,http://r.jdshipin.com/qrfbg
|
||||
翡翠台,http://r.jdshipin.com/thuYX
|
||||
翡翠台,http://r.jdshipin.com/qClQf
|
||||
纬来体育,http://198.16.100.90:8278/videolandsport/playlist.m3u8?tid=MF0F9609085796090857&ct=19254&tsum=6bf853a68e195475b4892428199568c7
|
||||
纬来体育,http://tianhewan.top/ZIPP.php?url=http://211.72.65.236:8585/.m3u8
|
||||
纬来体育,http://50.7.238.114:8278/videolandsport/playlist.m3u8?tid=MD2D5343800653438006&ct=19234&tsum=1be724fb8246abfedaf2bd088ec98f03
|
||||
纬来体育,https://ktpremium.com:443/M919HR/5577/877061?c=
|
||||
纬来体育,https://ktpremium.com:443/K3939/6757/877061
|
||||
纬来体育,http://198.16.100.90:8278/videolandsport/playlist.m3u8?tid=MA6A1192684511926845&ct=19226&tsum=0b7ca9a61e7371df68108a27dc358c68
|
||||
爱尔达体育,http://50.7.238.114:8278/eltasport2_twn/playlist.m3u8?tid=ME3E4844502848445028&ct=19317&tsum=035fc643389fcb4a6bf124bca1248aab
|
||||
爱尔达体育,http://50.7.238.114:8278/eltasport_twn/playlist.m3u8?tid=MF1F8884668388846683&ct=19249&tsum=b676f636b8ef285596dc6512fc4659d4
|
||||
爱尔达体育,http://198.16.100.90:8278/eltasport2_twn/playlist.m3u8?tid=MCDC5093685750936857&ct=19225&tsum=592e009b281ea2abc43b21768cb1bec0
|
||||
爱尔达体育,http://198.16.100.90:8278/eltasport_twn/playlist.m3u8?tid=md3567b35401611916221&ct=17874&tsum=be2a069324faa7f0737ca0d396d43745
|
||||
爱尔达体育,http://198.16.100.90:8278/eltasport_twn/playlist.m3u8?tid=MF1F8884668388846683&ct=19249&tsum=b676f636b8ef285596dc6512fc4659d4
|
||||
爱尔达体育,http://50.7.238.114:8278/eltasport_twn/playlist.m3u8?tid=MF1F8884668388846683&ct=19249&tsum=b676f636b8ef285596dc6512fc4659d4
|
||||
爱尔达体育,http://50.7.238.114:8278/eltasport_twn/playlist.m3u8?tid=md3567b35401611916221&ct=17874&tsum=be2a069324faa7f0737ca0d396d43745
|
||||
爱尔达体育,https://ktpremium.com:443/M919HR/5577/879250?c=
|
||||
爱尔达体育,https://ktpremium.com:443/K3939/6757/879252
|
||||
爱尔达体育,https://ktpremium.com:443/M919HR/5577/879251?c=
|
||||
爱尔达体育,https://ktpremium.com:443/K3939/6757/879250
|
||||
爱尔达体育,https://ktpremium.com:443/K3939/6757/879252
|
||||
爱尔达体育,https://ktpremium.com:443/K3939/6757/879251
|
||||
爱尔达体育,http://50.7.238.114:8278/eltasport_twn/playlist.m3u8?tid=md3567b35401611916221&ct=17874&tsum=be2a069324faa7f0737ca0d396d43745
|
||||
ELEVEN体育,http://50.7.238.114:8278/golfchannel_twn/playlist.m3u8?tid=m43df9270caf7&ct=18335&tsum=3bcc02e810e7073b86bb40d392e95f23
|
||||
ELEVEN体育,http://50.7.238.114:8278/golfchannel_twn/playlist.m3u8?tid=MFBF2798068027980680&ct=18393&tsum=d8204023f67120512c75a8882f121120
|
||||
ELEVEN体育,https://ktpremium.com:443/M919HR/5577/910890?c=
|
||||
ELEVEN体育,https://ktpremium.com:443/K3939/6757/910889
|
||||
ELEVEN体育,https://ktpremium.com:443/K3939/6757/910890
|
||||
ELEVEN体育,https://ktpremium.com:443/M919HR/5577/910889?c=
|
||||
ELEVEN体育,https://ktpremium.com:443/K3939/6757/910889
|
||||
ELEVEN体育,https://ktpremium.com:443/M919HR/5577/910890?c=
|
||||
ELEVEN体育,http://50.7.238.114:8278/golfchannel_twn/playlist.m3u8?tid=MFBF2798068027980680&ct=18393&tsum=d8204023f67120512c75a8882f121120
|
||||
明珠台,http://xjayrf.eatuo.com:9901/tsfile/live/1005_1.m3u8
|
||||
明珠台,http://nz189l149.bb27109.ctm.net:8892/bysid/2
|
||||
明珠台,http://ali.hlspull.yximgs.com/live/twlivetcfzhvdzzxcodwoetzmncthvbstyreyhbnnvbdzzwthzyztvbmz.flv
|
||||
明珠台,http://r.jdshipin.com/ZQ4kN
|
||||
明珠台,http://zw9999.cnstream.top:80/play/ubI0Nrlni6TwusjXuSxNxEzv3SLBhKEUmYG73triGDY/ts
|
||||
明珠台,https://pi.0472.org/tv/mzt.php?auth=2309081833
|
||||
明珠台,https://pi.0472.org/tv/mzt.php?auth=230918
|
||||
星河台,http://v2h.jdshipin.com/xinghe/xinghe.stream/chunklist.m3u8
|
||||
明珠台,https://pi.0472.org/tv/mzt.php?auth=2309081833
|
||||
星河台,https://edge6a.v2h-cdn.com/xinghe/xinghe.stream/chunklist.m3u8
|
||||
星河台,http://v2h.jdshipin.com/xinghe/xinghe.stream/chunklist.m3u8
|
||||
星河台,http://ali.hlspull.yximgs.com/live/twlivezzmzptvzszzwxnhzzwzztzzztyfzszzszcfzxfzwmxzdtvbxh.flv
|
||||
星河台,http://198.16.100.90:8278/tvbxinhe_twn/playlist.m3u8?tid=ME2E8352893183528931&ct=19225&tsum=5f852c878e02000708a055c6b08a9405
|
||||
星河台,http://r.jdshipin.com/sXuuD
|
||||
凤凰中文,https://play-flive.ifeng.com/live/06OLEGEGM4G.m3u8
|
||||
凤凰中文,https://play-flive.ifeng.com/live/06OLEGEGM4G.flv
|
||||
凤凰中文,https://edge2.laotv.la/live/PhxChinese/index.m3u8
|
||||
凤凰中文,https://play-flive.ifeng.com/live/06OLEGEGM4G.m3u8
|
||||
凤凰中文,http://198.16.100.90:8278/phoenixtv_hd/playlist.m3u8?tid=MFBF2713938527139385&ct=19225&tsum=1c8ca0899277714ab83db57245220068
|
||||
凤凰中文,http://210.210.155.37/uq2663/h/h157/index2.m3u8
|
||||
凤凰中文,https://edge2.laotv.la/live/PhxChinese/index.m3u8
|
||||
凤凰中文,http://210.210.155.37/uq2663/h/h157/index2.m3u8?app_type=web&userid=50n13N0v14nd1&tkn=829341hrjhaq0q30q&chname=Phoenix_Chinese
|
||||
凤凰中文,http://210.210.155.37/uq2663/h/h157/index2.m3u8
|
||||
凤凰中文,http://171.223.215.229:4000/udp/239.93.0.162:2192
|
||||
凤凰中文,http://playtv-live.ifeng.com:80/live/06OLEGEGM4G.m3u8
|
||||
凤凰中文,http://pi.0472.org/tv/cbn.php?id=xfjcHD
|
||||
凤凰中文,http://ali.hlspull.yximgs.com/live/fa7cdfad1a5aaf8370eb7887844fh.flv
|
||||
凤凰中文,http://playtv-live.ifeng.com/live/06OLEGEGM4G_audio.m3u8
|
||||
凤凰中文,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226308/index.m3u8
|
||||
凤凰中文,https://playtv-live.ifeng.com/live/06OLEGEGM4G.m3u8
|
||||
凤凰资讯,https://play-flive.ifeng.com/live/06OLEEWQKN4.flv
|
||||
凤凰资讯,https://play-flive.ifeng.com/live/06OLEEWQKN4.m3u8
|
||||
凤凰资讯,http://171.214.224.243:55555/udp/239.93.0.118:2191
|
||||
凤凰资讯,https://play-flive.ifeng.com/live/06OLEEWQKN4.flv
|
||||
凤凰资讯,https://raw.githubusercontent.com/ChiSheng9/iptv/master/TV22.m3u8
|
||||
凤凰资讯,http://50.7.238.114:8278/phoenixinfo_hd/playlist.m3u8?tid=m7f4a830029be&ct=18336&tsum=74f57bddc0725f74838380086dce3e44
|
||||
凤凰资讯,https://edge2.laotv.la/live/PhoenixNews/index.m3u8
|
||||
凤凰资讯,http://ali.hlspull.yximgs.com/live/huanqiuhklivetvjjpcpdvuejljyjjyfjoxvchjwhjwojjjhdjjlsjhbjfhjx.flv
|
||||
凤凰资讯,http://playtv-live.ifeng.com/live/06OLEEWQKN4.m3u8
|
||||
凤凰资讯,http://playtv-live.ifeng.com:80/live/06OLEEWQKN4.m3u8
|
||||
凤凰资讯,http://playtv-live.ifeng.com/live/06OLEEWQKN4.m3u8
|
||||
凤凰资讯,http://playtv-live.ifeng.com/live/06OLEEWQKN4_audio.m3u8
|
||||
凤凰资讯,http://223.109.210.41/1301-tx.otvstream.otvcloud.com/otv/skcc/live/channel52002/index.m3u8
|
||||
凤凰资讯,http://210.210.155.37/qwr9ew/s/s21/01.m3u8
|
||||
凤凰资讯,http://playtv-live.ifeng.com:80/live/06OLEEWQKN4.m3u8?zgangd
|
||||
凤凰资讯,http://223.109.210.41/1301-tx.otvstream.otvcloud.com/otv/skcc/live/channel52002/index.m3u8
|
||||
凤凰资讯,http://223.109.210.41/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226320/index.m3u8
|
||||
凤凰资讯,http://r.jdshipin.com/0Rp07
|
||||
凤凰资讯,http://210.210.155.35:80/qwr9ew/s/s21/01.m3u8
|
||||
凤凰香港,http://113.64.145.61:8081/hls/38/index.m3u8
|
||||
凤凰香港,http://50.7.238.114:8278/hkphoenix_twn/playlist.m3u8?tid=MD0D2495250724952507&ct=19249&tsum=b1c0a577a7f4aaa9af143d124ba24a40
|
||||
凤凰香港,http://50.7.238.114:8278/hkphoenix_twn/playlist.m3u8?tid=MACA2858291128582911&ct=19225&tsum=0f01288bbaa6c0403d07e96b0a5db4ed
|
||||
凤凰香港,http://50.7.238.114:8278/hkphoenix_twn/playlist.m3u8?tid=MA5A4571836345718363&ct=19234&tsum=9d461ede3a5ecfa182b75574f86ae56a
|
||||
凤凰香港,https://ktpremium.com:443/M919HR/5577/492400?c=
|
||||
凤凰香港,http://50.7.238.114:8278/hkphoenix_twn/playlist.m3u8?tid=MD0D2495250724952507&ct=19249&tsum=b1c0a577a7f4aaa9af143d124ba24a40
|
||||
凤凰香港,http://198.16.100.90:8278/hkphoenix_twn/playlist.m3u8?tid=MD0D2495250724952507&ct=19249&tsum=b1c0a577a7f4aaa9af143d124ba24a40
|
||||
凤凰香港,http://50.7.238.114:8278/hkphoenix_twn/playlist.m3u8?tid=MACA2858291128582911&ct=19225&tsum=0f01288bbaa6c0403d07e96b0a5db4ed
|
||||
凤凰香港,https://ktpremium.com:443/K3939/6757/492400
|
||||
凤凰香港,https://ktpremium.com:443/M919HR/5577/492400?c=
|
||||
TVBS亚洲,http://38.64.72.148/hls/modn/list/4005/playlist.m3u8
|
||||
TVBS亚洲,http://38.64.72.148:80/hls/modn/list/4005/chunklist1.m3u8
|
||||
TVBS亚洲,http://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_5.m3u8?zshijd
|
||||
TVBS亚洲,http://38.64.72.148:80/hls/modn/list/4005/playlist.m3u8
|
||||
TVBS亚洲,http://38.64.72.148/hls/modn/list/4005/chunklist1.m3u8
|
||||
TVBS亚洲,http://38.64.72.148:80/hls/modn/list/4005/playlist.m3u8?$1920x1080
|
||||
TVBS亚洲,http://38.64.72.148/hls/modn/list/4005/chunklist0.m3u8
|
||||
TVBS亚洲,http://38.64.72.148:80/hls/modn/list/4005/chunklist0.m3u8
|
||||
TVBS亚洲,http://38.64.72.148/hls/modn/list/4005/chunklist0.m3u8
|
||||
TVBS亚洲,http://38.64.72.148/hls/modn/list/4005/chunklist1.m3u8?$1920x1080
|
||||
TVBS亚洲,http://38.64.72.148:80/hls/modn/list/4005/playlist.m3u8?$1920x1080
|
||||
TVBS亚洲,http://38.64.72.148:80/hls/modn/list/4005/playlist.m3u8
|
||||
TVBS新闻,http://198.16.100.90:8278/tvbs_n/playlist.m3u8?tid=MECE3233774032337740&ct=19225&tsum=47a22a993d8e9b29582dfde5631c78b0
|
||||
TVBS新闻,http://ali.hlspull.yximgs.com/live/huanqiuhklivejojwhjxojhjjjlfhjljsjcnxjfvbhjdjwjfjjdsswvtvbsxw.flv
|
||||
TVBS新闻,http://ali.hlspull.yximgs.com/live/twlivezozwhzxozhzzzlfhzlzszcnxzfvbhzdzwzfzzdsswvtvbsxw.flv
|
||||
TVBS新闻,http://awei.beimua.com/iptv.php?id=54
|
||||
TVBS新闻,https://fsv4.yj011.net/sat/tv551.flv
|
||||
TVBS新闻,http://tianhewan.top/ZIPP.php?url=http://211.72.65.236:8574/.m3u8
|
||||
TVBS欢乐,http://50.7.238.114:8278/tvbshuanle_twn/playlist.m3u8?tid=MBCB7220883472208834&ct=19234&tsum=82bece8e29754b899ffb60e5246dfc74
|
||||
TVBS欢乐,http://tianhewan.top/ZIPP.php?url=http://211.72.65.236:8532/.m3u8
|
||||
TVBS欢乐,http://50.7.238.114:8278/tvbshuanle_twn/playlist.m3u8?tid=MA5A9262292692622926&ct=19254&tsum=cd369d68a5d2c1a2fa04df748cda142c
|
||||
TVBS欢乐,http://50.7.238.114:8278/tvbshuanle_twn/playlist.m3u8?ct=19193&tid=MC8C2318787923187879&tsum=394d2b9af3df7846e2cdc60d69dd4219
|
||||
TVBS欢乐,http://198.16.100.90:8278/tvbshuanle_twn/playlist.m3u8?tid=MA5A9262292692622926&ct=19254&tsum=cd369d68a5d2c1a2fa04df748cda142c
|
||||
TVBS欢乐,https://fsv4.yj011.net/sat/tv421.flv
|
||||
|
||||
TVBS欢乐,https://fsv4.yj011.net/sat/tv421.flv
|
25
utils.py
25
utils.py
@ -31,12 +31,15 @@ def getChannelItems():
|
||||
channels = {}
|
||||
current_category = ""
|
||||
pattern = r"^(.*?),(?!#genre#)(.*?)$"
|
||||
# total_channels = 0
|
||||
# max_channels = 200
|
||||
total_channels = 0
|
||||
max_channels = 150
|
||||
|
||||
for line in lines:
|
||||
# if total_channels >= max_channels:
|
||||
# break
|
||||
if (
|
||||
total_channels >= max_channels
|
||||
and os.environ.get("GITHUB_ACTIONS") == "true"
|
||||
):
|
||||
break
|
||||
line = line.strip()
|
||||
if "#genre#" in line:
|
||||
# This is a new channel, create a new key in the dictionary.
|
||||
@ -48,7 +51,7 @@ def getChannelItems():
|
||||
if match:
|
||||
if match.group(1) not in channels[current_category]:
|
||||
channels[current_category][match.group(1)] = [match.group(2)]
|
||||
# total_channels += 1
|
||||
total_channels += 1
|
||||
else:
|
||||
channels[current_category][match.group(1)].append(
|
||||
match.group(2)
|
||||
@ -262,3 +265,15 @@ def filterUrlsByPatterns(urls):
|
||||
urls = [url for url in urls if checkByDomainBlacklist(url)]
|
||||
urls = [url for url in urls if checkByURLKeywordsBlacklist(url)]
|
||||
return urls
|
||||
|
||||
|
||||
async def checkUrlAccessible(url):
|
||||
"""
|
||||
Check if the url is accessible
|
||||
"""
|
||||
async with aiohttp.ClientSession() as session:
|
||||
try:
|
||||
async with session.get(url, timeout=30) as response:
|
||||
return response.status == 200
|
||||
except:
|
||||
return False
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
"version": "1.0.5"
|
||||
"version": "1.0.6"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user