├── .github └── workflows │ └── main.yml ├── LICENSE ├── README.md ├── __pycache__ └── config.cpython-310.pyc ├── config.py ├── demo.txt ├── function.log ├── image ├── 1. ├── Screenshot_2024-07-24-21-17-42-164_com.fongmi.android.tv.jpg └── Screenshot_2024-07-24-21-20-39-458_com.github.tvbox.osc.tk.jpg ├── live.m3u ├── live.txt ├── main.py └── 直播 ├── ipv6.txt └── 央视频道.txt /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: Daily Update 2 | 3 | on: 4 | schedule: 5 | - cron: '45 21 * * *' 6 | workflow_dispatch: 7 | branches: 8 | - main 9 | 10 | jobs: 11 | run_script: 12 | runs-on: ubuntu-latest 13 | 14 | steps: 15 | - name: Checkout repository 16 | uses: actions/checkout@v2 17 | 18 | - name: Set up Python 19 | uses: actions/setup-python@v2 20 | with: 21 | python-version: '3.10' 22 | 23 | - name: Cache dependencies 24 | uses: actions/cache@v2 25 | with: 26 | path: ~/.cache/pip 27 | key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} 28 | restore-keys: | 29 | ${{ runner.os }}-pip- 30 | 31 | - name: Install dependencies 32 | run: | 33 | pip install requests 34 | 35 | - name: Run Python script 36 | run: python main.py 37 | 38 | - name: Commit and push if changed 39 | run: | 40 | git config --local user.email "github-actions[bot]@users.noreply.github.com" 41 | git config --local user.name "github-actions[bot]" 42 | git add -A 43 | if ! git diff --staged --quiet; then 44 | git commit -m "Auto-update live files" 45 | git push 46 | fi 47 | 48 | env: 49 | TZ: Asia/Shanghai 50 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # IPTV 2 | 此项目通过其它直播源抓取集成一个总直播源,直播内容通过demo自定义进行运行爬取。每天自动更新直播,提供在线地址,可以直接使用各大播放平台。M3U配置peg和台标,支持IPV6/4双栈访问! 3 | > 声明: 所有播放源均收集于互联网,仅供测试研究学习,`不得商用!` 4 | ## TVBox 5 | - 导航: ```https://yuanzl77.github.io``` 6 | - 极速2G2H: http://175.178.251.183:6689/tv.txt 7 | > 不了解TVBox,请自行了解(b站有教学) 8 | ## 直播源调用地址 9 | - 国内M3U [每三日更新](http://175.178.251.183:6689/live.m3u) 10 | - 国内TXT [每三日更新](http://175.178.251.183:6689/live.txt) 11 | - 仓库文件加速 [线路1](https://gh.con.sh/https://raw.githubusercontent.com/yuanzl77/IPTV/main/live.m3u) 12 | - 仓库文件加速 [线路2](https://cdn.jsdelivr.net/gh/yuanzl77/IPTV@latest/live.m3u) 13 | 14 | # 15 | ![image](/image/Screenshot_2024-07-24-21-20-39-458_com.github.tvbox.osc.tk.jpg) 16 | [video](https://youtu.be/HMjiSJHXD8Y?si=yb8FuoG9mR2aLoQW) 17 | 18 | ## IPV6优势 19 | 1. 更低的延迟: IPv6协议在一些方面能提供更低的延迟,这对于实时视频流的播放体验很重要,可以减少视频缓冲和加载时间。 20 | 2. 更好的多媒体支持: IPv6为多媒体内容提供更好的支持,这包括更好的多播和组播支持,可以更有效地传输视频内容。 21 | 3. 更好的质量和稳定性: 由于IPv6在设计上更加现代化和健壮,因此在传输视频内容时可能会提供更好的质量和稳定性,减少了因为地址转换等问题而导致的连接中断或者性能下降。 22 | > 查看当前网络是否支持IPV6 [IP](https://ipw.cn) 23 | 24 | # 感谢您的支持与打赏 25 | ![打赏图](https://raw.githubusercontent.com/yuanzl77/zafu/main/打赏码.png) 26 | **您的打赏不仅是对我的肯定,更是我前进的动力,感谢您的支持!** 27 | 28 | ## Star History 29 | [![Stargazers over time](https://starchart.cc/yuanzl77/IPTV.svg?variant=adaptive)](https://starchart.cc/yuanzl77/IPTV) 30 | -------------------------------------------------------------------------------- /__pycache__/config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanzl77/IPTV/6606e6ba8d5a8dfd60d953d10929d99ad15f96a1/__pycache__/config.cpython-310.pyc -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- 1 | ip_version_priority = "ipv6" 2 | 3 | source_urls = [ 4 | "http://175.178.251.183:6689/aktvlive.txt", 5 | "https://live.fanmingming.com/tv/m3u/ipv6.m3u", 6 | "https://raw.githubusercontent.com/yuanzl77/IPTV/main/直播/央视频道.txt", 7 | "http://120.79.4.185/new/mdlive.txt", 8 | "https://raw.githubusercontent.com/Fairy8o/IPTV/main/PDX-V4.txt", 9 | "https://raw.githubusercontent.com/Fairy8o/IPTV/main/PDX-V6.txt", 10 | "https://live.zhoujie218.top/tv/iptv6.txt", 11 | "https://live.zhoujie218.top/tv/iptv4.txt", 12 | "https://www.mytvsuper.xyz/m3u/Live.m3u", 13 | "https://tv.youdu.fan:666/live/", 14 | "http://ww.weidonglong.com/dsj.txt", 15 | "http://xhztv.top/zbc.txt", 16 | "https://raw.githubusercontent.com/qingwen07/awesome-iptv/main/tvbox_live_all.txt", 17 | "https://raw.githubusercontent.com/Guovin/TV/gd/output/result.txt", 18 | "http://home.jundie.top:81/Cat/tv/live.txt", 19 | "https://raw.githubusercontent.com/vbskycn/iptv/master/tv/hd.txt", 20 | "https://cdn.jsdelivr.net/gh/YueChan/live@main/IPTV.m3u", 21 | "https://raw.githubusercontent.com/cymz6/AutoIPTV-Hotel/main/lives.txt", 22 | "https://raw.githubusercontent.com/PizazzGY/TVBox_warehouse/main/live.txt", 23 | "https://fm1077.serv00.net/SmartTV.m3u", 24 | "https://raw.githubusercontent.com/ssili126/tv/main/itvlist.txt", 25 | "https://raw.githubusercontent.com/kimwang1978/collect-tv-txt/main/merged_output.txt" 26 | ] 27 | 28 | url_blacklist = [ 29 | "epg.pw/stream/", 30 | "103.40.13.71:12390", 31 | "[2409:8087:1a01:df::4077]/PLTV/", 32 | "8.210.140.75:68", 33 | "154.12.50.54", 34 | "yinhe.live_hls.zte.com", 35 | "8.137.59.151", 36 | "[2409:8087:7000:20:1000::22]:6060", 37 | "histar.zapi.us.kg", 38 | "www.tfiplaytv.vip", 39 | "dp.sxtv.top", 40 | "111.230.30.193", 41 | "148.135.93.213:81", 42 | "live.goodiptv.club", 43 | "iptv.luas.edu.cn", 44 | "[2409:8087:2001:20:2800:0:df6e:eb22]:80", 45 | "[2409:8087:2001:20:2800:0:df6e:eb23]:80", 46 | "[2409:8087:2001:20:2800:0:df6e:eb1d]/ott.mobaibox.com/", 47 | "[2409:8087:2001:20:2800:0:df6e:eb1d]:80", 48 | "[2409:8087:2001:20:2800:0:df6e:eb24]", 49 | "2409:8087:2001:20:2800:0:df6e:eb25]:80", 50 | "[2409:8087:2001:20:2800:0:df6e:eb27]" 51 | ] 52 | 53 | announcements = [ 54 | { 55 | "channel": "公告", 56 | "entries": [ 57 | {"name": "请阅读", "url": "https://liuliuliu.tv/api/channels/1997/stream", "logo": "http://175.178.251.183:6689/LR.jpg"}, 58 | {"name": "yuanzl77.github.io", "url": "https://liuliuliu.tv/api/channels/233/stream", "logo": "http://175.178.251.183:6689/LR.jpg"}, 59 | {"name": "更新日期", "url": "https://gitlab.com/lr77/IPTV/-/raw/main/%E4%B8%BB%E8%A7%92.mp4", "logo": "http://175.178.251.183:6689/LR.jpg"}, 60 | {"name": None, "url": "https://gitlab.com/lr77/IPTV/-/raw/main/%E8%B5%B7%E9%A3%8E%E4%BA%86.mp4", "logo": "http://175.178.251.183:6689/LR.jpg"} 61 | ] 62 | } 63 | ] 64 | 65 | epg_urls = [ 66 | "https://live.fanmingming.com/e.xml", 67 | "http://epg.51zmt.top:8000/e.xml", 68 | "http://epg.aptvapp.com/xml", 69 | "https://epg.pw/xmltv/epg_CN.xml", 70 | "https://epg.pw/xmltv/epg_HK.xml", 71 | "https://epg.pw/xmltv/epg_TW.xml" 72 | ] 73 | -------------------------------------------------------------------------------- /demo.txt: -------------------------------------------------------------------------------- 1 | 央视频道,#genre# 2 | CCTV1, 3 | CCTV2, 4 | CCTV3, 5 | CCTV4, 6 | CCTV5, 7 | CCTV5+, 8 | CCTV6, 9 | CCTV7, 10 | CCTV8, 11 | CCTV9, 12 | CCTV10, 13 | CCTV11, 14 | CCTV12, 15 | CCTV13, 16 | CCTV14, 17 | CCTV15, 18 | CCTV16, 19 | CCTV17, 20 | 21 | 广东频道,#genre# 22 | 广东珠江, 23 | 广东体育, 24 | 广东民生, 25 | 广东少儿, 26 | 广东综艺, 27 | 广东影视, 28 | 经济科教, 29 | 岭南戏曲, 30 | 现代教育, 31 | 大湾区卫视, 32 | 33 | 卫视频道,#genre# 34 | 湖南卫视, 35 | 浙江卫视, 36 | 东方卫视, 37 | 北京卫视, 38 | 江苏卫视, 39 | 安徽卫视, 40 | 重庆卫视, 41 | 四川卫视, 42 | 东南卫视, 43 | 深圳卫视, 44 | 广东卫视, 45 | 广西卫视, 46 | 厦门卫视, 47 | 南方卫视, 48 | 甘肃卫视, 49 | 贵州卫视, 50 | 河北卫视, 51 | 河南卫视, 52 | 黑龙江卫视, 53 | 湖北卫视, 54 | 江西卫视, 55 | 吉林卫视, 56 | 内蒙古卫视, 57 | 辽宁卫视, 58 | 宁夏卫视, 59 | 青海卫视, 60 | 山东卫视, 61 | 天津卫视, 62 | 海南卫视, 63 | 新疆卫视, 64 | 云南卫视, 65 | 西藏卫视, 66 | 海峡卫视, 67 | 兵团卫视, 68 | 黄河卫视, 69 | 安多卫视, 70 | 康巴卫视, 71 | 农林卫视, 72 | 三沙卫视, 73 | 延边卫视, 74 | 75 | 港·澳·台,#genre# 76 | 凤凰中文, 77 | 凤凰资讯, 78 | 凤凰香港, 79 | 凤凰卫视, 80 | 香港卫视, 81 | TVBS欢乐, 82 | TVBS亚洲, 83 | TVBS新闻, 84 | J2, 85 | Viutv, 86 | 翡翠台, 87 | 明珠台, 88 | 三立台湾, 89 | 无线新闻, 90 | 三立新闻, 91 | 纬来体育, 92 | 纬来育乐, 93 | 东森综合, 94 | 东森超视, 95 | 东森电影, 96 | Now剧集, 97 | Now华剧, 98 | 靖天资讯, 99 | 星卫娱乐, 100 | 卫视卡式, 101 | 102 | 少儿频道,#genre# 103 | 东森幼幼, 104 | iFun动漫, 105 | momo亲子, 106 | 黑莓动画, 107 | 嘉佳少儿, 108 | 卡酷少儿, 109 | 动漫秀场, 110 | 哈哈炫动, 111 | 金鹰卡通, 112 | 优漫卡通, 113 | 靖洋卡通, 114 | 115 | 影视频道,#genre# 116 | CHC动作电影, 117 | CHC高清电影, 118 | CHC家庭影院, 119 | NewTV惊悚悬疑, 120 | NewTV动作电影, 121 | 黑莓电影, 122 | 纬来电影, 123 | 靖天映画, 124 | 靖天戏剧, 125 | 星卫娱乐, 126 | 艾尔达娱乐, 127 | -------------------------------------------------------------------------------- /function.log: -------------------------------------------------------------------------------- 1 | 2025-03-03 05:49:48,237 - ERROR - url: http://175.178.251.183:6689/aktvlive.txt 爬取失败❌, Error: HTTPConnectionPool(host='175.178.251.183', port=6689): Max retries exceeded with url: /aktvlive.txt (Caused by ConnectTimeoutError(, 'Connection to 175.178.251.183 timed out. (connect timeout=None)')) 2 | 2025-03-03 05:49:48,343 - INFO - url: https://live.fanmingming.com/tv/m3u/ipv6.m3u 获取成功,判断为m3u格式 3 | 2025-03-03 05:49:48,344 - INFO - url: https://live.fanmingming.com/tv/m3u/ipv6.m3u 爬取成功✅,包含频道分类: 央视频道, 卫视频道, 体验频道, 浙江频道, 内蒙频道 4 | 2025-03-03 05:49:48,355 - INFO - url: https://raw.githubusercontent.com/yuanzl77/IPTV/main/直播/央视频道.txt 获取成功,判断为txt格式 5 | 2025-03-03 05:49:48,356 - INFO - url: https://raw.githubusercontent.com/yuanzl77/IPTV/main/直播/央视频道.txt 爬取成功✅,包含频道分类: 央视频道 6 | 2025-03-03 05:52:03,405 - ERROR - url: http://120.79.4.185/new/mdlive.txt 爬取失败❌, Error: HTTPConnectionPool(host='120.79.4.185', port=80): Max retries exceeded with url: /new/mdlive.txt (Caused by ConnectTimeoutError(, 'Connection to 120.79.4.185 timed out. (connect timeout=None)')) 7 | 2025-03-03 05:52:03,497 - ERROR - url: https://raw.githubusercontent.com/Fairy8o/IPTV/main/PDX-V4.txt 爬取失败❌, Error: 404 Client Error: Not Found for url: https://raw.githubusercontent.com/Fairy8o/IPTV/main/PDX-V4.txt 8 | 2025-03-03 05:52:03,683 - ERROR - url: https://raw.githubusercontent.com/Fairy8o/IPTV/main/PDX-V6.txt 爬取失败❌, Error: 404 Client Error: Not Found for url: https://raw.githubusercontent.com/Fairy8o/IPTV/main/PDX-V6.txt 9 | 2025-03-03 05:52:04,795 - INFO - url: https://live.zhoujie218.top/tv/iptv6.txt 获取成功,判断为txt格式 10 | 2025-03-03 05:52:04,796 - INFO - url: https://live.zhoujie218.top/tv/iptv6.txt 爬取成功✅,包含频道分类: 央视频道, 卫视频道, 电影频道, 儿童频道, 地方频道, 体育频道, 其他频道, 更新时间 11 | 2025-03-03 05:52:06,213 - INFO - url: https://live.zhoujie218.top/tv/iptv4.txt 获取成功,判断为txt格式 12 | 2025-03-03 05:52:06,220 - INFO - url: https://live.zhoujie218.top/tv/iptv4.txt 爬取成功✅,包含频道分类: 央视频道, 卫视频道, 电影频道, 数字频道, 儿童频道, 地方频道, 综艺频道, 纪录频道, 体育频道, 解说频道, 游戏频道, 音乐频道, 戏曲频道, 春晚频道, 直播中国, 其他频道, 更新时间 13 | 2025-03-03 05:52:06,276 - ERROR - url: https://www.mytvsuper.xyz/m3u/Live.m3u 爬取失败❌, Error: HTTPSConnectionPool(host='www.mytvsuper.xyz', port=443): Max retries exceeded with url: /m3u/Live.m3u (Caused by SSLError(SSLCertVerificationError(1, "[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'www.mytvsuper.xyz'. (_ssl.c:1007)"))) 14 | 2025-03-03 05:52:08,140 - INFO - url: https://tv.youdu.fan:666/live/ 获取成功,判断为txt格式 15 | 2025-03-03 05:52:08,165 - INFO - url: https://tv.youdu.fan:666/live/ 爬取成功✅,包含频道分类: 🌹防失联, 📡游山玩水, 📡央视频道, 📡卫视频道, 📡地方频道, 📡V6央视频道, 📡V6卫视频道, 📡儿童频道, 📡港澳台频道, 📡历届春晚, 📡直播中国, 🌏国际频道, 💞电影频道, 💃丨MTV现代, 📛丨MTV怀旧, 📡测试 16 | 2025-03-03 05:52:09,685 - INFO - url: http://ww.weidonglong.com/dsj.txt 获取成功,判断为txt格式 17 | 2025-03-03 05:52:09,685 - INFO - url: http://ww.weidonglong.com/dsj.txt 爬取成功✅,包含频道分类: 本版本停服, 央视, 卫视, 影视, 体育, 👉下载地址 18 | 2025-03-03 05:52:09,854 - INFO - url: http://xhztv.top/zbc.txt 获取成功,判断为txt格式 19 | 2025-03-03 05:52:09,857 - INFO - url: http://xhztv.top/zbc.txt 爬取成功✅,包含频道分类: 新闻频道, 央视, 央视IPv6, 卫视IPv6, 港湾频道, 广东地区, 直播中国, 体育频道, 少儿频道, 电影频道, 影视综合, MTV频道, 历届春晚, ♥聚玩盒子 20 | 2025-03-03 05:52:09,875 - INFO - url: https://raw.githubusercontent.com/qingwen07/awesome-iptv/main/tvbox_live_all.txt 获取成功,判断为txt格式 21 | 2025-03-03 05:52:09,897 - INFO - url: https://raw.githubusercontent.com/qingwen07/awesome-iptv/main/tvbox_live_all.txt 爬取成功✅,包含频道分类: 央视, 新闻, 卫视台, 地方台, 港澳台, 埋堆堆, 影视, 体育, 音乐, 小品, 咪咕, 斗鱼, 少儿, 国外, IPV6, 22 | 2025-03-03 05:52:09,911 - INFO - url: https://raw.githubusercontent.com/Guovin/TV/gd/output/result.txt 获取成功,判断为txt格式 23 | 2025-03-03 05:52:09,914 - INFO - url: https://raw.githubusercontent.com/Guovin/TV/gd/output/result.txt 爬取成功✅,包含频道分类: 🕘️更新时间, 📺央视频道, 💰央视付费频道, 📡卫视频道, ☘️广东频道, ☘️浙江频道, ☘️北京频道, ☘️上海频道, ☘️重庆频道, ☘️江苏频道, ☘️辽宁频道, ☘️湖南频道, ☘️湖北频道, ☘️广西频道, ☘️天津频道, ☘️四川频道, ☘️陕西频道, ☘️福建频道, ☘️海南频道, ☘️河南频道, ☘️河北频道, ☘️贵州频道, ☘️甘肃频道, ☘️新疆频道, ☘️山东频道, ☘️山西频道, ☘️安徽频道, ☘️宁夏频道, ☘️吉林频道, ☘️内蒙古频道, ☘️云南频道, ☘️青海频道, ☘️黑龙江频道, 🌊港·澳·台, 🎬电影频道, 🎥咪咕直播, 🏀体育频道, 🪁动画频道, 🎮游戏频道, 🎵音乐频道, 🏛经典剧场 24 | 2025-03-03 05:52:11,130 - INFO - url: http://home.jundie.top:81/Cat/tv/live.txt 获取成功,判断为txt格式 25 | 2025-03-03 05:52:11,133 - INFO - url: http://home.jundie.top:81/Cat/tv/live.txt 爬取成功✅,包含频道分类: 📺央视频道, 💰央视付费频道, 📡卫视频道, ☘️广东频道, ☘️浙江频道, ☘️北京频道, ☘️上海频道, ☘️重庆频道, ☘️江苏频道, ☘️辽宁频道, ☘️湖南频道, ☘️湖北频道, ☘️广西频道, ☘️天津频道, ☘️四川频道, ☘️陕西频道, ☘️福建频道, ☘️河南频道, ☘️河北频道, ☘️贵州频道, ☘️甘肃频道, ☘️新疆频道, ☘️山东频道, ☘️山西频道, ☘️安徽频道, ☘️宁夏频道, ☘️吉林频道, ☘️云南频道, ☘️青海频道, ☘️黑龙江频道, 🌊港·澳·台, 🎬电影频道, 🎥咪咕直播, 🏀体育频道, 🪁动画频道, 🎮游戏频道, 🎵音乐频道, 🏛经典剧场, 埋堆堆 26 | 2025-03-03 05:52:11,147 - INFO - url: https://raw.githubusercontent.com/vbskycn/iptv/master/tv/hd.txt 获取成功,判断为txt格式 27 | 2025-03-03 05:52:11,156 - INFO - url: https://raw.githubusercontent.com/vbskycn/iptv/master/tv/hd.txt 爬取成功✅,包含频道分类: 央视频道jyd, 江西本地jyd, 卫视频道jyd, 儿童频道jyd, 其他频道jyd, 央视频道jdx, 江西本地jdx, 卫视频道jdx, 电影频道jdx, 体育频道jdx, 儿童频道jdx, 特色频道jdx, 其他频道jdx, 央视频道ip6, 卫视频道ip6, 电影频道ip6, 儿童频道ip6, 地方频道ip6, 体育频道ip6, 其他频道ip6, 更新时间ip6, 央视频道ip4, 卫视频道ip4, 电影频道ip4, 数字频道ip4, 儿童频道ip4, 地方频道ip4, 综艺频道ip4, 纪录频道ip4, 体育频道ip4, 解说频道ip4, 游戏频道ip4, 音乐频道ip4, 戏曲频道ip4, 春晚频道ip4, 直播中国ip4, 其他频道ip4, 更新时间ip4 28 | 2025-03-03 05:52:11,288 - INFO - url: https://cdn.jsdelivr.net/gh/YueChan/live@main/IPTV.m3u 获取成功,判断为m3u格式 29 | 2025-03-03 05:52:11,288 - INFO - url: https://cdn.jsdelivr.net/gh/YueChan/live@main/IPTV.m3u 爬取成功✅,包含频道分类: 央视, 卫视, 地方, 购物 30 | 2025-03-03 05:52:11,298 - INFO - url: https://raw.githubusercontent.com/cymz6/AutoIPTV-Hotel/main/lives.txt 获取成功,判断为txt格式 31 | 2025-03-03 05:52:11,298 - INFO - url: https://raw.githubusercontent.com/cymz6/AutoIPTV-Hotel/main/lives.txt 爬取成功✅,包含频道分类: 央视频道, 卫视频道, 其他频道 32 | 2025-03-03 05:52:11,307 - INFO - url: https://raw.githubusercontent.com/PizazzGY/TVBox_warehouse/main/live.txt 获取成功,判断为txt格式 33 | 2025-03-03 05:52:11,307 - INFO - url: https://raw.githubusercontent.com/PizazzGY/TVBox_warehouse/main/live.txt 爬取成功✅,包含频道分类: 央视 34 | 2025-03-03 05:52:12,496 - INFO - url: https://fm1077.serv00.net/SmartTV.m3u 获取成功,判断为m3u格式 35 | 2025-03-03 05:52:12,497 - INFO - url: https://fm1077.serv00.net/SmartTV.m3u 爬取成功✅,包含频道分类: 臺灣 Taiwan, 馬來西亞 Malaysia, 新加坡 Singapore, 印尼 Indonesia, 香港 Hongkong, 中國 China, 體育 Sports, 印度 Indian, 電影 Movie, 紀錄 Documentary, 新聞 News, 兒童 Kids, 泰國 Thailand, 英國 United Kingdom, 越南 Vietnam, 韓國 Korea, 日本 Japan 36 | 2025-03-03 05:52:12,508 - INFO - url: https://raw.githubusercontent.com/ssili126/tv/main/itvlist.txt 获取成功,判断为txt格式 37 | 2025-03-03 05:52:12,509 - INFO - url: https://raw.githubusercontent.com/ssili126/tv/main/itvlist.txt 爬取成功✅,包含频道分类: 央视频道, 卫视频道, 其他频道 38 | 2025-03-03 05:52:12,527 - INFO - url: https://raw.githubusercontent.com/kimwang1978/collect-tv-txt/main/merged_output.txt 获取成功,判断为txt格式 39 | 2025-03-03 05:52:12,558 - INFO - url: https://raw.githubusercontent.com/kimwang1978/collect-tv-txt/main/merged_output.txt 爬取成功✅,包含频道分类: 更新时间, 🧨2025春晚🧨, 💓专享源🅰️, 💓专享源🅱️, 💓专享央视, 💓专享卫视, 💓港澳台📶, 💓AKTV🚀📶, 💓台湾台📶, 💓电视剧🔁, 💓优质个源, 💓儿童专享, 💓咪咕直播, 🏀SPORTS⚽️, 🍹定制台☕️, 🍹定制P3P☕️, 💓英语频道, 💓4K(Test), 🌐央视频道, 📡卫视频道, 上海频道, 体育频道, 电影频道, 电视剧频道, 明星, 主题片, 港澳台, 国际台, 纪录片, 动画片, 戏曲频道, 综艺频道, 音乐频道, 游戏频道, ☘️湖南频道, ☘️湖北频道, ☘️广东频道, ☘️浙江频道, ☘️山东频道, ☘️江苏频道, ☘️安徽频道, ☘️海南频道, ☘️内蒙频道, ☘️辽宁频道, ☘️陕西频道, ☘️山西频道, ☘️云南频道, ☘️北京频道, ☘️重庆频道, ☘️福建频道, ☘️甘肃频道, ☘️广西频道, ☘️贵州频道, ☘️河北频道, ☘️河南频道, ☘️黑龙江频道, ☘️吉林频道, ☘️江西频道, ☘️宁夏频道, ☘️青海频道, ☘️四川频道, ☘️天津频道, ☘️新疆频道, 解说频道, 春晚, 直播中国, MTV, 收音机频道, ❤️与凤行, ❤️以家人之名 40 | -------------------------------------------------------------------------------- /image/1.: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /image/Screenshot_2024-07-24-21-17-42-164_com.fongmi.android.tv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanzl77/IPTV/6606e6ba8d5a8dfd60d953d10929d99ad15f96a1/image/Screenshot_2024-07-24-21-17-42-164_com.fongmi.android.tv.jpg -------------------------------------------------------------------------------- /image/Screenshot_2024-07-24-21-20-39-458_com.github.tvbox.osc.tk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanzl77/IPTV/6606e6ba8d5a8dfd60d953d10929d99ad15f96a1/image/Screenshot_2024-07-24-21-20-39-458_com.github.tvbox.osc.tk.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | import re 2 | import requests 3 | import logging 4 | from collections import OrderedDict 5 | from datetime import datetime 6 | import config 7 | 8 | logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s', handlers=[logging.FileHandler("function.log", "w", encoding="utf-8"), logging.StreamHandler()]) 9 | 10 | def parse_template(template_file): 11 | template_channels = OrderedDict() 12 | current_category = None 13 | 14 | with open(template_file, "r", encoding="utf-8") as f: 15 | for line in f: 16 | line = line.strip() 17 | if line and not line.startswith("#"): 18 | if "#genre#" in line: 19 | current_category = line.split(",")[0].strip() 20 | template_channels[current_category] = [] 21 | elif current_category: 22 | channel_name = line.split(",")[0].strip() 23 | template_channels[current_category].append(channel_name) 24 | 25 | return template_channels 26 | 27 | def fetch_channels(url): 28 | channels = OrderedDict() 29 | 30 | try: 31 | response = requests.get(url) 32 | response.raise_for_status() 33 | response.encoding = 'utf-8' 34 | lines = response.text.split("\n") 35 | current_category = None 36 | is_m3u = any("#EXTINF" in line for line in lines[:15]) 37 | source_type = "m3u" if is_m3u else "txt" 38 | logging.info(f"url: {url} 获取成功,判断为{source_type}格式") 39 | 40 | if is_m3u: 41 | for line in lines: 42 | line = line.strip() 43 | if line.startswith("#EXTINF"): 44 | match = re.search(r'group-title="(.*?)",(.*)', line) 45 | if match: 46 | current_category = match.group(1).strip() 47 | channel_name = match.group(2).strip() 48 | if current_category not in channels: 49 | channels[current_category] = [] 50 | elif line and not line.startswith("#"): 51 | channel_url = line.strip() 52 | if current_category and channel_name: 53 | channels[current_category].append((channel_name, channel_url)) 54 | else: 55 | for line in lines: 56 | line = line.strip() 57 | if "#genre#" in line: 58 | current_category = line.split(",")[0].strip() 59 | channels[current_category] = [] 60 | elif current_category: 61 | match = re.match(r"^(.*?),(.*?)$", line) 62 | if match: 63 | channel_name = match.group(1).strip() 64 | channel_url = match.group(2).strip() 65 | channels[current_category].append((channel_name, channel_url)) 66 | elif line: 67 | channels[current_category].append((line, '')) 68 | if channels: 69 | categories = ", ".join(channels.keys()) 70 | logging.info(f"url: {url} 爬取成功✅,包含频道分类: {categories}") 71 | except requests.RequestException as e: 72 | logging.error(f"url: {url} 爬取失败❌, Error: {e}") 73 | 74 | return channels 75 | 76 | def match_channels(template_channels, all_channels): 77 | matched_channels = OrderedDict() 78 | 79 | for category, channel_list in template_channels.items(): 80 | matched_channels[category] = OrderedDict() 81 | for channel_name in channel_list: 82 | for online_category, online_channel_list in all_channels.items(): 83 | for online_channel_name, online_channel_url in online_channel_list: 84 | if channel_name == online_channel_name: 85 | matched_channels[category].setdefault(channel_name, []).append(online_channel_url) 86 | 87 | return matched_channels 88 | 89 | def filter_source_urls(template_file): 90 | template_channels = parse_template(template_file) 91 | source_urls = config.source_urls 92 | 93 | all_channels = OrderedDict() 94 | for url in source_urls: 95 | fetched_channels = fetch_channels(url) 96 | for category, channel_list in fetched_channels.items(): 97 | if category in all_channels: 98 | all_channels[category].extend(channel_list) 99 | else: 100 | all_channels[category] = channel_list 101 | 102 | matched_channels = match_channels(template_channels, all_channels) 103 | 104 | return matched_channels, template_channels 105 | 106 | def is_ipv6(url): 107 | return re.match(r'^http:\/\/\[[0-9a-fA-F:]+\]', url) is not None 108 | 109 | def updateChannelUrlsM3U(channels, template_channels): 110 | written_urls = set() 111 | 112 | current_date = datetime.now().strftime("%Y-%m-%d") 113 | for group in config.announcements: 114 | for announcement in group['entries']: 115 | if announcement['name'] is None: 116 | announcement['name'] = current_date 117 | 118 | with open("live.m3u", "w", encoding="utf-8") as f_m3u: 119 | f_m3u.write(f"""#EXTM3U x-tvg-url={",".join(f'"{epg_url}"' for epg_url in config.epg_urls)}\n""") 120 | 121 | with open("live.txt", "w", encoding="utf-8") as f_txt: 122 | for group in config.announcements: 123 | f_txt.write(f"{group['channel']},#genre#\n") 124 | for announcement in group['entries']: 125 | f_m3u.write(f"""#EXTINF:-1 tvg-id="1" tvg-name="{announcement['name']}" tvg-logo="{announcement['logo']}" group-title="{group['channel']}",{announcement['name']}\n""") 126 | f_m3u.write(f"{announcement['url']}\n") 127 | f_txt.write(f"{announcement['name']},{announcement['url']}\n") 128 | 129 | for category, channel_list in template_channels.items(): 130 | f_txt.write(f"{category},#genre#\n") 131 | if category in channels: 132 | for channel_name in channel_list: 133 | if channel_name in channels[category]: 134 | sorted_urls = sorted(channels[category][channel_name], key=lambda url: not is_ipv6(url) if config.ip_version_priority == "ipv6" else is_ipv6(url)) 135 | filtered_urls = [] 136 | for url in sorted_urls: 137 | if url and url not in written_urls and not any(blacklist in url for blacklist in config.url_blacklist): 138 | filtered_urls.append(url) 139 | written_urls.add(url) 140 | 141 | total_urls = len(filtered_urls) 142 | for index, url in enumerate(filtered_urls, start=1): 143 | if is_ipv6(url): 144 | url_suffix = f"$LR•IPV6" if total_urls == 1 else f"$LR•IPV6『线路{index}』" 145 | else: 146 | url_suffix = f"$LR•IPV4" if total_urls == 1 else f"$LR•IPV4『线路{index}』" 147 | if '$' in url: 148 | base_url = url.split('$', 1)[0] 149 | else: 150 | base_url = url 151 | 152 | new_url = f"{base_url}{url_suffix}" 153 | 154 | f_m3u.write(f"#EXTINF:-1 tvg-id=\"{index}\" tvg-name=\"{channel_name}\" tvg-logo=\"https://gcore.jsdelivr.net/gh/yuanzl77/TVlogo@master/png/{channel_name}.png\" group-title=\"{category}\",{channel_name}\n") 155 | f_m3u.write(new_url + "\n") 156 | f_txt.write(f"{channel_name},{new_url}\n") 157 | 158 | f_txt.write("\n") 159 | 160 | if __name__ == "__main__": 161 | template_file = "demo.txt" 162 | channels, template_channels = filter_source_urls(template_file) 163 | updateChannelUrlsM3U(channels, template_channels) 164 | -------------------------------------------------------------------------------- /直播/ipv6.txt: -------------------------------------------------------------------------------- 1 | 央视频道,#genre# 2 | CCTV1,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226559/index.m3u8 3 | CCTV2,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226540/index.m3u8 4 | CCTV3,http://[2409:8087:1a01:df::4077]:80/PLTV/88888888/224/3221225799/index.m3u8 5 | CCTV4,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226428/index.m3u8 6 | CCTV5,http://[2409:8087:1a01:df::4077]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226019/index.m3u8 7 | CCTV5+,http://[2409:8087:1a01:df::4077]:80/PLTV/88888888/224/3221225507/index.m3u8 8 | CCTV6,http://[2409:8087:1a01:df::4077]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226010/index.m3u8 9 | CCTV7,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225733/index.m3u8 10 | CCTV8,http://[2409:8087:1a01:df::4077]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226008/index.m3u8 11 | CCTV9,http://[2409:8087:1a01:df::4077]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225734/index.m3u8 12 | CCTV10,http://[2409:8087:1a01:df::4077]:80/PLTV/88888888/224/3221225677/index.m3u8 13 | CCTV11,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226565/index.m3u8 14 | CCTV12,http://[2409:8087:1a01:df::4077]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225731/index.m3u8 15 | CCTV13,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226537/index.m3u8 16 | CCTV14,http://[2409:8087:1a01:df::4077]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225732/index.m3u8 17 | CCTV15,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226476/index.m3u8 18 | CCTV16,http://[2409:8087:1a01:df::4077]:80/PLTV/88888888/224/3221225893/index.m3u8 19 | CCTV17,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225765/index.m3u8 20 | 21 | 卫视频道,#genre# 22 | 深圳卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226313/index.m3u8 23 | 重庆卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226409/index.m3u8 24 | 广东卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226248/index.m3u8 25 | 北京卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226450/index.m3u8 26 | 湖南卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226307/index.m3u8 27 | 东方卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226345/index.m3u8 28 | 四川卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226338/index.m3u8 29 | 天津卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226459/index.m3u8 30 | 安徽卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226391/index.m3u8 31 | 山东卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226456/index.m3u8 32 | 广西卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226549/index.m3u8 33 | 江苏卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226310/index.m3u8 34 | 江西卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226344/index.m3u8 35 | 河北卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226406/index.m3u8 36 | 河南卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226480/index.m3u8 37 | 浙江卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226339/index.m3u8 38 | 海南卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226465/index.m3u8 39 | 湖北卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226477/index.m3u8 40 | 山西卫视,http://[2409:8087:5e01:34::21]:6610/ZTE_CMS/00000001000000060000000000000318/index.m3u8?IAS 41 | 东南卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226341/index.m3u8 42 | 贵州卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226474/index.m3u8 43 | 辽宁卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226546/index.m3u8 44 | 黑龙江卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226327/index.m3u8 45 | 内蒙古卫视,http://[2409:8087:5e01:34::20]:6610/ZTE_CMS/00000001000000060000000000000319/index.m3u8?IAS 46 | 宁夏卫视,http://[2409:8087:5e01:34::20]:6610/ZTE_CMS/00000001000000060000000000000309/index.m3u8?IAS 47 | 陕西卫视,http://[2409:8087:5e01:34::22]:6610/ZTE_CMS/00000001000000060000000000000313/index.m3u8?IAS 48 | 甘肃卫视,http://[2409:8087:1a0b:df::4005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225633/index.m3u8 49 | 吉林卫视,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226397/index.m3u8 50 | 云南卫视,http://[2409:8087:5e01:34::22]:6610/ZTE_CMS/00000001000000060000000000000305/index.m3u8?IAS 51 | 三沙卫视,http://[2409:8087:5e01:34::21]:6610/ZTE_CMS/08984400000000060000000000000319/index.m3u8?IAS 52 | 青海卫视,http://[2409:8087:1a0b:df::4002]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225628/index.m3u8 53 | 新疆卫视,http://[2409:8087:1a0b:df::4005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225635/index.m3u8 54 | 西藏卫视,http://[2409:8087:5e01:34::23]:6610/ZTE_CMS/00000001000000060000000000000317/index.m3u8?IAS 55 | 兵团卫视,http://[2409:8087:1a0b:df::4020]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226439/index.m3u8 56 | 延边卫视,http://[2409:8087:1a0b:df::4020]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226516/index.m3u8 57 | 大湾区卫视,http://[2409:8087:1a0b:df::4020]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226442/index.m3u8 58 | 安多卫视,http://[2409:8087:1a0b:df::4007]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225659/index.m3u8 59 | 厦门卫视,http://[2409:8087:5e01:34::22]:6610/ZTE_CMS/00000001000000060000000000000193/index.m3u8?IAS 60 | 康巴卫视,http://[2409:8087:1a0b:df::4005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225660/index.m3u8 61 | 62 | 数字频道,#genre# 63 | CHC高清电影,http://[2409:8087:4c0a:22:1::11]:6410/170000001115/UmaiCHAN6380764b172c9/index.m3u8?AuthInfo=9kOOdBn7MFF%2F2bWjKgahUTrwI%2B%2BngB0lPRofcD8hTNS8qWmEGeaUedzcFVVumqf9cm8lJoOcrIZueLbqOJTuoPV%2FwBk6CoHYGFV14SkLW04 64 | CHC家庭影院,http://[2409:8087:4c0a:22:1::11]:6410/170000001115/UmaiCHAN63807601b19dd/index.m3u8?AuthInfo=9kOOdBn7MFF%2F2bWjKgahUTrwI%2B%2BngB0lPRofcD8hTNRxu2SqX2RKsLT0S7AyQ8XopIVrD6IJGxdajeuKy4iZqZ4tkZuiEpwSRPszF6PIvg4 65 | CHC动作电影,http://[2409:8087:4c0a:22:1::11]:6410/170000001115/UmaiCHAN6380763222d00/index.m3u8?AuthInfo=9kOOdBn7MFF%2F2bWjKgahUTrwI%2B%2BngB0lPRofcD8hTNSXQZMUEnZPBI3Y%2BI8ABE4PJC%2B6OvlZZw5ubC%2FbrIdxFJJY1CcAGU%2BYDDQV9oJ%2FVqQ 66 | 乐游频道,http://[2409:8087:5e08:24::12]:6610/000000001000/2000000002000000092/index.m3u8?stbId=3&livemode=1&HlsProfileId=&channel-id=hnbblive&Contentid=2000000002000000092&IASHttpSessionId=OTT19019320240419154124000281&yang-1989 67 | 欢笑剧场,http://[2409:8087:5e08:24::12]:6610/000000001000/2000000002000000016/index.m3u8?stbId=3&livemode=1&HlsProfileId=&channel-id=hnbblive&Contentid=2000000002000000016&IASHttpSessionId=OTT19019320240419154124000281&yang-1989 68 | 法治天地,http://[2409:8087:5e08:24::12]:6610/000000001000/2000000002000000014/index.m3u8?stbId=3&livemode=1&HlsProfileId=&channel-id=hnbblive&Contentid=2000000002000000014&IASHttpSessionId=OTT19019320240419154124000281&yang-1989 69 | 七彩戏剧,http://[2409:8087:5e08:24::12]:6610/000000001000/2000000002000000010/index.m3u8?stbId=3&livemode=1&HlsProfileId=&channel-id=hnbblive&Contentid=2000000002000000010&IASHttpSessionId=OTT19019320240419154124000281&yang-1989 70 | 动漫秀场,http://[2409:8087:5e08:24::12]:6610/000000001000/2000000002000000009/index.m3u8?stbId=3&livemode=1&HlsProfileId=&channel-id=hnbblive&Contentid=2000000002000000009&IASHttpSessionId=OTT19019320240419154124000281&yang-1989 71 | 游戏风云,http://[2409:8087:5e08:24::12]:6610/000000001000/2000000002000000011/index.m3u8?stbId=3&livemode=1&HlsProfileId=&channel-id=hnbblive&Contentid=2000000002000000011&IASHttpSessionId=OTT19019320240419154124000281&yang-1989 72 | 生活时尚,http://[2409:8087:5e08:24::12]:6610/000000001000/2000000002000000006/index.m3u8?stbId=3&livemode=1&HlsProfileId=&channel-id=hnbblive&Contentid=2000000002000000006&IASHttpSessionId=OTT19019320240419154124000281&yang-1989 73 | 都市剧场,http://[2409:8087:5e08:24::12]:6610/000000001000/2000000002000000015/index.m3u8?stbId=3&livemode=1&HlsProfileId=&channel-id=hnbblive&Contentid=2000000002000000015&IASHttpSessionId=OTT19019320240419154124000281&yang-1989 74 | 金色学堂,http://[2409:8087:5e08:24::12]:6610/000000001000/2000000002000000061/index.m3u8?stbId=3&livemode=1&HlsProfileId=&channel-id=hnbblive&Contentid=2000000002000000061&IASHttpSessionId=OTT19019320240419154124000281&yang-1989 75 | 求索纪录,http://[2409:8087:1a01:df::7005]/PLTV/88888888/224/3221225713/index.m3u8 76 | 求索科学,http://[2409:8087:1a01:df::7005]/PLTV/88888888/224/3221225728/index.m3u8 77 | 求索生活,http://[2409:8087:1a01:df::7005]/PLTV/88888888/224/3221225715/index.m3u8 78 | 求索动物,http://[2409:8087:1a01:df::7005]/PLTV/88888888/224/3221225730/index.m3u8 79 | 文物宝库,http://[2409:8087:4c0a:22:1::11]:6410/170000001115/UmaiCHAN638078a346161/index.m3u8?AuthInfo=toEYVdLfxymUP2l9NZpQI5%2BK6T7j%2FlRm%2BvbM9VO7bA199v9hZiIrZ%2B5X675R6%2FGDjgcqn5UaJ6D814KM9%2FvF7QwvFfeEXMAK7LltfEC%2FKQQ 80 | 古装剧场,http://[2409:8087:1a01:df::7005]/PLTV/88888888/224/3221225524/index.m3u8 81 | 动作电影,http://[2409:8087:1a01:df::7005]/PLTV/88888888/224/3221225555/index.m3u8 82 | 农业致富,http://[2409:8087:1a01:df::7005]/PLTV/88888888/224/3221225552/index.m3u8 83 | 梨园频道,http://[2409:8087:4c0a:22:1::11]:6410/170000001115/UmaiCHAN6380788ba7bed/index.m3u8?AuthInfo=toEYVdLfxymUP2l9NZpQI5%2BK6T7j%2FlRm%2BvbM9VO7bA0q1S1k1f36SqqriM0FZoFSAJRfCt8SS7X6sTRmXb81a8O4H%2FdroDKjLoDeaMQdyJQ 84 | 爱上4K,http://[2409:8087:5e01:34::23]:6610/ZTE_CMS/00000001000000060000000000000459/index.m3u8?IAS 85 | 纪实人文,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225738/index.m3u8 86 | 纪实科教,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225729/index.m3u8 87 | 卡酷少儿,http://[2409:8087:1a0b:df::4020]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225654/index.m3u8 88 | 金鹰卡通,http://[2409:8087:1a0b:df::4008]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225653/index.m3u8 89 | 哒啵赛事,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225675/index.m3u8 90 | 优漫卡通,http://[2409:8087:1a0b:df::4005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225656/index.m3u8 91 | 哈哈炫动,http://[2409:8087:1a0b:df::4001]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225657/index.m3u8 92 | 黑莓动画,http://[2409:8087:1a0b:df::4006]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225662/index.m3u8 93 | 黑莓电影,http://[2409:8087:1a0b:df::4014]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225743/index.m3u8 94 | 超级体育,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225715/index.m3u8 95 | 超级电影,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225717/index.m3u8 96 | 超级视剧,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225716/index.m3u8 97 | 东北热剧,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225741/index.m3u8 98 | 海外剧场,http://[2409:8087:1a0b:df::4005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225671/index.m3u8 99 | 中国功夫,http://[2409:8087:1a0b:df::4001]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225681/index.m3u8 100 | 军旅剧场,http://[2409:8087:1a0b:df::4018]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225676/index.m3u8 101 | 惊悚悬疑,http://[2409:8087:1a0b:df::4002]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225665/index.m3u8 102 | 潮妈辣婆,http://[2409:8087:1a0b:df::4007]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225685/index.m3u8 103 | 精品体育,http://[2409:8087:1a0b:df::4004]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225674/index.m3u8 104 | 精品纪录,http://[2409:8087:1a0b:df::4007]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225672/index.m3u8 105 | 家庭剧场,http://[2409:8087:1a0b:df::4007]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225677/index.m3u8 106 | 精品大剧,http://[2409:8087:1a0b:df::4001]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225670/index.m3u8 107 | 军事评论,http://[2409:8087:1a0b:df::4005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225668/index.m3u8 108 | 明星大片,http://[2409:8087:1a0b:df::4005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225664/index.m3u8 109 | 欢乐剧场,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225742/index.m3u8 110 | 精品萌宠,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226505/index.m3u8 111 | 超级综艺,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225714/index.m3u8 112 | 金牌综艺,http://[2409:8087:1a01:df::7005]:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225666/index.m3u8 113 | 114 | -------------------------------------------------------------------------------- /直播/央视频道.txt: -------------------------------------------------------------------------------- 1 | 导航: https://yuanzl77.github.io - LR 2 | 3 | 央视频道,#genre# 4 | CCTV1,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226016/index.m3u8 5 | CCTV2,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225588/index.m3u8 6 | CCTV3,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226021/index.m3u8 7 | CCTV4,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226428/index.m3u8 8 | CCTV5,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226019/index.m3u8 9 | CCTV5+,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225603/index.m3u8 10 | CCTV6,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226010/index.m3u8 11 | CCTV7,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225733/index.m3u8 12 | CCTV8,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226008/index.m3u8 13 | CCTV9,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225734/index.m3u8 14 | CCTV10,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225730/index.m3u8 15 | CCTV11,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225597/index.m3u8 16 | CCTV12,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225731/index.m3u8 17 | CCTV13,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226537/index.m3u8 18 | CCTV14,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225732/index.m3u8 19 | CCTV15,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225601/index.m3u8 20 | CCTV16,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226100/index.m3u8 21 | CCTV17,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225765/index.m3u8 22 | --------------------------------------------------------------------------------