├── .gitignore ├── .idea ├── IPTV.iml └── modules.xml ├── LICENSE ├── README.md ├── babel.config.js ├── build ├── build-m3u.js └── esm-loader.mjs ├── docs ├── css │ ├── app.fc0bbfd2.css │ └── chunk-vendors.8adc8d3b.css ├── favicon.ico ├── fonts │ ├── ionicons.99ac3308.woff │ └── ionicons.d535a25a.ttf ├── img │ ├── icon-vlc.5cd4cb89.svg │ └── ionicons.a2c4a261.svg ├── index.html ├── iptv.m3u ├── iptv.txt └── js │ ├── app.92b0c01c.js │ ├── app.92b0c01c.js.map │ ├── chunk-vendors.9ca46011.js │ └── chunk-vendors.9ca46011.js.map ├── iptv.m3u ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html └── iptv.txt ├── sh.m3u ├── sh_iptv.m3u ├── src ├── App.vue ├── components │ └── modal-custom.vue ├── constants.js ├── img │ └── icon-vlc.svg ├── lib │ ├── compare-channel.js │ ├── download.js │ ├── format-with-proxy.js │ ├── generate-m3u.js │ ├── get-origin.js │ └── parse-channels.js └── main.js ├── t.t ├── test.m3u ├── unicom_iptv.m3u ├── vue.config.js ├── yd.m3u ├── yxgl.m3u └── zyd.m3u /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist 4 | 5 | # local env files 6 | .env.local 7 | .env.*.local 8 | 9 | # Log files 10 | npm-debug.log* 11 | yarn-debug.log* 12 | yarn-error.log* 13 | 14 | # Editor directories and files 15 | .idea 16 | .vscode 17 | *.suo 18 | *.ntvs* 19 | *.njsproj 20 | *.sln 21 | *.sw* 22 | -------------------------------------------------------------------------------- /.idea/IPTV.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 测试地址 2 | https://fuinbr.github.io/IPTV/iptv.m3u 3 | 4 | 各大电视节目【联通】 5 | https://fuinbr.github.io/IPTV/unicom_iptv.m3u 6 | 7 | 没有整理 测试源 8 | https://fuinbr.github.io/IPTV/test.m3u 9 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/app', 4 | ], 5 | }; 6 | -------------------------------------------------------------------------------- /build/build-m3u.js: -------------------------------------------------------------------------------- 1 | import PATH from "path"; 2 | import fs from "fs-extra"; 3 | import parseChannels from "../src/lib/parse-channels"; 4 | import generateM3u from "../src/lib/generate-m3u"; 5 | import formatWithProxy from "../src/lib/format-with-proxy"; 6 | import compareChannel from "../src/lib/compare-channel"; 7 | 8 | const defaultProxy = "http://192.168.1.4:8012"; 9 | 10 | const main = async () => { 11 | const input = PATH.resolve(process.argv[2]); 12 | 13 | const output = PATH.resolve(process.argv[3]); 14 | 15 | const html = await fs.readFile(input, { 16 | encoding: "utf8" 17 | }); 18 | 19 | const channels = parseChannels(html).sort(compareChannel); 20 | 21 | const content = generateM3u( 22 | "bj-unicom-iptv", 23 | channels.map(({ ChannelName, ChannelURL }) => ({ 24 | name: ChannelName, 25 | url: formatWithProxy(ChannelURL, defaultProxy, "") 26 | })) 27 | ); 28 | 29 | await fs.outputFile(output, content); 30 | }; 31 | 32 | main().catch(err => { 33 | global.console.error(err.stack); 34 | process.exitCode = -1; 35 | }); 36 | -------------------------------------------------------------------------------- /build/esm-loader.mjs: -------------------------------------------------------------------------------- 1 | import URL from "url"; 2 | import PATH from "path"; 3 | 4 | const modulesRoot = new URL.URL(`file://${PATH.resolve("node_modules")}`); 5 | 6 | export const resolve = async (specifier, parentModulePath, defaultResolve) => { 7 | const ret = defaultResolve(specifier, parentModulePath); 8 | 9 | if (ret.format !== "cjs") { 10 | return ret; 11 | } 12 | 13 | if (ret.url.startsWith(modulesRoot)) { 14 | return ret; 15 | } 16 | 17 | return { 18 | url: ret.url, 19 | format: "esm" 20 | }; 21 | }; 22 | -------------------------------------------------------------------------------- /docs/css/app.fc0bbfd2.css: -------------------------------------------------------------------------------- 1 | .modal-custom-textarea textarea{height:50vh;resize:none}#app[data-v-61303290]{font-family:Avenir,Helvetica,Arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:10px}.form[data-v-61303290]{padding:10px;margin:10px 0 20px;border:1px solid #ccc}.input-udpxy[data-v-61303290]{width:300px}label[data-v-61303290]{display:block;padding:20px 0}.icon-vlc{display:block;margin:auto;width:2.5em;height:2.5em;background:url(../img/icon-vlc.5cd4cb89.svg) no-repeat;background-size:cover} -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuinbr/IPTV/15c4ff1816e6afc0812e022691d1aea2384eefa9/docs/favicon.ico -------------------------------------------------------------------------------- /docs/fonts/ionicons.99ac3308.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuinbr/IPTV/15c4ff1816e6afc0812e022691d1aea2384eefa9/docs/fonts/ionicons.99ac3308.woff -------------------------------------------------------------------------------- /docs/fonts/ionicons.d535a25a.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuinbr/IPTV/15c4ff1816e6afc0812e022691d1aea2384eefa9/docs/fonts/ionicons.d535a25a.ttf -------------------------------------------------------------------------------- /docs/img/icon-vlc.5cd4cb89.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 11 | 13 | 14 | 15 | 17 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | Beijing Unicom IPTV playlist

Beijing Unicom IPTV playlist

-------------------------------------------------------------------------------- /docs/iptv.m3u: -------------------------------------------------------------------------------- 1 | #EXTM3U name="bj-unicom-iptv" 2 | #EXTINF:-1,CCTV-1高清 3 | http://192.168.1.4:8012/rtp/239.3.1.129:8008 4 | #EXTINF:-1,CCTV-2高清 5 | http://192.168.1.4:8012/rtp/239.3.1.60:8084 6 | #EXTINF:-1,CCTV-7高清 7 | http://192.168.1.4:8012/rtp/239.3.1.61:8104 8 | #EXTINF:-1,CCTV-9高清 9 | http://192.168.1.4:8012/rtp/239.3.1.62:8112 10 | #EXTINF:-1,CCTV-10高清 11 | http://192.168.1.4:8012/rtp/239.3.1.63:8116 12 | #EXTINF:-1,CCTV-12高清 13 | http://192.168.1.4:8012/rtp/239.3.1.64:8124 14 | #EXTINF:-1,CCTV-14高清 15 | http://192.168.1.4:8012/rtp/239.3.1.65:8132 16 | #EXTINF:-1,CCTV5+ 17 | http://192.168.1.4:8012/rtp/239.3.1.130:8004 18 | #EXTINF:-1,BTV北京卫视高清 19 | http://192.168.1.4:8012/rtp/239.3.1.241:8000 20 | #EXTINF:-1,BTV文艺高清 21 | http://192.168.1.4:8012/rtp/239.3.1.242:8000 22 | #EXTINF:-1,BTV体育高清 23 | http://192.168.1.4:8012/rtp/239.3.1.243:8000 24 | #EXTINF:-1,大健康 25 | http://192.168.1.4:8012/rtp/239.3.1.251:8001 26 | #EXTINF:-1,DOGTV 27 | http://192.168.1.4:8012/rtp/239.3.1.102:8001 28 | #EXTINF:-1,淘Baby 29 | http://192.168.1.4:8012/rtp/239.3.1.238:8001 30 | #EXTINF:-1,淘剧场 31 | http://192.168.1.4:8012/rtp/239.3.1.95:8001 32 | #EXTINF:-1,淘电影 33 | http://192.168.1.4:8012/rtp/239.3.1.250:8001 34 | #EXTINF:-1,淘娱乐 35 | http://192.168.1.4:8012/rtp/239.3.1.100:8001 36 | #EXTINF:-1,4K超清 37 | http://192.168.1.4:8012/rtp/239.3.1.249:8001 38 | #EXTINF:-1,湖南卫视高清 39 | http://192.168.1.4:8012/rtp/239.3.1.132:8012 40 | #EXTINF:-1,黑龙江卫视高清 41 | http://192.168.1.4:8012/rtp/239.3.1.133:8016 42 | #EXTINF:-1,深圳卫视高清 43 | http://192.168.1.4:8012/rtp/239.3.1.134:8020 44 | #EXTINF:-1,江苏卫视高清 45 | http://192.168.1.4:8012/rtp/239.3.1.135:8028 46 | #EXTINF:-1,东方卫视高清 47 | http://192.168.1.4:8012/rtp/239.3.1.136:8032 48 | #EXTINF:-1,浙江卫视高清 49 | http://192.168.1.4:8012/rtp/239.3.1.137:8036 50 | #EXTINF:-1,湖北卫视高清 51 | http://192.168.1.4:8012/rtp/239.3.1.138:8044 52 | #EXTINF:-1,天津卫视高清 53 | http://192.168.1.4:8012/rtp/239.3.1.141:1234 54 | #EXTINF:-1,广东卫视高清 55 | http://192.168.1.4:8012/rtp/239.3.1.142:8048 56 | #EXTINF:-1,山东卫视高清 57 | http://192.168.1.4:8012/rtp/239.3.1.209:8052 58 | #EXTINF:-1,辽宁卫视高清 59 | http://192.168.1.4:8012/rtp/239.3.1.210:8056 60 | #EXTINF:-1,安徽卫视高清 61 | http://192.168.1.4:8012/rtp/239.3.1.211:8064 62 | #EXTINF:-1,纪实频道HD 63 | http://192.168.1.4:8012/rtp/239.3.1.212:8060 64 | #EXTINF:-1,CETV1高清 65 | http://192.168.1.4:8012/rtp/239.3.1.57:8152 66 | #EXTINF:-1,金鹰纪实高清 67 | http://192.168.1.4:8012/rtp/239.3.1.58:8156 68 | #EXTINF:-1,CCTV-1 69 | http://192.168.1.4:8012/rtp/239.3.1.1:8000 70 | #EXTINF:-1,CCTV-2 71 | http://192.168.1.4:8012/rtp/239.3.1.2:8004 72 | #EXTINF:-1,CCTV-4 73 | http://192.168.1.4:8012/rtp/239.3.1.4:8216 74 | #EXTINF:-1,CCTV-7 75 | http://192.168.1.4:8012/rtp/239.3.1.7:8024 76 | #EXTINF:-1,CCTV-9 77 | http://192.168.1.4:8012/rtp/239.3.1.9:8032 78 | #EXTINF:-1,CCTV-10 79 | http://192.168.1.4:8012/rtp/239.3.1.10:8228 80 | #EXTINF:-1,CCTV-11 81 | http://192.168.1.4:8012/rtp/239.3.1.11:8040 82 | #EXTINF:-1,CCTV-12 83 | http://192.168.1.4:8012/rtp/239.3.1.12:8232 84 | #EXTINF:-1,CCTV-13 85 | http://192.168.1.4:8012/rtp/239.3.1.13:8048 86 | #EXTINF:-1,CCTV-14 87 | http://192.168.1.4:8012/rtp/239.3.1.14:8236 88 | #EXTINF:-1,CCTV-15 89 | http://192.168.1.4:8012/rtp/239.3.1.15:8052 90 | #EXTINF:-1,CGTN 91 | http://192.168.1.4:8012/rtp/239.3.1.16:8056 92 | #EXTINF:-1,BTV北京卫视 93 | http://192.168.1.4:8012/rtp/239.3.1.225:8000 94 | #EXTINF:-1,BTV文艺 95 | http://192.168.1.4:8012/rtp/239.3.1.226:8000 96 | #EXTINF:-1,BTV科教 97 | http://192.168.1.4:8012/rtp/239.3.1.227:8000 98 | #EXTINF:-1,BTV影视 99 | http://192.168.1.4:8012/rtp/239.3.1.228:8000 100 | #EXTINF:-1,BTV财经 101 | http://192.168.1.4:8012/rtp/239.3.1.229:8000 102 | #EXTINF:-1,BTV体育 103 | http://192.168.1.4:8012/rtp/239.3.1.230:8000 104 | #EXTINF:-1,BTV生活 105 | http://192.168.1.4:8012/rtp/239.3.1.231:8000 106 | #EXTINF:-1,BTV青年 107 | http://192.168.1.4:8012/rtp/239.3.1.232:8000 108 | #EXTINF:-1,BTV新闻 109 | http://192.168.1.4:8012/rtp/239.3.1.233:8000 110 | #EXTINF:-1,BTV卡酷少儿 111 | http://192.168.1.4:8012/rtp/239.3.1.234:8000 112 | #EXTINF:-1,BTV国际频道 113 | http://192.168.1.4:8012/rtp/239.3.1.235:8000 114 | #EXTINF:-1,湖南卫视 115 | http://192.168.1.4:8012/rtp/239.3.1.18:8268 116 | #EXTINF:-1,浙江卫视 117 | http://192.168.1.4:8012/rtp/239.3.1.19:8284 118 | #EXTINF:-1,江苏卫视 119 | http://192.168.1.4:8012/rtp/239.3.1.20:8276 120 | #EXTINF:-1,安徽卫视 121 | http://192.168.1.4:8012/rtp/239.3.1.21:8272 122 | #EXTINF:-1,天津卫视 123 | http://192.168.1.4:8012/rtp/239.3.1.23:8144 124 | #EXTINF:-1,辽宁卫视 125 | http://192.168.1.4:8012/rtp/239.3.1.24:8116 126 | #EXTINF:-1,山东卫视 127 | http://192.168.1.4:8012/rtp/239.3.1.25:8148 128 | #EXTINF:-1,山东教育 129 | http://192.168.1.4:8012/rtp/239.3.1.52:4120 130 | #EXTINF:-1,河南卫视 131 | http://192.168.1.4:8012/rtp/239.3.1.27:8128 132 | #EXTINF:-1,黑龙江卫视 133 | http://192.168.1.4:8012/rtp/239.3.1.28:8196 134 | #EXTINF:-1,四川卫视 135 | http://192.168.1.4:8012/rtp/239.3.1.29:8288 136 | #EXTINF:-1,江西卫视 137 | http://192.168.1.4:8012/rtp/239.3.1.30:8280 138 | #EXTINF:-1,贵州卫视 139 | http://192.168.1.4:8012/rtp/239.3.1.31:8120 140 | #EXTINF:-1,深圳卫视 141 | http://192.168.1.4:8012/rtp/239.3.1.32:9244 142 | #EXTINF:-1,湖北卫视 143 | http://192.168.1.4:8012/rtp/239.3.1.33:8136 144 | #EXTINF:-1,东方卫视 145 | http://192.168.1.4:8012/rtp/239.3.1.34:8192 146 | #EXTINF:-1,重庆卫视 147 | http://192.168.1.4:8012/rtp/239.3.1.35:8296 148 | #EXTINF:-1,东南卫视 149 | http://192.168.1.4:8012/rtp/239.3.1.36:8112 150 | #EXTINF:-1,河北卫视 151 | http://192.168.1.4:8012/rtp/239.3.1.37:8292 152 | #EXTINF:-1,广东卫视 153 | http://192.168.1.4:8012/rtp/239.3.1.38:8132 154 | #EXTINF:-1,广西卫视 155 | http://192.168.1.4:8012/rtp/239.3.1.39:8300 156 | #EXTINF:-1,吉林卫视 157 | http://192.168.1.4:8012/rtp/239.3.1.40:8200 158 | #EXTINF:-1,陕西卫视 159 | http://192.168.1.4:8012/rtp/239.3.1.41:8140 160 | #EXTINF:-1,山西卫视 161 | http://192.168.1.4:8012/rtp/239.3.1.42:8172 162 | #EXTINF:-1,内蒙古卫视 163 | http://192.168.1.4:8012/rtp/239.3.1.43:8176 164 | #EXTINF:-1,青海卫视 165 | http://192.168.1.4:8012/rtp/239.3.1.44:8184 166 | #EXTINF:-1,旅游卫视 167 | http://192.168.1.4:8012/rtp/239.3.1.45:8304 168 | #EXTINF:-1,宁夏卫视 169 | http://192.168.1.4:8012/rtp/239.3.1.46:8124 170 | #EXTINF:-1,西藏卫视 171 | http://192.168.1.4:8012/rtp/239.3.1.47:8164 172 | #EXTINF:-1,新疆卫视 173 | http://192.168.1.4:8012/rtp/239.3.1.48:8160 174 | #EXTINF:-1,甘肃卫视 175 | http://192.168.1.4:8012/rtp/239.3.1.49:8188 176 | #EXTINF:-1,金鹰卡通 177 | http://192.168.1.4:8012/rtp/239.3.1.51:9252 178 | #EXTINF:-1,云南卫视 179 | http://192.168.1.4:8012/rtp/239.3.1.26:8108 180 | #EXTINF:-1,财富天下 181 | http://192.168.1.4:8012/rtp/239.3.1.53:9136 182 | #EXTINF:-1,厦门卫视 183 | http://192.168.1.4:8012/rtp/239.3.1.143:4120 184 | #EXTINF:-1,兵团卫视 185 | http://192.168.1.4:8012/rtp/239.3.1.144:4120 186 | #EXTINF:-1,CETV1 187 | http://192.168.1.4:8012/rtp/239.3.1.146:4120 188 | #EXTINF:-1,嘉佳卡通 189 | http://192.168.1.4:8012/rtp/239.3.1.147:9268 190 | #EXTINF:-1,CETV2 191 | http://192.168.1.4:8012/rtp/239.3.1.54:4120 192 | #EXTINF:-1,CETV3 193 | http://192.168.1.4:8012/rtp/239.3.1.55:4120 194 | #EXTINF:-1,CETV4 195 | http://192.168.1.4:8012/rtp/239.3.1.56:4120 196 | #EXTINF:-1,收视指南 197 | http://192.168.1.4:8012/rtp/239.3.1.193:8012 198 | #EXTINF:-1,热播剧场 199 | http://192.168.1.4:8012/rtp/239.3.1.194:9020 200 | #EXTINF:-1,经典电影 201 | http://192.168.1.4:8012/rtp/239.3.1.195:9024 202 | #EXTINF:-1,魅力时尚 203 | http://192.168.1.4:8012/rtp/239.3.1.196:9012 204 | #EXTINF:-1,IPTV6+ 205 | http://192.168.1.4:8012/rtp/239.3.1.197:9016 206 | #EXTINF:-1,IPTV3+ 207 | http://192.168.1.4:8012/rtp/239.3.1.198:9004 208 | #EXTINF:-1,少儿动画 209 | http://192.168.1.4:8012/rtp/239.3.1.199:9000 210 | #EXTINF:-1,IPTV5+ 211 | http://192.168.1.4:8012/rtp/239.3.1.200:9008 212 | #EXTINF:-1,IPTV8+ 213 | http://192.168.1.4:8012/rtp/239.3.1.201:8072 214 | #EXTINF:-1,闪闪红星 215 | http://192.168.1.4:8012/rtp/239.3.1.96:8001 216 | #EXTINF:-1,文化北京 217 | http://192.168.1.4:8012/rtp/239.3.1.97:8001 218 | #EXTINF:-1,淘京品 219 | http://192.168.1.4:8012/rtp/239.3.1.98:8001 220 | #EXTINF:-1,淘体育 221 | http://192.168.1.4:8012/rtp/239.3.1.99:8001 222 | #EXTINF:-1,淘军迷 223 | http://192.168.1.4:8012/rtp/239.3.1.101:8001 224 | #EXTINF:-1,熊猫频道 225 | http://192.168.1.4:8012/rtp/239.3.1.66:8068 226 | #EXTINF:-1,城市剧场 227 | http://192.168.1.4:8012/rtp/239.3.1.67:4120 228 | #EXTINF:-1,军旅剧场 229 | http://192.168.1.4:8012/rtp/239.3.1.68:4120 230 | #EXTINF:-1,古装剧场 231 | http://192.168.1.4:8012/rtp/239.3.1.69:4120 232 | #EXTINF:-1,音乐现场 233 | http://192.168.1.4:8012/rtp/239.3.1.70:4120 234 | #EXTINF:-1,地理 235 | http://192.168.1.4:8012/rtp/239.3.1.71:4120 236 | #EXTINF:-1,美妆 237 | http://192.168.1.4:8012/rtp/239.3.1.72:4120 238 | #EXTINF:-1,美人 239 | http://192.168.1.4:8012/rtp/239.3.1.73:4120 240 | #EXTINF:-1,精选 241 | http://192.168.1.4:8012/rtp/239.3.1.74:4120 242 | #EXTINF:-1,解密 243 | http://192.168.1.4:8012/rtp/239.3.1.75:4120 244 | #EXTINF:-1,军事 245 | http://192.168.1.4:8012/rtp/239.3.1.76:4120 246 | #EXTINF:-1,国学 247 | http://192.168.1.4:8012/rtp/239.3.1.77:4120 248 | #EXTINF:-1,戏曲 249 | http://192.168.1.4:8012/rtp/239.3.1.78:4120 250 | #EXTINF:-1,早教 251 | http://192.168.1.4:8012/rtp/239.3.1.79:4120 252 | #EXTINF:-1,动画 253 | http://192.168.1.4:8012/rtp/239.3.1.80:4120 254 | #EXTINF:-1,好学生 255 | http://192.168.1.4:8012/rtp/239.3.1.81:4120 256 | #EXTINF:-1,鉴赏 257 | http://192.168.1.4:8012/rtp/239.3.1.82:4120 258 | #EXTINF:-1,墨宝 259 | http://192.168.1.4:8012/rtp/239.3.1.83:4120 260 | #EXTINF:-1,光影 261 | http://192.168.1.4:8012/rtp/239.3.1.84:4120 262 | #EXTINF:-1,台球 263 | http://192.168.1.4:8012/rtp/239.3.1.85:4120 264 | #EXTINF:-1,爱生活 265 | http://192.168.1.4:8012/rtp/239.3.1.86:4120 266 | #EXTINF:-1,武术 267 | http://192.168.1.4:8012/rtp/239.3.1.87:4120 268 | #EXTINF:-1,高网 269 | http://192.168.1.4:8012/rtp/239.3.1.88:4120 270 | #EXTINF:-1,足球 271 | http://192.168.1.4:8012/rtp/239.3.1.89:4120 272 | #EXTINF:-1,武侠剧场 273 | http://192.168.1.4:8012/rtp/239.3.1.90:4120 274 | #EXTINF:-1,喜剧影院 275 | http://192.168.1.4:8012/rtp/239.3.1.91:4120 276 | #EXTINF:-1,动作影院 277 | http://192.168.1.4:8012/rtp/239.3.1.92:4120 278 | #EXTINF:-1,家庭影院 279 | http://192.168.1.4:8012/rtp/239.3.1.93:4120 280 | #EXTINF:-1,星影 281 | http://192.168.1.4:8012/rtp/239.3.1.94:4120 282 | #EXTINF:-1,IPTV5+高清 283 | http://192.168.1.4:8012/rtp/239.3.1.237:4120 284 | #EXTINF:-1,爱上4K 285 | http://192.168.1.4:8012/rtp/239.3.1.236:2000 286 | #EXTINF:-1,电竞世界 287 | http://192.168.1.4:8012/rtp/239.3.1.120:3120 288 | #EXTINF:-1,VBR测试-2 289 | http://192.168.1.4:8012/rtp/239.3.1.140:8001 290 | #EXTINF:-1,轮播频道5 291 | http://192.168.1.4:8012/rtp/239.3.1.253:8001 292 | #EXTINF:-1,CCTV-3 293 | http://192.168.1.4:8012/rtp/239.3.1.240:8008 294 | #EXTINF:-1,CCTV-5 295 | http://192.168.1.4:8012/rtp/239.3.1.244:8016 296 | #EXTINF:-1,CCTV-6 297 | http://192.168.1.4:8012/rtp/239.3.1.245:8220 298 | #EXTINF:-1,CCTV-8 299 | http://192.168.1.4:8012/rtp/239.3.1.246:8224 300 | #EXTINF:-1,VBR测试-1 301 | http://192.168.1.4:8012/rtp/239.3.1.139:8001 302 | #EXTINF:-1,4K测试 303 | http://192.168.1.4:8012/rtp/239.3.1.104:8001 304 | #EXTINF:-1,高清测试 305 | http://192.168.1.4:8012/rtp/239.3.1.103:8001 306 | #EXTINF:-1,总平台测试1 307 | http://192.168.1.4:8012/rtp/239.3.1.247:2000 308 | #EXTINF:-1,总平台测试2 309 | http://192.168.1.4:8012/rtp/239.3.1.248:2000 310 | #EXTINF:-1,天元围棋直播 311 | http://192.168.1.4:8012/rtp/239.3.1.202:8001 -------------------------------------------------------------------------------- /docs/js/app.92b0c01c.js: -------------------------------------------------------------------------------- 1 | (function(n){function t(t){for(var a,u,c=t[0],l=t[1],i=t[2],d=0,p=[];d {\n const blob = new Blob([content]);\n\n const a = document.createElement('a');\n\n a.href = URL.createObjectURL(blob);\n\n a.download = filename;\n\n a.style.display = 'none';\n\n document.body.appendChild(a);\n\n a.click();\n\n document.body.removeChild(a);\n};\n\nexport default download;\n","const compareChannel = (a, b) =>\n parseInt(a.UserChannelID, 10) - parseInt(b.UserChannelID, 10);\n\nexport default compareChannel;\n","const getOrigin = (input) => {\n const reg = /^http:\\/\\/[^/:]+(?::\\d+)?/;\n\n const matches = input.match(reg);\n\n if (!matches) {\n return '';\n }\n\n return matches[0];\n};\n\nexport default getOrigin;\n","import getOrigin from \"./get-origin\";\n\nconst formatWithProxy = (url, proxy, proxyDefault) => {\n const prefix = getOrigin(proxy) || proxyDefault;\n\n if (!prefix) {\n return url;\n }\n\n const path = url.replace(/^\\w+:\\/\\//, \"/rtp/\");\n\n return `${prefix}${path}`;\n};\n\nexport default formatWithProxy;\n","const generateM3u = (title, arr) => `#EXTM3U name=\"${title}\"\\n${\n arr.map(({\n name,\n url,\n }) => `#EXTINF:-1,${name}\\n${url}`)\n .join('\\n')\n}`;\n\nexport default generateM3u;\n","const parseChannel = (str) => {\n const reg = /(\\w+)=\"([^\"]+)\"/g;\n\n const ret = {};\n\n for (;;) {\n const matches = reg.exec(str);\n\n if (!matches) {\n break;\n }\n\n ret[matches[1]] = matches[2];\n }\n\n return ret;\n};\n\nconst parseChannels = (str) => {\n const ret = [];\n\n const reg = /CU_CTC_Auther\\('Channel',([^)]+)\\)/g;\n\n for (;;) {\n const matches = reg.exec(str);\n\n if (!matches) {\n break;\n }\n\n const info = parseChannel(matches[1]);\n\n ret.push(info);\n }\n\n return ret;\n};\n\nexport default parseChannels;\n","export const udpxyDefault = 'http://192.168.1.4:8012';\n\nexport const filename = 'bj-unicom-iptv';\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{attrs:{\"title\":\"Common Modal dialog box title\"},on:{\"on-ok\":_vm.ok,\"on-cancel\":_vm.cancel},model:{value:(_vm.modalShow),callback:function ($$v) {_vm.modalShow=$$v},expression:\"modalShow\"}},[_c('i-input',{staticClass:\"modal-custom-textarea\",attrs:{\"type\":\"textarea\"},model:{value:(_vm.value),callback:function ($$v) {_vm.value=$$v},expression:\"value\"}})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./modal-custom.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./modal-custom.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./modal-custom.vue?vue&type=template&id=d57ea8f6&\"\nimport script from \"./modal-custom.vue?vue&type=script&lang=js&\"\nexport * from \"./modal-custom.vue?vue&type=script&lang=js&\"\nimport style0 from \"./modal-custom.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\ncomponent.options.__file = \"modal-custom.vue\"\nexport default component.exports","\n\n\n\n\n\n\n","import mod from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./App.vue?vue&type=template&id=61303290&scoped=true&\"\nimport script from \"./App.vue?vue&type=script&lang=js&\"\nexport * from \"./App.vue?vue&type=script&lang=js&\"\nimport style0 from \"./App.vue?vue&type=style&index=0&id=61303290&scoped=true&lang=css&\"\nimport style1 from \"./App.vue?vue&type=style&index=1&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"61303290\",\n null\n \n)\n\ncomponent.options.__file = \"App.vue\"\nexport default component.exports","import Vue from 'vue';\nimport Message from 'iview/src/components/message';\n\nimport 'iview/dist/styles/iview.css';\n\nimport App from './App';\n\nVue.prototype.$Message = Message;\n\nVue.config.productionTip = false;\n\n/* eslint-disable no-new */\nnew Vue({\n el: '#app',\n render: h => h(App),\n});\n","import mod from \"-!../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../node_modules/css-loader/index.js??ref--6-oneOf-1-1!../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../node_modules/postcss-loader/lib/index.js??ref--6-oneOf-1-2!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=style&index=0&id=61303290&scoped=true&lang=css&\"; export default mod; export * from \"-!../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../node_modules/css-loader/index.js??ref--6-oneOf-1-1!../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../node_modules/postcss-loader/lib/index.js??ref--6-oneOf-1-2!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=style&index=0&id=61303290&scoped=true&lang=css&\"","import mod from \"-!../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../node_modules/css-loader/index.js??ref--6-oneOf-1-1!../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../node_modules/postcss-loader/lib/index.js??ref--6-oneOf-1-2!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=style&index=1&lang=css&\"; export default mod; export * from \"-!../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../node_modules/css-loader/index.js??ref--6-oneOf-1-1!../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../node_modules/postcss-loader/lib/index.js??ref--6-oneOf-1-2!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=style&index=1&lang=css&\"","import mod from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../node_modules/css-loader/index.js??ref--6-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/lib/index.js??ref--6-oneOf-1-2!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./modal-custom.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../node_modules/css-loader/index.js??ref--6-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/lib/index.js??ref--6-oneOf-1-2!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./modal-custom.vue?vue&type=style&index=0&lang=css&\""],"sourceRoot":""} -------------------------------------------------------------------------------- /iptv.m3u: -------------------------------------------------------------------------------- 1 | #EXTINF:-1,BBC News Asia Pacific (720p) 2 | http://cdns.jp-primehome.com:8000/zhongying/live/playlist.m3u8?cid=cs15 3 | #EXTINF:-1,Bread TV面包台 (720p) 4 | https://video.bread-tv.com:8091/hls-live24/online/index.m3u8 5 | #EXTINF:-1,CCTV+ 1 (600p) [Not 24/7] 6 | https://cd-live-stream.news.cctvplus.com/live/smil:CHANNEL1.smil/playlist.m3u8 7 | #EXTINF:-1,CCTV+ 2 (600p) [Not 24/7] 8 | https://cd-live-stream.news.cctvplus.com/live/smil:CHANNEL2.smil/playlist.m3u8 9 | #EXTINF:-1,CCTV-1 (1080p) 10 | http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225804/index.m3u8 11 | #EXTINF:-1,CCTV-2 (1080p) 12 | http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226195/index.m3u8 13 | #EXTINF:-1,CCTV-4 (1080p) 14 | http://39.134.24.161/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226191/index.m3u8 15 | #EXTINF:-1,CCTV-4 (1080p) 16 | http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226191/index.m3u8 17 | #EXTINF:-1,CCTV-5 (1080p) 18 | http://39.134.24.161/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226395/index.m3u8 19 | #EXTINF:-1,CCTV-7 (1080p) 20 | http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226192/index.m3u8 21 | #EXTINF:-1,CCTV-8 (1080p) 22 | http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226012/index.m3u8 23 | #EXTINF:-1,CCTV-9 (1080p) 24 | http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226197/index.m3u8 25 | #EXTINF:-1,CCTV-10 (1080p) 26 | http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226189/index.m3u8 27 | #EXTINF:-1,CCTV-13 (1080p) 28 | http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226233/index.m3u8 29 | #EXTINF:-1,CCTV-14 (1080p) 30 | http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226193/index.m3u8 31 | #EXTINF:-1,CCTV-16 (1080p) 32 | http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226921/index.m3u8 33 | #EXTINF:-1,douyu8 34 | http://epg.112114.xyz/douyu/4332 35 | #EXTINF:-1,douyu9 36 | http://epg.112114.xyz/douyu/6140589 37 | #EXTINF:-1,douyu15 38 | http://epg.112114.xyz/douyu/8770422 39 | #EXTINF:-1,douyu19 40 | http://epg.112114.xyz/douyu/747764 41 | #EXTINF:-1,douyu20 42 | http://epg.112114.xyz/douyu/52787 43 | #EXTINF:-1,douyu24 44 | http://epg.112114.xyz/douyu/36337 45 | #EXTINF:-1,douyu25 46 | http://epg.112114.xyz/douyu/8814650 47 | #EXTINF:-1,douyu28 48 | http://epg.112114.xyz/douyu/263824 49 | #EXTINF:-1,douyu44 50 | http://epg.112114.xyz/douyu/323876 51 | #EXTINF:-1,Dragon TV International (360p) 52 | http://210.210.155.37/x6bnqe/s/s29/index.m3u8 53 | #EXTINF:-1,Foochow Children TV 54 | http://live.zohi.tv/video/s10001-sepd-4/index.m3u8 55 | #EXTINF:-1,Foochow TV-1 News 56 | http://live.zohi.tv/video/s10001-FZTV-1/index.m3u8 57 | #EXTINF:-1,Foochow TV-3 Life 58 | http://live.zohi.tv/video/s10001-shpd-3/index.m3u8 59 | #EXTINF:-1,Fusung News TV 60 | http://stream8.jlntv.cn/fs/sd/live.m3u8 61 | #EXTINF:-1,Toonmax TV (576p) 62 | http://210.210.155.37/qwr9ew/s/s50/index.m3u8 63 | #EXTINF:-1,TV BRICS Chinese (1080p) [Not 24/7] 64 | https://brics.bonus-tv.ru/cdn/brics/chinese/playlist.m3u8 65 | #EXTINF:-1,Xing Kong International (360p) 66 | http://210.210.155.37/x6bnqe/s/s94/index2.m3u8 67 | #EXTINF:-1,РТР Планета Азия 68 | https://player.smotrim.ru/iframe/stream/live_id/63254 69 | #EXTINF:-1,万州三峡移民 (576p) [Not 24/7] 70 | http://123.146.162.24:8013/tslslive/PU2vzMI/hls/live_sd.m3u8 71 | #EXTINF:-1,万州影视 (576p) [Not 24/7] 72 | http://123.146.162.24:8013/tslslive/vWlnEzU/hls/live_sd.m3u8 73 | #EXTINF:-1,万州科教 (576p) 74 | http://123.146.162.24:8013/tslslive/URetCnP/hls/live_sd.m3u8 75 | #EXTINF:-1,万州综合 (576p) [Not 24/7] 76 | http://123.146.162.24:8013/tslslive/noEX9SG/hls/live_sd.m3u8 77 | #EXTINF:-1,上虞1新闻综合 (720p) [Not 24/7] 78 | https://l.cztvcloud.com/channels/lantian/SXshangyu1/720p.m3u8 79 | #EXTINF:-1,上虞3新商都 (720p) [Not 24/7] 80 | https://l.cztvcloud.com/channels/lantian/SXshangyu3/720p.m3u8 81 | #EXTINF:-1,上虞經濟文化 (720p) [Not 24/7] 82 | https://l.cztvcloud.com/channels/lantian/SXshangyu2/720p.m3u8 83 | #EXTINF:-1,中国气象 (576p) [Not 24/7] 84 | http://hls.weathertv.cn/tslslive/qCFIfHB/hls/live_sd.m3u8 85 | #EXTINF:-1,云南 Ⅰ 红河综合台 (1080p) 86 | https://file.hhtv.cc/cms/videos/nmip-media/channellive/channel1/playlist.m3u8 87 | #EXTINF:-1,亳州农村 (360p) 88 | http://220.180.110.101:8083/videos/live/39/13/o4ncrHkSp7q09/o4ncrHkSp7q09.m3u8 89 | #EXTINF:-1,亳州新聞頻道 (360p) 90 | http://220.180.110.101:8083/videos/live/33/59/NC7XQdEveyncq/NC7XQdEveyncq.m3u8 91 | #EXTINF:-1,余姚姚江文化 (576p) 92 | https://l.cztvcloud.com/channels/lantian/SXyuyao3/720p.m3u8 93 | #EXTINF:-1,余姚新闻综合 (576p) 94 | https://l.cztvcloud.com/channels/lantian/SXyuyao1/720p.m3u8 95 | #EXTINF:-1,刘德华 96 | http://epg.112114.xyz/douyu/2516864 97 | #EXTINF:-1,北碚综合 (576p) [Not 24/7] 98 | http://222.178.181.121:12034/beibei01.m3u8 99 | #EXTINF:-1,南京信息 (720p) 100 | https://live.nbs.cn/channels/njtv/xxpd/m3u8:500k/live.m3u8 101 | #EXTINF:-1,南京十八 (720p) 102 | https://live.nbs.cn/channels/njtv/sbpd/m3u8:500k/live.m3u8 103 | #EXTINF:-1,南京娱乐 (720p) 104 | https://live.nbs.cn/channels/njtv/ylpd/m3u8:500k/live.m3u8 105 | #EXTINF:-1,吉林7 (900p) [Not 24/7] 106 | https://stream1.jlntv.cn/fzpd/sd/live.m3u8 107 | #EXTINF:-1,吉林乡村 (900p) [Not 24/7] 108 | https://stream1.jlntv.cn/xcpd/sd/live.m3u8 109 | #EXTINF:-1,唯心電視 (480p) 110 | https://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/playlist.m3u8 111 | #EXTINF:-1,孟州电视台 (1080p) [Not 24/7] 112 | http://live.dxhmt.cn:9081/tv/10883-1.m3u8 113 | #EXTINF:-1,宇哥电影 114 | http://epg.112114.xyz/douyu/413573 115 | #EXTINF:-1,宿州公共 (1080p) [Not 24/7] 116 | http://live.ahsz.tv/video/s10001-ggpd/index.m3u8 117 | #EXTINF:-1,宿州新闻综合 (1080p) [Not 24/7] 118 | http://live.ahsz.tv/video/s10001-szzh/index.m3u8 119 | #EXTINF:-1,宿州科教 (1080p) [Not 24/7] 120 | http://live.ahsz.tv/video/s10001-kxjy/index.m3u8 121 | #EXTINF:-1,岳阳公共 (576p) 122 | http://live.hnxttv.com:9601/live/dspd/800K/tzwj_video.m3u8?BVUUID=C236454D-5355-2F5F-FA96-1887C72E55CE&auth=654837809071524@615@2E9A5FD0B225B012E3178551CF3754A8 123 | #EXTINF:-1,嵊州综合 (720p) [Not 24/7] 124 | https://l.cztvcloud.com/channels/lantian/SXshengzhou1/720p.m3u8 125 | #EXTINF:-1,延边卫视 (720p) 126 | http://live.ybtvyun.com/video/s10016-7e5f23de35df/index.m3u8 127 | #EXTINF:-1,建安电视台 (1080p) [Not 24/7] 128 | http://live.dxhmt.cn:9081/tv/11003-1.m3u8 129 | #EXTINF:-1,张家界1 (240p) [Not 24/7] 130 | http://stream.zjjrtv.com/zjjtv1/hd/live.m3u8 131 | #EXTINF:-1,张家界2台 (240p) [Not 24/7] 132 | http://stream.zjjrtv.com/zjjtv2/hd/live.m3u8 133 | #EXTINF:-1,房山电视台 (576p) 134 | https://live.funhillrm.com/2/playlist.m3u8 135 | #EXTINF:-1,文山综合 (1080p) [Not 24/7] 136 | http://m3u8.channel.wsrtv.com.cn/cms/videos/nmip-media/channellive/channel7/playlist.m3u8 137 | #EXTINF:-1,新昌休闲影视 (1080p) [Not 24/7] 138 | https://l.cztvcloud.com/channels/lantian/SXxinchang2/720p.m3u8 139 | #EXTINF:-1,新昌新聞綜合 (1080p) [Not 24/7] 140 | https://l.cztvcloud.com/channels/lantian/SXxinchang1/720p.m3u8 141 | #EXTINF:-1,新泰乡村党建 (480p) [Not 24/7] 142 | http://live.xtgdw.cn:1935/live/xtxc/playlist.m3u8 143 | #EXTINF:-1,新泰影視頻道 (480p) [Not 24/7] 144 | http://111.17.214.4:1935/live/xtys/playlist.m3u8 145 | #EXTINF:-1,新泰影視頻道 (480p) [Not 24/7] 146 | http://live.xtgdw.cn:1935/live/xtys/playlist.m3u8 147 | #EXTINF:-1,新泰生活 (480p) [Not 24/7] 148 | http://111.17.214.4:1935/live/xtsh/playlist.m3u8 149 | #EXTINF:-1,新泰生活 (480p) [Not 24/7] 150 | http://live.xtgdw.cn:1935/live/xtsh/playlist.m3u8 151 | #EXTINF:-1,新泰综合 (480p) [Not 24/7] 152 | http://111.17.214.4:1935/live/xtzh/playlist.m3u8 153 | #EXTINF:-1,新泰综合 (480p) [Not 24/7] 154 | http://live.xtgdw.cn:1935/live/xtzh/playlist.m3u8 155 | #EXTINF:-1,新泰鄉村黨建 (480p) [Not 24/7] 156 | http://111.17.214.4:1935/live/xtxc/playlist.m3u8 157 | #EXTINF:-1,新郑综合 (1080p) [Not 24/7] 158 | http://live.dxhmt.cn:9081/tv/10184-1.m3u8 159 | #EXTINF:-1,星空衛視 (576p) 160 | http://218.202.220.2:5000/nn_live.ts?id=STARTV 161 | #EXTINF:-1,晋中公共 (1080p) [Not 24/7] 162 | http://jzlive.jztvnews.com:90/live/jzgg.m3u8 163 | #EXTINF:-1,晋中综合 (1080p) 164 | http://jzlive.jztvnews.com:90/live/jzzh.m3u8 165 | #EXTINF:-1,景县电视一套 (360p) [Not 24/7] 166 | http://hbjx.chinashadt.com:1935/live/stream:jx1.stream_360p/playlist.m3u8 167 | #EXTINF:-1,景县电视一套 (576p) [Not 24/7] 168 | http://hbjx.chinashadt.com:1935/live/jx1.stream/playlist.m3u8 169 | #EXTINF:-1,林正英 170 | http://epg.112114.xyz/douyu/218859 171 | #EXTINF:-1,欧美大片1 172 | http://epg.112114.xyz/douyu/20415 173 | #EXTINF:-1,欧美大片2 174 | http://epg.112114.xyz/douyu/2793084 175 | #EXTINF:-1,欧美大片3 176 | http://epg.112114.xyz/douyu/9249162 177 | #EXTINF:-1,武汉外语 (576p) 178 | http://stream.appwuhan.com/6tzb/sd/live.m3u8 179 | #EXTINF:-1,武汉文体 (480p) 180 | http://stream.appwuhan.com/5tzb/sd/live.m3u8 181 | #EXTINF:-1,武汉经济 (360p) 182 | http://stream.appwuhan.com/4tzb/sd/live.m3u8 183 | #EXTINF:-1,江津文化旅游 (576p) 184 | http://222.179.155.21:1935/ch2.m3u8 185 | #EXTINF:-1,江津新闻综合 (480p) 186 | http://222.179.155.21:1935/ch1.m3u8 187 | #EXTINF:-1,江津经济生活 (480p) 188 | http://222.179.155.21:1935/ch0.m3u8 189 | #EXTINF:-1,江苏 Ⅰ 连云港公共 (480p) [Not 24/7] 190 | https://live.lyg1.com/ggpd/sd/live.m3u8 191 | #EXTINF:-1,江苏 Ⅰ 连云港综合 (480p) [Not 24/7] 192 | https://live.lyg1.com/zhpd/sd/live.m3u8 193 | #EXTINF:-1,江苏卫视 (1080p) 194 | http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226200/index.m3u8 195 | #EXTINF:-1,沧县电视二套 (576p) 196 | http://hebcx.chinashadt.com:2036/live/10002.stream/playlist.m3u8 197 | #EXTINF:-1,沧县电视综合 (576p) 198 | http://hebcx.chinashadt.com:2036/live/10001.stream/playlist.m3u8 199 | #EXTINF:-1,河源公共 (540p) 200 | https://tmpstream.hyrtv.cn/hygg/sd/live.m3u8 201 | #EXTINF:-1,河源综合 (540p) 202 | https://tmpstream.hyrtv.cn/xwzh/sd/live.m3u8 203 | #EXTINF:-1,洪雅新闻综合 (1080p) 204 | http://117.172.215.250:8083/videos/live/35/39/GQVbrgob5CGJM/GQVbrgob5CGJM.m3u8 205 | #EXTINF:-1,浙江 Ⅰ 绍兴影视 (720p) 206 | http://live.shaoxing.com.cn/video/s10001-sxtv3/index.m3u8 207 | #EXTINF:-1,浙江 Ⅰ 绍兴综合 (576p) 208 | http://live.shaoxing.com.cn/video/s10001-sxtv1/index.m3u8 209 | #EXTINF:-1,涡阳新闻综合 (360p) 210 | http://220.180.110.101:8083/videos/live/36/57/hwEHU4UVQ1Iv5/hwEHU4UVQ1Iv5.m3u8 211 | #EXTINF:-1,深圳卫视 (1080p) 212 | http://39.134.24.166/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226205/index.m3u8 213 | #EXTINF:-1,湘潭公共 (576p) 214 | http://live.hnxttv.com:9601/live/dspd/800K/tzwj_video.m3u8 215 | #EXTINF:-1,湘潭新闻综合 (720p) 216 | http://live.hnxttv.com:9601/live/xwzh/800K/tzwj_video.m3u8 217 | #EXTINF:-1,滁州市广播电视台 公共频道 (400p) 218 | http://live.cztv.cc:85/live/ggpd.m3u8 219 | #EXTINF:-1,滁州市广播电视台 新闻综合频道 (1080p) 220 | http://live.cztv.cc:85/live/xwpd.m3u8 221 | #EXTINF:-1,漳州新闻综合 (720p) [Not 24/7] 222 | https://31182.hlsplay.aodianyun.com/lms_31182/tv_channel_175.m3u8 223 | #EXTINF:-1,甘肃公共 (540p) [Not 24/7] 224 | https://hls.gstv.com.cn/49048r/3t5xyc.m3u8 225 | #EXTINF:-1,石景山电视台 (1080p) [Not 24/7] 226 | https://live.sjsrm.com/bjsjs/sd/live.m3u8 227 | #EXTINF:-1,福州广播电视台新闻综合频道 (FZTV-1) (1080p) 228 | http://live.zohi.tv/video/s10001-fztv-1/index.m3u8 229 | #EXTINF:-1,福州广播电视台都市生活频道 (FZTV-3) (1080p) 230 | http://live.zohi.tv/video/s10001-fztv-3/index.m3u8 231 | #EXTINF:-1,福州电视台少儿频道 (FZTV-少儿) (1080p) 232 | http://live.zohi.tv/video/s10001-fztv-4/index.m3u8 233 | #EXTINF:-1,萬州三峽移民 (576p) 234 | http://123.146.162.24:8017/c2F0hmi/1000/live.m3u8 235 | #EXTINF:-1,萬州三峽移民 (576p) 236 | http://wanzhoulive.cbg.cn:8017/c2F0hmi/1000/live.m3u8 237 | #EXTINF:-1,萬州影視文藝 (576p) 238 | http://wanzhoulive.cbg.cn:8017/d4ceB1a/1000/live.m3u8 239 | #EXTINF:-1,萬州影視文藝 (576p) [Not 24/7] 240 | http://123.146.162.24:8017/d4ceB1a/1000/live.m3u8 241 | #EXTINF:-1,萬州科教頻道 (576p) 242 | http://123.146.162.24:8017/Cz7WPb8/800/live.m3u8 243 | #EXTINF:-1,萬州科教頻道 (576p) 244 | http://wanzhoulive.cbg.cn:8017/Cz7WPb8/800/live.m3u8 245 | #EXTINF:-1,萬州綜合頻道 (576p) 246 | http://123.146.162.24:8017/iTXwrGs/800/live.m3u8 247 | #EXTINF:-1,萬州綜合頻道 (576p) 248 | http://wanzhoulive.cbg.cn:8017/iTXwrGs/800/live.m3u8 249 | #EXTINF:-1,粤语电影2 250 | http://epg.112114.xyz/douyu/6566671 251 | #EXTINF:-1,粤语电影3 252 | http://epg.112114.xyz/douyu/1226741 253 | #EXTINF:-1,红牛REDBULL TV (720p) 254 | https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master_3360.m3u8 255 | #EXTINF:-1,罗山电视台 (1080p) [Not 24/7] 256 | http://live.dxhmt.cn:9081/tv/11521-1.m3u8 257 | #EXTINF:-1,耀才财经 (288p) 258 | http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8 259 | #EXTINF:-1,荣昌综合 (404p) [Not 24/7] 260 | http://183.64.181.25:40023/rongchang01.m3u8 261 | #EXTINF:-1,萧山新闻综合 (720p) [Not 24/7] 262 | https://l.cztvcloud.com/channels/lantian/SXxiaoshan1/720p.m3u8 263 | #EXTINF:-1,蓬安新闻综合 (720p) [Not 24/7] 264 | http://palive.patv123.com:8091/live/xwpd_800K.m3u8 265 | #EXTINF:-1,蕭山生活頻道 (720p) [Not 24/7] 266 | https://l.cztvcloud.com/channels/lantian/SXxiaoshan2/720p.m3u8 267 | #EXTINF:-1,西藏卫视 (576p) 268 | http://media.vtibet.com/masvod/HLSLive/9/hanyuTV_q1.m3u8 269 | #EXTINF:-1,西藏藏語 (576p) 270 | http://media.vtibet.com/masvod/HLSLive/7/zangyuTV_q1.m3u8 271 | #EXTINF:-1,西青新闻综合 (1080p) [Not 24/7] 272 | http://221.238.209.44:81/hls/live1.m3u8 273 | #EXTINF:-1,贝爷影厅 274 | http://epg.112114.xyz/douyu/252802 275 | #EXTINF:-1,通州电视台 (720p) 276 | http://pull.dayuntongzhou.com/live/tztv.m3u8 277 | #EXTINF:-1,隆化影视 (576p) 278 | http://hblh.chinashadt.com:2036/live/stream:lh2.stream/playlist.m3u8 279 | #EXTINF:-1,隆化综合 (576p) 280 | http://hblh.chinashadt.com:2036/live/stream:lh1.stream/playlist.m3u8 281 | #EXTINF:-1,青州文化旅游 (576p) 282 | http://sdqz.chinashadt.com:2036/live/stream:3.stream/playlist.m3u8 283 | #EXTINF:-1,青州生活 (576p) 284 | http://sdqz.chinashadt.com:2036/live/stream:2.stream/playlist.m3u8 285 | #EXTINF:-1,青州综合 (576p) 286 | http://sdqz.chinashadt.com:2036/live/stream:1.stream/playlist.m3u8 287 | #EXTINF:-1,靖江新闻綜合 (480p) [Not 24/7] 288 | http://visit.jjbctv.com:1935/live/xwzhmb/playlist.m3u8 289 | #EXTINF:-1,靖江新闻綜合 (720p) [Not 24/7] 290 | http://58.222.151.43:1935/live/xwzhpc/playlist.m3u8 291 | #EXTINF:-1,靖江新闻綜合 (720p) [Not 24/7] 292 | http://visit.jjbctv.com:1935/live/xwzhpc/playlist.m3u8 293 | #EXTINF:-1,餘姚姚江文化 (576p) [Not 24/7] 294 | https://l.cztvcloud.com/channels/lantian/SXyuyao2/720p.m3u8 295 | #EXTINF:-1,鹤壁新闻综合 (480p) [Not 24/7] 296 | http://pili-live-hls.hebitv.com/hebi/hebi.m3u8 297 | #EXTINF:-1,龙岩综合 (540p) 298 | http://stream.lytv.net.cn/2/sd/live.m3u8 299 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bj-unicom-iptv", 3 | "version": "1.0.0", 4 | "description": "Beijing unicom IPTV playlist", 5 | "author": "OpenGG ", 6 | "license": "GPL-3.0", 7 | "repository": { 8 | "type": "git", 9 | "url": "git+https://github.com/OpenGG/bj-unicom-iptv.git" 10 | }, 11 | "bugs": { 12 | "url": "https://github.com/OpenGG/bj-unicom-iptv/issues" 13 | }, 14 | "homepage": "https://github.com/OpenGG/bj-unicom-iptv#readme", 15 | "private": true, 16 | "scripts": { 17 | "serve": "vue-cli-service serve", 18 | "build:report": "vue-cli-service build --report", 19 | "build:m3u": "node --experimental-modules --loader ./build/esm-loader.mjs build/build-m3u.js public/iptv.txt iptv.m3u", 20 | "build": "vue-cli-service build", 21 | "lint": "vue-cli-service lint", 22 | "postbuild": "npm run build:m3u && cp iptv.m3u docs/" 23 | }, 24 | "dependencies": { 25 | "axios": "^0.18.0", 26 | "iview": "^3.1.3", 27 | "vue": "^2.5.17" 28 | }, 29 | "devDependencies": { 30 | "@vue/cli-plugin-babel": "^3.0.5", 31 | "@vue/cli-plugin-eslint": "^3.0.5", 32 | "@vue/cli-service": "^3.0.5", 33 | "fs-extra": "^7.0.0", 34 | "vue-template-compiler": "^2.5.17" 35 | }, 36 | "eslintConfig": { 37 | "root": true, 38 | "env": { 39 | "node": true 40 | }, 41 | "extends": [ 42 | "plugin:vue/recommended", 43 | "eslint:recommended" 44 | ], 45 | "rules": {}, 46 | "parserOptions": { 47 | "parser": "babel-eslint" 48 | } 49 | }, 50 | "postcss": { 51 | "plugins": { 52 | "autoprefixer": {} 53 | } 54 | }, 55 | "browserslist": [ 56 | "> 1%", 57 | "last 2 versions", 58 | "not ie <= 8" 59 | ] 60 | } 61 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuinbr/IPTV/15c4ff1816e6afc0812e022691d1aea2384eefa9/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Beijing Unicom IPTV playlist 9 | 10 | 43 | 44 | 45 | 46 |

47 | Beijing Unicom IPTV playlist 48 |

49 | 50 |
51 | 52 | 53 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /sh_iptv.m3u: -------------------------------------------------------------------------------- 1 | #EXTM3U name="sh-unicom-iptv" 2 | #EXTINF:001, CCTV-1高清 3 | rtsp://124.75.34.37/PLTV/88888888/224/3221226102/00000100000000060000000000009784_0.smil 4 | #EXTINF:001, CCTV-2高清 5 | http://223.110.241.203:6610/gitv/live1/G_CCTV-2-CQ/G_CCTV-2-CQ/ 6 | #EXTINF:001, CCTV-3高清 7 | http://223.110.241.203:6610/gitv/live1/G_CCTV-3-CQ/G_CCTV-3-CQ/ 8 | #EXTINF:001, CCTV-4高清 9 | http://223.110.241.203:6610/gitv/live1/G_CCTV-4-CQ/G_CCTV-4-CQ/ 10 | #EXTINF:001, CCTV-5高清 11 | http://223.110.241.203:6610/gitv/live1/G_CCTV-5-CQ/G_CCTV-5-CQ/ 12 | #EXTINF:001, CCTV5+高清 13 | http://223.110.241.203:6610/gitv/live1/G_CCTV-5PLUS-CQ/G_CCTV-5PLUS-CQ/ 14 | #EXTINF:001, CCTV6-高清 15 | http://223.110.241.203:6610/gitv/live1/G_CCTV-6-CQ/G_CCTV-6-CQ/ 16 | #EXTINF:001, CCTV7-高清 17 | http://223.110.241.203:6610/gitv/live1/G_CCTV-7-HQ/G_CCTV-7-HQ/ 18 | #EXTINF:001, CCTV8-高清 19 | http://223.110.241.203:6610/gitv/live1/G_CCTV-8-CQ/G_CCTV-8-CQ/ 20 | #EXTINF:001, CCTV9-高清 21 | http://223.110.241.204:6610/gitv/live1/G_CCTV-9/G_CCTV-9/ 22 | #EXTINF:001, CCTV10-高清 23 | http://223.110.241.203:6610/gitv/live1/G_CCTV-10-HQ/G_CCTV-10-HQ/ 24 | #EXTINF:001, CCTV11-高清 25 | http://223.110.241.204:6610/gitv/live1/G_CCTV-11-HQ/G_CCTV-11-HQ/ 26 | #EXTINF:001, CCTV12-高清 27 | http://223.110.241.203:6610/gitv/live1/CCTV-12/CCTV-12/ 28 | #EXTINF:001, CCTV13-高清 29 | http://223.110.241.203:6610/gitv/live1/G_CCTV-13-HQ/G_CCTV-13-HQ/ 30 | #EXTINF:001, CCTV14-高清 31 | http://223.110.241.203:6610/gitv/live1/G_CCTV-14/G_CCTV-14/ 32 | #EXTINF:002, 新闻综合HD 33 | rtsp://124.75.34.37/PLTV/88888888/224/3221226233/10000100000000060000000000813435_0.smil 34 | #EXTINF:003, 东方卫视HD 35 | rtsp://124.75.34.37/PLTV/88888888/224/3221226112/00000100000000060000000000037556_0.smil 36 | #EXTINF:004, 电视剧频道HD 37 | rtsp://124.75.34.37/PLTV/88888888/224/3221226220/10000100000000060000000000522062_0.smil 38 | #EXTINF:005, 第一财经HD 39 | rtsp://124.75.34.37/PLTV/88888888/224/3221226231/10000100000000060000000000813433_0.smil 40 | #EXTINF:006, 纪实频道HD 41 | rtsp://124.75.34.37/PLTV/88888888/224/3221226230/10000100000000060000000000646848_0.smil 42 | #EXTINF:007, 娱乐频道HD 43 | rtsp://124.75.34.37/PLTV/88888888/224/3221226219/10000100000000060000000000522063_0.smil 44 | #EXTINF:008, 五星体育HD 45 | rtsp://124.75.34.37/PLTV/88888888/224/3221226234/10000100000000060000000000813434_0.smil 46 | #EXTINF:010, 北京卫视HD 47 | rtsp://124.75.34.37/PLTV/88888888/224/3221226087/00000100000000060000000000007666_0.smil 48 | #EXTINF:011, 广东卫视HD 49 | rtsp://124.75.34.37/PLTV/88888888/224/3221226083/00000100000000060000000000005868_0.smil 50 | #EXTINF:012, 江苏卫视HD 51 | rtsp://124.75.34.37/PLTV/88888888/224/3221226110/00000100000000060000000000037546_0.smil 52 | #EXTINF:013, 浙江卫视HD 53 | rtsp://124.75.34.37/PLTV/88888888/224/3221226111/00000100000000060000000000037315_0.smil 54 | #EXTINF:014, 湖南卫视HD 55 | rtsp://124.75.34.37/PLTV/88888888/224/3221226086/00000100000000060000000000005881_0.smil 56 | #EXTINF:015, 黑龙江卫视HD 57 | rtsp://124.75.34.37/PLTV/88888888/224/3221226085/00000100000000060000000000005880_0.smil 58 | #EXTINF:016, 深圳卫视HD 59 | rtsp://124.75.34.37/PLTV/88888888/224/3221226084/00000100000000060000000000005879_0.smil 60 | #EXTINF:017, CCTV-1 61 | rtsp://124.75.34.37/PLTV/88888888/224/3221226079/00000100000000060000000000000305_0.smil 62 | #EXTINF:018, CCTV-2 63 | rtsp://124.75.34.37/PLTV/88888888/224/3221226078/00000100000000060000000000000321_0.smil 64 | #EXTINF:019, CCTV-3 65 | rtsp://124.75.34.37/PLTV/88888888/224/3221226109/00000100000000060000000000022679_0.smil 66 | #EXTINF:020, CCTV-4 67 | rtsp://124.75.34.37/PLTV/88888888/224/3221226082/00000100000000060000000000000558_0.smil 68 | #EXTINF:021, CCTV-5 69 | rtsp://124.75.34.37/PLTV/88888888/224/3221226105/00000100000000060000000000022370_0.smil 70 | #EXTINF:022, CCTV-6 71 | rtsp://124.75.34.37/PLTV/88888888/224/3221226106/00000100000000060000000000022371_0.smil 72 | #EXTINF:023, CCTV-7 73 | rtsp://124.75.34.37/PLTV/88888888/224/3221226155/00000100000000060000000000087195_0.smil 74 | #EXTINF:024, CCTV-10 75 | rtsp://124.75.34.37/PLTV/88888888/224/3221226157/00000100000000060000000000087197_0.smil 76 | #EXTINF:025, CCTV-11 77 | rtsp://124.75.34.37/PLTV/88888888/224/3221226166/00000100000000060000000000087198_0.smil 78 | #EXTINF:026, CCTV-12 79 | rtsp://124.75.34.37/PLTV/88888888/224/3221226159/00000100000000060000000000087199_0.smil 80 | #EXTINF:029, CCTV-少儿 81 | rtsp://124.75.34.37/PLTV/88888888/224/3221226161/00000100000000060000000000087201_0.smil 82 | #EXTINF:030, CCTV-新闻 83 | rtsp://124.75.34.37/PLTV/88888888/224/3221226168/00000100000000060000000000087200_0.smil 84 | #EXTINF:031, CCTV-音乐 85 | rtsp://124.75.34.37/PLTV/88888888/224/3221226170/00000100000000060000000000087202_0.smil 86 | #EXTINF:032, Knews24 87 | rtsp://124.75.34.37/PLTV/88888888/224/3221226183/00000100000000060000000000087278_2.smil 88 | #EXTINF:033, 东方电影 89 | rtsp://124.75.34.37/PLTV/88888888/224/3221226100/00000100000000060000000000007698_0.smil 90 | #EXTINF:034, 星尚 91 | rtsp://124.75.34.37/PLTV/88888888/224/3221226094/00000100000000060000000000007693_0.smil 92 | #EXTINF:035, 安徽卫视 93 | rtsp://124.75.34.37/PLTV/88888888/224/3221226126/00000100000000060000000000087158_0.smil 94 | #EXTINF:036, 北京卫视 95 | rtsp://124.75.34.37/PLTV/88888888/224/3221226145/00000100000000060000000000087185_0.smil 96 | #EXTINF:037, 兵团卫视 97 | rtsp://124.75.34.37/PLTV/88888888/224/3221226189/00000100000000060000000000152297_0.smil 98 | #EXTINF:038, 东南卫视 99 | rtsp://124.75.34.37/PLTV/88888888/224/3221226121/00000100000000060000000000087159_0.smil 100 | #EXTINF:039, 都市剧场 101 | rtsp://124.75.34.37/PLTV/88888888/224/3221226163/00000100000000060000000000087203_0.smil 102 | #EXTINF:040, 法治天地 103 | rtsp://124.75.34.37/PLTV/88888888/224/3221226162/00000100000000060000000000087194_0.smil 104 | #EXTINF:041, 甘肃卫视 105 | rtsp://124.75.34.37/PLTV/88888888/224/3221226131/00000100000000060000000000087169_0.smil 106 | #EXTINF:042, 广东卫视 107 | rtsp://124.75.34.37/PLTV/88888888/224/3221226138/00000100000000060000000000087170_0.smil 108 | #EXTINF:043, 广西卫视 109 | rtsp://124.75.34.37/PLTV/88888888/224/3221226158/00000100000000060000000000087190_0.smil 110 | #EXTINF:044, 贵州卫视 111 | rtsp://124.75.34.37/PLTV/88888888/224/3221226144/00000100000000060000000000087176_0.smil 112 | #EXTINF:045, 哈哈少儿 113 | rtsp://124.75.34.37/PLTV/88888888/224/3221226096/00000100000000060000000000007695_0.smil 114 | #EXTINF:046, 好享购物 115 | rtsp://124.75.34.37/PLTV/88888888/224/3221226260/10000100000000060000000001335174_0.smil 116 | #EXTINF:047, 河北卫视 117 | rtsp://124.75.34.37/PLTV/88888888/224/3221226140/00000100000000060000000000087172_0.smil 118 | #EXTINF:048, 河南卫视 119 | rtsp://124.75.34.37/PLTV/88888888/224/3221226124/00000100000000060000000000087104_0.smil 120 | #EXTINF:049, 黑龙江卫视 121 | rtsp://124.75.34.37/PLTV/88888888/224/3221226133/00000100000000060000000000087171_0.smil 122 | #EXTINF:050, 湖北卫视 123 | rtsp://124.75.34.37/PLTV/88888888/224/3221226142/00000100000000060000000000087174_0.smil 124 | #EXTINF:051, 欢笑剧场 125 | rtsp://124.75.34.37/PLTV/88888888/224/3221226146/00000100000000060000000000087178_0.smil 126 | #EXTINF:052, 吉林卫视 127 | rtsp://124.75.34.37/PLTV/88888888/224/3221226125/00000100000000060000000000087163_0.smil 128 | #EXTINF:053, 江苏卫视 129 | rtsp://124.75.34.37/PLTV/88888888/224/3221226147/00000100000000060000000000087187_0.smil 130 | #EXTINF:054, 教育频道 131 | rtsp://124.75.34.37/PLTV/88888888/224/3221226088/00000100000000060000000000007667_0.smil 132 | #EXTINF:055, 金鹰卡通 133 | rtsp://124.75.34.37/PLTV/88888888/224/3221226229/10000100000000060000000000734085_0.smil 134 | #EXTINF:056, 劲爆体育 135 | rtsp://124.75.34.37/PLTV/88888888/224/3221226148/00000100000000060000000000087180_0.smil 136 | #EXTINF:057, 辽宁卫视 137 | rtsp://124.75.34.37/PLTV/88888888/224/3221226153/00000100000000060000000000087193_0.smil 138 | #EXTINF:058, 旅游卫视 139 | rtsp://124.75.34.37/PLTV/88888888/224/3221226149/00000100000000060000000000087189_0.smil 140 | #EXTINF:059, 内蒙古卫视 141 | rtsp://124.75.34.37/PLTV/88888888/224/3221226135/00000100000000060000000000087173_0.smil 142 | #EXTINF:060, 宁夏卫视 143 | rtsp://124.75.34.37/PLTV/88888888/224/3221226152/00000100000000060000000000087184_0.smil 144 | #EXTINF:061, 青海卫视 145 | rtsp://124.75.34.37/PLTV/88888888/224/3221226127/00000100000000060000000000087165_0.smil 146 | #EXTINF:062, 全纪实 147 | rtsp://124.75.34.37/PLTV/88888888/224/3221226141/00000100000000060000000000087181_0.smil 148 | #EXTINF:063, 山东卫视 149 | rtsp://124.75.34.37/PLTV/88888888/224/3221226160/00000100000000060000000000087192_0.smil 150 | #EXTINF:064, 山西卫视 151 | rtsp://124.75.34.37/PLTV/88888888/224/3221226132/00000100000000060000000000087164_0.smil 152 | #EXTINF:065, 陕西卫视 153 | rtsp://124.75.34.37/PLTV/88888888/224/3221226129/00000100000000060000000000087167_0.smil 154 | #EXTINF:066, 深圳卫视 155 | rtsp://124.75.34.37/PLTV/88888888/224/3221226204/00000100000000060000000000152298_0.smil 156 | #EXTINF:067, 生活时尚 157 | rtsp://124.75.34.37/PLTV/88888888/224/3221226139/00000100000000060000000000087179_0.smil 158 | #EXTINF:068, 时尚购物 159 | rtsp://124.75.34.37/PLTV/88888888/224/3221226273/10000100000000060000000001533614_0.smil 160 | #EXTINF:069, 四川卫视 161 | rtsp://124.75.34.37/PLTV/88888888/224/3221226151/00000100000000060000000000087191_0.smil 162 | #EXTINF:070, 体育频道 163 | rtsp://124.75.34.37/PLTV/88888888/224/3221226107/00000100000000060000000000022372_0.smil 164 | #EXTINF:071, 天津卫视 165 | rtsp://124.75.34.37/PLTV/88888888/224/3221226123/00000100000000060000000000087161_0.smil 166 | #EXTINF:072, 西藏卫视 167 | rtsp://124.75.34.37/PLTV/88888888/224/3221226134/00000100000000060000000000087166_0.smil 168 | #EXTINF:073, 新疆卫视 169 | rtsp://124.75.34.37/PLTV/88888888/224/3221226187/00000100000000060000000000152294_0.smil 170 | #EXTINF:074, 新视觉体育 171 | rtsp://124.75.34.37/PLTV/88888888/224/3221226104/00000100000000060000000000010162_0.smil 172 | #EXTINF:075, 炫动卡通 173 | rtsp://124.75.34.37/PLTV/88888888/224/3221226077/00000100000000060000000000000293_0.smil 174 | #EXTINF:076, 艺术人文 175 | rtsp://124.75.34.37/PLTV/88888888/224/3221226092/00000100000000060000000000007691_0.smil 176 | #EXTINF:077, 云南卫视 177 | rtsp://124.75.34.37/PLTV/88888888/224/3221226136/00000100000000060000000000087168_0.smil 178 | #EXTINF:078, 浙江卫视 179 | rtsp://124.75.34.37/PLTV/88888888/224/3221226156/00000100000000060000000000087188_0.smil 180 | #EXTINF:079, 重庆卫视 181 | rtsp://124.75.34.37/PLTV/88888888/224/3221226137/00000100000000060000000000087175_0.smil -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 45 | 46 | 167 | 168 | 192 | 193 | 203 | -------------------------------------------------------------------------------- /src/components/modal-custom.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 43 | 44 | 50 | -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- 1 | export const udpxyDefault = 'http://192.168.1.4:8012'; 2 | 3 | export const filename = 'bj-unicom-iptv'; 4 | -------------------------------------------------------------------------------- /src/img/icon-vlc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 11 | 13 | 14 | 15 | 17 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /src/lib/compare-channel.js: -------------------------------------------------------------------------------- 1 | const compareChannel = (a, b) => 2 | parseInt(a.UserChannelID, 10) - parseInt(b.UserChannelID, 10); 3 | 4 | export default compareChannel; 5 | -------------------------------------------------------------------------------- /src/lib/download.js: -------------------------------------------------------------------------------- 1 | const download = (filename, content) => { 2 | const blob = new Blob([content]); 3 | 4 | const a = document.createElement('a'); 5 | 6 | a.href = URL.createObjectURL(blob); 7 | 8 | a.download = filename; 9 | 10 | a.style.display = 'none'; 11 | 12 | document.body.appendChild(a); 13 | 14 | a.click(); 15 | 16 | document.body.removeChild(a); 17 | }; 18 | 19 | export default download; 20 | -------------------------------------------------------------------------------- /src/lib/format-with-proxy.js: -------------------------------------------------------------------------------- 1 | import getOrigin from "./get-origin"; 2 | 3 | const formatWithProxy = (url, proxy, proxyDefault) => { 4 | const prefix = getOrigin(proxy) || proxyDefault; 5 | 6 | if (!prefix) { 7 | return url; 8 | } 9 | 10 | const path = url.replace(/^\w+:\/\//, "/rtp/"); 11 | 12 | return `${prefix}${path}`; 13 | }; 14 | 15 | export default formatWithProxy; 16 | -------------------------------------------------------------------------------- /src/lib/generate-m3u.js: -------------------------------------------------------------------------------- 1 | const generateM3u = (title, arr) => `#EXTM3U name="${title}"\n${ 2 | arr.map(({ 3 | name, 4 | url, 5 | }) => `#EXTINF:-1,${name}\n${url}`) 6 | .join('\n') 7 | }`; 8 | 9 | export default generateM3u; 10 | -------------------------------------------------------------------------------- /src/lib/get-origin.js: -------------------------------------------------------------------------------- 1 | const getOrigin = (input) => { 2 | const reg = /^http:\/\/[^/:]+(?::\d+)?/; 3 | 4 | const matches = input.match(reg); 5 | 6 | if (!matches) { 7 | return ''; 8 | } 9 | 10 | return matches[0]; 11 | }; 12 | 13 | export default getOrigin; 14 | -------------------------------------------------------------------------------- /src/lib/parse-channels.js: -------------------------------------------------------------------------------- 1 | const parseChannel = (str) => { 2 | const reg = /(\w+)="([^"]+)"/g; 3 | 4 | const ret = {}; 5 | 6 | for (;;) { 7 | const matches = reg.exec(str); 8 | 9 | if (!matches) { 10 | break; 11 | } 12 | 13 | ret[matches[1]] = matches[2]; 14 | } 15 | 16 | return ret; 17 | }; 18 | 19 | const parseChannels = (str) => { 20 | const ret = []; 21 | 22 | const reg = /CU_CTC_Auther\('Channel',([^)]+)\)/g; 23 | 24 | for (;;) { 25 | const matches = reg.exec(str); 26 | 27 | if (!matches) { 28 | break; 29 | } 30 | 31 | const info = parseChannel(matches[1]); 32 | 33 | ret.push(info); 34 | } 35 | 36 | return ret; 37 | }; 38 | 39 | export default parseChannels; 40 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue'; 2 | import Message from 'iview/src/components/message'; 3 | 4 | import 'iview/dist/styles/iview.css'; 5 | 6 | import App from './App'; 7 | 8 | Vue.prototype.$Message = Message; 9 | 10 | Vue.config.productionTip = false; 11 | 12 | /* eslint-disable no-new */ 13 | new Vue({ 14 | el: '#app', 15 | render: h => h(App), 16 | }); 17 | -------------------------------------------------------------------------------- /t.t: -------------------------------------------------------------------------------- 1 | #EXTM3U name="allen-iptv" 2 | #EXTINF:-1 tvg-num="1" tvg-id="ORF1.de" tvg-logo="http://p3.img.cctvpic.com/photoAlbum/templet/common/DEPA1367457523502574/cctv1_20160328.png", 艺术人文 -------------------------------------------------------------------------------- /unicom_iptv.m3u: -------------------------------------------------------------------------------- 1 | #EXTM3U name="allen-unicom-iptv" 2 | #EXTINF:-1,CCTV1高清 3 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225871/10000100000000060000000000219040_0.smil 4 | #EXTINF:-1,CCTV2高清 5 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221226043/10000100000000060000000000286778_0.smil 6 | #EXTINF:-1,CCTV3高清 7 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225790/10000100000000060000000000215615_0.smil 8 | #EXTINF:-1,CCTV4高清 9 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225798/10000100000000060000000000216964_0.smil 10 | #EXTINF:-1,CCTV5高清 11 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225791/10000100000000060000000000215620_0.smil 12 | #EXTINF:-1,CCTV6高清 13 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225786/10000100000000060000000000215621_0.smil 14 | #EXTINF:-1,CCTV7高清 15 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221226044/10000100000000060000000000291607_0.smil 16 | #EXTINF:-1,CCTV8高清 17 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225793/10000100000000060000000000215626_0.smil 18 | #EXTINF:-1,CCTV9高清 19 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225867/10000100000000060000000000219049_0.smil 20 | #EXTINF:-1,CCTV10高清 21 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221226045/10000100000000060000000000291610_0.smil 22 | #EXTINF:-1,CCTV11 23 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225801/10000100000000060000000000215662_0.smil 24 | #EXTINF:-1,CCTV12高清 25 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221226046/10000100000000060000000000291609_0.smil 26 | #EXTINF:-1,CCTV13 27 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225803/10000100000000060000000000215665_0.smil 28 | #EXTINF:-1,CCTV14高清 29 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221226047/10000100000000060000000000291608_0.smil 30 | #EXTINF:-1,CCTV15 31 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225805/10000100000000060000000000215669_0.smil 32 | #EXTINF:-1,CGTN 33 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221226003/10000100000000060000000000272198_0.smil 34 | #EXTINF:-1,CCTV-5+高清 35 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225876/10000100000000060000000000215725_0.smil 36 | #EXTINF:-1,湖南卫视高清 37 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225870/10000100000000060000000000219041_0.smil 38 | #EXTINF:-1,浙江卫视高清 39 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225866/10000100000000060000000000219050_0.smil 40 | #EXTINF:-1,江苏卫视高清 41 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225872/10000100000000060000000000215718_0.smil 42 | #EXTINF:-1,北京卫视高清 43 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225868/10000100000000060000000000219046_0.smil 44 | #EXTINF:-1,东方卫视高清 45 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225875/10000100000000060000000000215734_0.smil 46 | #EXTINF:-1,天津卫视高清 47 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225880/10000100000000060000000000215743_0.smil 48 | #EXTINF:-1,魅力时尚 49 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225927/10000100000000060000000000218867_0.smil 50 | #EXTINF:-1,深圳卫视高清 51 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225818/10000100000000060000000000215701_0.smil 52 | #EXTINF:-1,山东卫视高清 53 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225869/10000100000000060000000000219044_0.smil 54 | #EXTINF:-1,广东卫视高清 55 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225881/10000100000000060000000000215744_0.smil 56 | #EXTINF:-1,黑龙江卫视高清 57 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225874/10000100000000060000000000215723_0.smil 58 | #EXTINF:-1,安徽卫视高清 59 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225878/10000100000000060000000000215738_0.smil 60 | #EXTINF:-1,湖北卫视高清 61 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225879/10000100000000060000000000215740_0.smil 62 | #EXTINF:-1,上海纪实 63 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225877/10000100000000060000000000215730_0.smil 64 | #EXTINF:-1,重庆卫视高清 65 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225860/10000100000000060000000000218145_0.smil 66 | #EXTINF:-1,贵州卫视高清 67 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225933/10000100000000060000000000218816_0.smil 68 | #EXTINF:-1,吉林卫视高清 69 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225883/10000100000000060000000000219958_0.smil 70 | #EXTINF:-1,云南卫视 71 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225886/10000100000000060000000000219954_0.smil 72 | #EXTINF:-1,广西卫视 73 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225859/10000100000000060000000000218146_0.smil 74 | #EXTINF:-1,陕西卫视 75 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225854/10000100000000060000000000218161_0.smil 76 | #EXTINF:-1,青海卫视 77 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225936/10000100000000060000000000218822_0.smil 78 | #EXTINF:-1,旅游卫视 79 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225863/10000100000000060000000000218139_0.smil 80 | #EXTINF:-1,宁夏卫视 81 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225935/10000100000000060000000000218820_0.smil 82 | #EXTINF:-1,西藏卫视 83 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225938/10000100000000060000000000218826_0.smil 84 | #EXTINF:-1,新疆卫视 85 | rtsp://60.213.13.203:554/PLTV/88888888/224/3221225942/10000100000000060000000000218836_0.smil 86 | -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | outputDir: 'docs', 3 | baseUrl: '', 4 | } 5 | -------------------------------------------------------------------------------- /yd.m3u: -------------------------------------------------------------------------------- 1 | #EXTM3U name="allen-iptv" 2 | #EXTINF:-1,CCTV-1 3 | http://ivi.bupt.edu.cn/hls/cctv1hd.m3u8 4 | #EXTINF:-1,CCTV-2 5 | http://ivi.bupt.edu.cn/hls/cctv2.m3u8 6 | #EXTINF:-1,CCTV-3 7 | http://ivi.bupt.edu.cn/hls/cctv3hd.m3u8 8 | #EXTINF:-1,CCTV-4 9 | http://ivi.bupt.edu.cn/hls/cctv4.m3u8 10 | #EXTINF:-1,CCTV-5 11 | http://ivi.bupt.edu.cn/hls/cctv5phd.m3u8 12 | #EXTINF:-1,CCTV-6 13 | http://ivi.bupt.edu.cn/hls/cctv6hd.m3u8 14 | #EXTINF:-1,CCTV-7# 15 | http://ivi.bupt.edu.cn/hls/cctv7.m3u8 16 | #EXTINF:-1,CCTV-8 17 | http://ivi.bupt.edu.cn/hls/cctv8hd.m3u8 18 | #EXTINF:-1,CCTV-9 19 | http://ivi.bupt.edu.cn/hls/cctv9.m3u8 20 | #EXTINF:-1,CCTV-10 21 | http://ivi.bupt.edu.cn/hls/cctv10.m3u8 22 | #EXTINF:-1,CCTV-11 23 | http://ivi.bupt.edu.cn/hls/cctv11.m3u8 24 | #EXTINF:-1,CCTV-12 25 | http://ivi.bupt.edu.cn/hls/cctv12.m3u8 26 | #EXTINF:-1,CCTV-13 27 | http://ivi.bupt.edu.cn/hls/cctv13.m3u8 28 | #EXTINF:-1,CCTV-14 29 | http://ivi.bupt.edu.cn/hls/cctv14.m3u8 30 | #EXTINF:-1,CCTV-15 31 | http://ivi.bupt.edu.cn/hls/cctv15.m3u8 32 | #EXTINF:-1,CCTV-16 33 | http://ivi.bupt.edu.cn/hls/cctv16.m3u8 34 | #EXTINF:-1,CHC高清电影 35 | http://ivi.bupt.edu.cn/hls/chchd.m3u8 36 | #EXTINF:-1,东方卫视 37 | http://ivi.bupt.edu.cn/hls/dfhd.m3u8 38 | #EXTINF:-1,江苏卫视 39 | http://ivi.bupt.edu.cn/hls/jshd.m3u8 40 | #EXTINF:-1,湖北卫视 41 | http://ivi.bupt.edu.cn/hls/hbhd.m3u8 42 | #EXTINF:-1,安徽卫视 43 | http://ivi.bupt.edu.cn/hls/ahhd.m3u8 44 | #EXTINF:-1,四川卫视 45 | http://ivi.bupt.edu.cn/hls/sctv.m3u8 46 | #EXTINF:-1,深圳卫视 47 | http://ivi.bupt.edu.cn/hls/szhd.m3u8 48 | #EXTINF:-1,天津卫视 49 | http://ivi.bupt.edu.cn/hls/tjhd.m3u8 50 | #EXTINF:-1,浙江卫视 51 | http://ivi.bupt.edu.cn/hls/zjhd.m3u8 52 | #EXTINF:-1,江西卫视 53 | http://ivi.bupt.edu.cn/hls/jxtv.m3u8 54 | #EXTINF:-1,重庆卫视 55 | http://ivi.bupt.edu.cn/hls/cqhd.m3u8 56 | #EXTINF:-1,山东卫视 57 | http://ivi.bupt.edu.cn/hls/sdhd.m3u8 58 | #EXTINF:-1,辽宁卫视 59 | http://ivi.bupt.edu.cn/hls/lnhd.m3u8 60 | #EXTINF:-1,黑龙江卫视 61 | http://ivi.bupt.edu.cn/hls/hljhd.m3u8 62 | #EXTINF:-1,湖南卫视 63 | http://ivi.bupt.edu.cn/hls/hunanhd.m3u8 64 | #EXTINF:-1,北京卫视 65 | http://ivi.bupt.edu.cn/hls/btv1hd.m3u8 66 | #EXTINF:-1,厦门卫视 67 | http://ivi.bupt.edu.cn/hls/xmtv.m3u8 68 | #EXTINF:-1,贵州卫视 69 | http://ivi.bupt.edu.cn/hls/gztv.m3u8 70 | #EXTINF:-1,北京影视 71 | http://ivi.bupt.edu.cn/hls/btv4.m3u8 72 | 73 | -------------------------------------------------------------------------------- /yxgl.m3u: -------------------------------------------------------------------------------- 1 | #EXTM3U name="allen-yxgl-iptv" 2 | #EXTINF:-1,延禧攻略 16 3 | https://v-360kan.com/20180722/3588_400dfaa1/index.m3u8 4 | #EXTINF:-1,延禧攻略 17 5 | https://m.bwzybf.com/20180726/EPGS2KNO/index.m3u8 6 | #EXTINF:-1,延禧攻略 18 7 | https://cn2.zuidadianying.com/20180727/V7beU3qF/index.m3u8 8 | #EXTINF:-1,延禧攻略 19 9 | https://qq.com-v-qq.com/20180727/3863_9e20cf24/index.m3u8 10 | #EXTINF:-1,延禧攻略 20 11 | https://youku163.zuida-bofang.com/20180727/10265_33f80a0f/index.m3u8 12 | #EXTINF:-1,延禧攻略 21 13 | https://v4.438vip.com/20180729/U2j18VMt/index.m3u8 14 | #EXTINF:-1,延禧攻略 22 15 | https://v4.438vip.com/20180729/C6vjJjAE/index.m3u8 16 | #EXTINF:-1,延禧攻略 23 17 | https://m.bwzybf.com/20180729/lVnCLyZV/index.m3u8 18 | #EXTINF:-1,延禧攻略 24 19 | https://sohu.zuida-163sina.com/20180730/7GAU9MDa/index.m3u8 20 | #EXTINF:-1,延禧攻略 25 21 | https://qq.com-v-qq.com/20180802/4139_4d7d9b3f/index.m3u8 22 | #EXTINF:-1,延禧攻略 26 23 | https://www2.yuboyun.com/hls/2018/08/02/lwfQg0oZ/playlist.m3u8 24 | #EXTINF:-1,延禧攻略 27 25 | https://zy.kakazy-yun.com/20180803/nFce5t1o/index.m3u8 26 | #EXTINF:-1,延禧攻略 28 27 | https://www2.yuboyun.com/hls/2018/08/03/yd5oLQXh/playlist.m3u8 28 | #EXTINF:-1,延禧攻略 29 29 | https://new.jsyunbf.com/20180805/iRDNGscW/index.m3u8 30 | #EXTINF:-1,延禧攻略 30 31 | https://m.bwzybf.com/20180804/kYPv9nvU/index.m3u8 32 | #EXTINF:-1,延禧攻略 31 33 | https://qq.com-v-qq.com/20180805/4250_8e255b8a/index.m3u8 34 | #EXTINF:-1,延禧攻略 32 35 | https://yun.kubo-zy-youku.com/20180805/sh41ew25/index.m3u8 36 | #EXTINF:-1,延禧攻略 33 37 | https://new.jsyunbf.com/20180807/ymkCIzcz/index.m3u8 38 | #EXTINF:-1,延禧攻略 34 39 | https://zy.kakazy-yun.com/20180807/pgEt8eRh/index.m3u8 40 | #EXTINF:-1,延禧攻略 35 41 | https://www2.yuboyun.com/hls/2018/08/09/DUeEsgzd/playlist.m3u8 42 | #EXTINF:-1,延禧攻略 36 43 | https://qq.com-v-qq.com/20180808/4398_304b83b6/index.m3u8 44 | #EXTINF:-1,延禧攻略 37 45 | https://www2.yuboyun.com/hls/2018/08/09/rtKRAblt/playlist.m3u8 46 | #EXTINF:-1,延禧攻略 38 47 | https://youku163.zuida-bofang.com/20180809/11348_e7eb8872/index.m3u8 48 | #EXTINF:-1,延禧攻略 39 49 | https://new.jsyunbf.com/20180810/n5OrOl62/index.m3u8 50 | #EXTINF:-1,延禧攻略 40 51 | https://fuli.zuida-youku-le.com/20180810/31470_97d55b3b/index.m3u8 -------------------------------------------------------------------------------- /zyd.m3u: -------------------------------------------------------------------------------- 1 | #EXTM3U name="allen-ydtv" 2 | #EXTINF:-1,CCTV-1综合 3 | http://ott.js.chinamobile.com/PLTV/3/224/3221226316/index.m3u8 4 | #EXTINF:-1,CCTV-1综合 5 | http://ott.js.chinamobile.com/PLTV/3/224/3221225530/index.m3u8 6 | #EXTINF:-1,CCTV-1综合 7 | http://ott.js.chinamobile.com/PLTV/3/224/3221225852/index.m3u8 8 | #EXTINF:-1,CCTV-1综合 9 | http://ott.js.chinamobile.com/PLTV/3/224/3221226998/index.m3u8 10 | #EXTINF:-1,新疆卫视 11 | http://ott.js.chinamobile.com/PLTV/3/224/3221225523/index.m3u8 12 | #EXTINF:-1,NewsTV 爱情喜剧 13 | http://ott.js.chinamobile.com/PLTV/3/224/3221225525/index.m3u8 14 | #EXTINF:-1,NewsTV 古装剧场 15 | http://ott.js.chinamobile.com/PLTV/3/224/3221225527/index.m3u8 16 | #EXTINF:-1,NewsTV 动作电影 17 | http://ott.js.chinamobile.com/PLTV/3/224/3221225529/index.m3u8 18 | #EXTINF:-1,NewsTV 军旅剧场 19 | http://ott.js.chinamobile.com/PLTV/3/224/3221225531/index.m3u8 20 | #EXTINF:-1,CCTV-9记录 21 | http://ott.js.chinamobile.com/PLTV/3/224/3221225532/index.m3u8 22 | #EXTINF:-1,NewsTV 军事评论 23 | http://ott.js.chinamobile.com/PLTV/3/224/3221225533/index.m3u8 24 | #EXTINF:-1,CCTV-4中文国际 25 | http://ott.js.chinamobile.com/PLTV/3/224/3221225534/index.m3u8 26 | #EXTINF:-1,NewsTV 明星大片 27 | http://ott.js.chinamobile.com/PLTV/3/224/3221225535/index.m3u8 28 | #EXTINF:-1,江西卫视 29 | http://ott.js.chinamobile.com/PLTV/3/224/3221225536/index.m3u8 30 | #EXTINF:-1,NewsTV 农业致富 31 | http://ott.js.chinamobile.com/PLTV/3/224/3221225537/index.m3u8 32 | #EXTINF:-1,NewsTV 电竞 33 | http://ott.js.chinamobile.com/PLTV/3/224/3221225539/index.m3u8 34 | #EXTINF:-1,贵州卫视 35 | http://ott.js.chinamobile.com/PLTV/3/224/3221225540/index.m3u8 36 | #EXTINF:-1,NewsTV 精品体育 37 | http://ott.js.chinamobile.com/PLTV/3/224/3221225543/index.m3u8 38 | #EXTINF:-1,浙江卫视 39 | http://ott.js.chinamobile.com/PLTV/3/224/3221225544/index.m3u8 40 | #EXTINF:-1,NewsTV 健康有约 41 | http://ott.js.chinamobile.com/PLTV/3/224/3221225545/index.m3u8 42 | #EXTINF:-1,CCTV-7军事农业 43 | http://ott.js.chinamobile.com/PLTV/3/224/3221225546/index.m3u8 44 | #EXTINF:-1,NewsTV 海外剧场 45 | http://ott.js.chinamobile.com/PLTV/3/224/3221225547/index.m3u8 46 | #EXTINF:-1,CCTV-6电影 47 | http://ott.js.chinamobile.com/PLTV/3/224/3221225548/index.m3u8 48 | #EXTINF:-1,NewsTV 家庭剧场 49 | http://ott.js.chinamobile.com/PLTV/3/224/3221225549/index.m3u8 50 | #EXTINF:-1,CCTV-10科教 51 | http://ott.js.chinamobile.com/PLTV/3/224/3221225550/index.m3u8 52 | #EXTINF:-1,CCTV-11戏曲 53 | http://ott.js.chinamobile.com/PLTV/3/224/3221225552/index.m3u8 54 | #EXTINF:-1,广西卫视 55 | http://ott.js.chinamobile.com/PLTV/3/224/3221225554/index.m3u8 56 | #EXTINF:-1,NewsTV 动画王国 57 | http://ott.js.chinamobile.com/PLTV/3/224/3221225555/index.m3u8 58 | #EXTINF:-1,CCTV-12社会与法 59 | http://ott.js.chinamobile.com/PLTV/3/224/3221225556/index.m3u8 60 | #EXTINF:-1,NewsTV 精品记录 61 | http://ott.js.chinamobile.com/PLTV/3/224/3221225557/index.m3u8 62 | #EXTINF:-1,东方卫视 63 | http://ott.js.chinamobile.com/PLTV/3/224/3221225558/index.m3u8 64 | #EXTINF:-1,NewsTV 金牌综艺 65 | http://ott.js.chinamobile.com/PLTV/3/224/3221225559/index.m3u8 66 | #EXTINF:-1,CCTV-13新闻 67 | http://ott.js.chinamobile.com/PLTV/3/224/3221225560/index.m3u8 68 | #EXTINF:-1,NewsTV 惊悚悬疑 69 | http://ott.js.chinamobile.com/PLTV/3/224/3221225561/index.m3u8 70 | #EXTINF:-1,天津卫视 71 | http://ott.js.chinamobile.com/PLTV/3/224/3221225562/index.m3u8 72 | #EXTINF:-1,辽宁卫视 73 | http://ott.js.chinamobile.com/PLTV/3/224/3221225566/index.m3u8 74 | #EXTINF:-1,NewsTV 精品电影 75 | http://ott.js.chinamobile.com/PLTV/3/224/3221225567/index.m3u8 76 | #EXTINF:-1,CCTV-15音乐 77 | http://ott.js.chinamobile.com/PLTV/3/224/3221225568/index.m3u8 78 | #EXTINF:-1,NewsTV 精品大剧 79 | http://ott.js.chinamobile.com/PLTV/3/224/3221225569/index.m3u8 80 | #EXTINF:-1,四川卫视 81 | http://ott.js.chinamobile.com/PLTV/3/224/3221225570/index.m3u8 82 | #EXTINF:-1,CGTN-英文 83 | http://ott.js.chinamobile.com/PLTV/3/224/3221225572/index.m3u8 84 | #EXTINF:-1,北京卫视 85 | http://ott.js.chinamobile.com/PLTV/3/224/3221225574/index.m3u8 86 | #EXTINF:-1,山西卫视 87 | http://ott.js.chinamobile.com/PLTV/3/224/3221225576/index.m3u8 88 | #EXTINF:-1,广东卫视 89 | http://ott.js.chinamobile.com/PLTV/3/224/3221225578/index.m3u8 90 | #EXTINF:-1,西藏卫视 91 | http://ott.js.chinamobile.com/PLTV/3/224/3221225579/index.m3u8 92 | #EXTINF:-1,青海卫视 93 | http://ott.js.chinamobile.com/PLTV/3/224/3221225580/index.m3u8 94 | #EXTINF:-1,深圳卫视 95 | http://ott.js.chinamobile.com/PLTV/3/224/3221225582/index.m3u8 96 | #EXTINF:-1,山东卫视 97 | http://ott.js.chinamobile.com/PLTV/3/224/3221225586/index.m3u8 98 | #EXTINF:-1,CCTV-3综艺 99 | http://ott.js.chinamobile.com/PLTV/3/224/3221225588/index.m3u8 100 | #EXTINF:-1,甘肃卫视 101 | http://ott.js.chinamobile.com/PLTV/3/224/3221225590/index.m3u8 102 | #EXTINF:-1,云南卫视 103 | http://ott.js.chinamobile.com/PLTV/3/224/3221225591/index.m3u8 104 | #EXTINF:-1,广东卫视HD 105 | http://ott.js.chinamobile.com/PLTV/3/224/3221225592/index.m3u8 106 | #EXTINF:-1,重庆卫视HD 107 | http://ott.js.chinamobile.com/PLTV/3/224/3221225594/index.m3u8 108 | #EXTINF:-1,东南卫视 109 | http://ott.js.chinamobile.com/PLTV/3/224/3221225598/index.m3u8 110 | #EXTINF:-1,河北卫视 111 | http://ott.js.chinamobile.com/PLTV/3/224/3221225602/index.m3u8 112 | #EXTINF:-1,CCTV-5+体育赛事 113 | http://ott.js.chinamobile.com/PLTV/3/224/3221225604/index.m3u8 114 | #EXTINF:-1,SDCETV 115 | http://ott.js.chinamobile.com/PLTV/3/224/3221225614/index.m3u8 116 | #EXTINF:-1,BTV卡酷少儿 117 | http://ott.js.chinamobile.com/PLTV/3/224/3221225616/index.m3u8 118 | #EXTINF:-1,金鹰卡通 119 | http://ott.js.chinamobile.com/PLTV/3/224/3221225620/index.m3u8 120 | #EXTINF:-1,CETV-1教育 121 | http://ott.js.chinamobile.com/PLTV/3/224/3221225622/index.m3u8 122 | #EXTINF:-1,内蒙古卫视 123 | http://ott.js.chinamobile.com/PLTV/3/224/3221225624/index.m3u8 124 | #EXTINF:-1,陕西卫视 125 | http://ott.js.chinamobile.com/PLTV/3/224/3221225626/index.m3u8 126 | #EXTINF:-1,宁夏卫视 127 | http://ott.js.chinamobile.com/PLTV/3/224/3221225628/index.m3u8 128 | #EXTINF:-1,湖北卫视 129 | http://ott.js.chinamobile.com/PLTV/3/224/3221225630/index.m3u8 130 | #EXTINF:-1,安徽卫视 131 | http://ott.js.chinamobile.com/PLTV/3/224/3221225634/index.m3u8 132 | #EXTINF:-1,炫动卡通 133 | http://ott.js.chinamobile.com/PLTV/3/224/3221225694/index.m3u8 134 | #EXTINF:-1,CCTV-4中文国际 135 | http://ott.js.chinamobile.com/PLTV/3/224/3221225781/index.m3u8 136 | #EXTINF:-1,江苏卫视 137 | http://ott.js.chinamobile.com/PLTV/3/224/3221225782/index.m3u8 138 | #EXTINF:-1,青海卫视 139 | http://ott.js.chinamobile.com/PLTV/3/224/3221225783/index.m3u8 140 | #EXTINF:-1,山西卫视HD 141 | http://ott.js.chinamobile.com/PLTV/3/224/3221225786/index.m3u8 142 | #EXTINF:-1,贵州卫视 143 | http://ott.js.chinamobile.com/PLTV/3/224/3221225787/index.m3u8 144 | #EXTINF:-1,江西卫视 145 | http://ott.js.chinamobile.com/PLTV/3/224/3221225798/index.m3u8 146 | #EXTINF:-1,安徽卫视HD 147 | http://ott.js.chinamobile.com/PLTV/3/224/3221225800/index.m3u8 148 | #EXTINF:-1,辽宁卫视 149 | http://ott.js.chinamobile.com/PLTV/3/224/3221225802/index.m3u8 150 | #EXTINF:-1,CCTV-12社会与法 151 | http://ott.js.chinamobile.com/PLTV/3/224/3221225803/index.m3u8 152 | #EXTINF:-1,山东卫视 153 | http://ott.js.chinamobile.com/PLTV/3/224/3221225804/index.m3u8 154 | #EXTINF:-1,广西卫视 155 | http://ott.js.chinamobile.com/PLTV/3/224/3221225806/index.m3u8 156 | #EXTINF:-1,天津卫视HD 157 | http://ott.js.chinamobile.com/PLTV/3/224/3221225808/index.m3u8 158 | #EXTINF:-1,旅游卫视HD 159 | http://ott.js.chinamobile.com/PLTV/3/224/3221225810/index.m3u8 160 | #EXTINF:-1,重庆卫视HD 161 | http://ott.js.chinamobile.com/PLTV/3/224/3221225812/index.m3u8 162 | #EXTINF:-1,CCTV-14少儿HD 163 | http://ott.js.chinamobile.com/PLTV/3/224/3221225813/index.m3u8 164 | #EXTINF:-1,四川卫视HD 165 | http://ott.js.chinamobile.com/PLTV/3/224/3221225814/index.m3u8 166 | #EXTINF:-1,河南卫视HD 167 | http://ott.js.chinamobile.com/PLTV/3/224/3221225815/index.m3u8 168 | #EXTINF:-1,东南卫视 169 | http://ott.js.chinamobile.com/PLTV/3/224/3221225816/index.m3u8 170 | #EXTINF:-1,CCTV-15音乐 171 | http://ott.js.chinamobile.com/PLTV/3/224/3221225817/index.m3u8 172 | #EXTINF:-1,内蒙古卫视HD 173 | http://ott.js.chinamobile.com/PLTV/3/224/3221225836/index.m3u8 174 | #EXTINF:-1,云南卫视HD 175 | http://ott.js.chinamobile.com/PLTV/3/224/3221225838/index.m3u8 176 | #EXTINF:-1,河北卫视 177 | http://ott.js.chinamobile.com/PLTV/3/224/3221225840/index.m3u8 178 | #EXTINF:-1,宁夏卫视 179 | http://ott.js.chinamobile.com/PLTV/3/224/3221225842/index.m3u8 180 | #EXTINF:-1,新疆卫视 181 | http://ott.js.chinamobile.com/PLTV/3/224/3221225844/index.m3u8 182 | #EXTINF:-1,甘肃卫视 183 | http://ott.js.chinamobile.com/PLTV/3/224/3221225846/index.m3u8 184 | #EXTINF:-1,CETV-2教育 185 | http://ott.js.chinamobile.com/PLTV/3/224/3221225850/index.m3u8 186 | #EXTINF:-1,湖南卫视 187 | http://ott.js.chinamobile.com/PLTV/3/224/3221225854/index.m3u8 188 | #EXTINF:-1,东方卫视 189 | http://ott.js.chinamobile.com/PLTV/3/224/3221225856/index.m3u8 190 | #EXTINF:-1,北京卫视 191 | http://ott.js.chinamobile.com/PLTV/3/224/3221225858/index.m3u8 192 | #EXTINF:-1,浙江卫视 193 | http://ott.js.chinamobile.com/PLTV/3/224/3221225860/index.m3u8 194 | #EXTINF:-1,深圳卫视 195 | http://ott.js.chinamobile.com/PLTV/3/224/3221225862/index.m3u8 196 | #EXTINF:-1,广东卫视 197 | http://ott.js.chinamobile.com/PLTV/3/224/3221225864/index.m3u8 198 | #EXTINF:-1,CCTV-8电视剧 199 | http://ott.js.chinamobile.com/PLTV/3/224/3221225866/index.m3u8 200 | #EXTINF:-1,CCTV-9记录 201 | http://ott.js.chinamobile.com/PLTV/3/224/3221225868/index.m3u8 202 | #EXTINF:-1,湖北卫视 203 | http://ott.js.chinamobile.com/PLTV/3/224/3221225877/index.m3u8 204 | #EXTINF:-1,CCTV-2财经 205 | http://ott.js.chinamobile.com/PLTV/3/224/3221225881/index.m3u8 206 | #EXTINF:-1,吉林卫视 207 | http://ott.js.chinamobile.com/PLTV/3/224/3221225883/index.m3u8 208 | #EXTINF:-1,吉林卫视 209 | http://ott.js.chinamobile.com/PLTV/3/224/3221225883/index.m3u8 210 | #EXTINF:-1,北京卫视 211 | http://ott.js.chinamobile.com/PLTV/3/224/3221225902/index.m3u8 212 | #EXTINF:-1,东方卫视 213 | http://ott.js.chinamobile.com/PLTV/3/224/3221225904/index.m3u8 214 | #EXTINF:-1,广东卫视 215 | http://ott.js.chinamobile.com/PLTV/3/224/3221225906/index.m3u8 216 | #EXTINF:-1,湖南卫视 217 | http://ott.js.chinamobile.com/PLTV/3/224/3221225908/index.m3u8 218 | #EXTINF:-1,CETV-1教育 219 | http://ott.js.chinamobile.com/PLTV/3/224/3221225909/index.m3u8 220 | #EXTINF:-1,CGTN-英文 221 | http://ott.js.chinamobile.com/PLTV/3/224/3221225917/index.m3u8 222 | #EXTINF:-1,江苏教育 223 | http://ott.js.chinamobile.com/PLTV/3/224/3221225923/index.m3u8 224 | #EXTINF:-1,江苏公共新闻 225 | http://ott.js.chinamobile.com/PLTV/3/224/3221225925/index.m3u8 226 | #EXTINF:-1,江苏城市 227 | http://ott.js.chinamobile.com/PLTV/3/224/3221225929/index.m3u8 228 | #EXTINF:-1,江苏综艺 229 | http://ott.js.chinamobile.com/PLTV/3/224/3221225931/index.m3u8 230 | #EXTINF:-1,优漫卡通 231 | http://ott.js.chinamobile.com/PLTV/3/224/3221225933/index.m3u8 232 | #EXTINF:-1,江苏体育休闲 233 | http://ott.js.chinamobile.com/PLTV/3/224/3221225935/index.m3u8 234 | #EXTINF:-1,江苏影视 235 | http://ott.js.chinamobile.com/PLTV/3/224/3221225937/index.m3u8 236 | #EXTINF:-1,徐州-1 237 | http://ott.js.chinamobile.com/PLTV/3/224/3221225945/index.m3u8 238 | #EXTINF:-1,徐州-2 239 | http://ott.js.chinamobile.com/PLTV/3/224/3221225947/index.m3u8 240 | #EXTINF:-1,徐州-3 241 | http://ott.js.chinamobile.com/PLTV/3/224/3221225949/index.m3u8 242 | #EXTINF:-1,徐州-4 243 | http://ott.js.chinamobile.com/PLTV/3/224/3221225951/index.m3u8 244 | #EXTINF:-1,风尚购物 245 | http://ott.js.chinamobile.com/PLTV/3/224/3221225956/index.m3u8 246 | #EXTINF:-1,江苏卫视 247 | http://ott.js.chinamobile.com/PLTV/3/224/3221225958/index.m3u8 248 | #EXTINF:-1,黑龙江卫视 249 | http://ott.js.chinamobile.com/PLTV/3/224/3221225995/index.m3u8 250 | #EXTINF:-1,深圳卫视 251 | http://ott.js.chinamobile.com/PLTV/3/224/3221225997/index.m3u8 252 | #EXTINF:-1,浙江卫视 253 | http://ott.js.chinamobile.com/PLTV/3/224/3221225999/index.m3u8 254 | #EXTINF:-1,湖北卫视 255 | http://ott.js.chinamobile.com/PLTV/3/224/3221226001/index.m3u8 256 | #EXTINF:-1,山东卫视 257 | http://ott.js.chinamobile.com/PLTV/3/224/3221226003/index.m3u8 258 | #EXTINF:-1,CCTV-2财经 259 | http://ott.js.chinamobile.com/PLTV/3/224/3221226007/index.m3u8 260 | #EXTINF:-1,CCTV-7军事农业 261 | http://ott.js.chinamobile.com/PLTV/3/224/3221226011/index.m3u8 262 | #EXTINF:-1,CCTV-10科教 263 | http://ott.js.chinamobile.com/PLTV/3/224/3221226013/index.m3u8 264 | #EXTINF:-1,CCTV-11戏曲 265 | http://ott.js.chinamobile.com/PLTV/3/224/3221226015/index.m3u8 266 | #EXTINF:-1,CCTV-12社会与法 267 | http://ott.js.chinamobile.com/PLTV/3/224/3221226019/index.m3u8 268 | #EXTINF:-1,CCTV-13新闻 269 | http://ott.js.chinamobile.com/PLTV/3/224/3221226021/index.m3u8 270 | #EXTINF:-1,CCTV-14少儿 271 | http://ott.js.chinamobile.com/PLTV/3/224/3221226023/index.m3u8 272 | #EXTINF:-1,CCTV-15音乐 273 | http://ott.js.chinamobile.com/PLTV/3/224/3221226025/index.m3u8 274 | #EXTINF:-1,法制天地 275 | http://ott.js.chinamobile.com/PLTV/3/224/3221226027/index.m3u8 276 | #EXTINF:-1,都市剧场 277 | http://ott.js.chinamobile.com/PLTV/3/224/3221226029/index.m3u8 278 | #EXTINF:-1,欢笑剧场 279 | http://ott.js.chinamobile.com/PLTV/3/224/3221226031/index.m3u8 280 | #EXTINF:-1,东方财经-浦东 281 | http://ott.js.chinamobile.com/PLTV/3/224/3221226033/index.m3u8 282 | #EXTINF:-1,东方财经-浦东 283 | http://ott.js.chinamobile.com/PLTV/3/224/3221226035/index.m3u8 284 | #EXTINF:-1,动漫秀场 285 | http://ott.js.chinamobile.com/PLTV/3/224/3221226037/index.m3u8 286 | #EXTINF:-1,七彩戏剧 287 | http://ott.js.chinamobile.com/PLTV/3/224/3221226039/index.m3u8 288 | #EXTINF:-1,游戏风云 289 | http://ott.js.chinamobile.com/PLTV/3/224/3221226041/index.m3u8 290 | #EXTINF:-1,游戏风云 291 | http://ott.js.chinamobile.com/PLTV/3/224/3221226043/index.m3u8 292 | #EXTINF:-1,劲爆体育 293 | http://ott.js.chinamobile.com/PLTV/3/224/3221226045/index.m3u8 294 | #EXTINF:-1,炫动卡通 295 | http://ott.js.chinamobile.com/PLTV/3/224/3221226047/index.m3u8 296 | #EXTINF:-1,天津卫视 297 | http://ott.js.chinamobile.com/PLTV/3/224/3221226049/index.m3u8 298 | #EXTINF:-1,重庆卫视 299 | http://ott.js.chinamobile.com/PLTV/3/224/3221226051/index.m3u8 300 | #EXTINF:-1,安徽卫视 301 | http://ott.js.chinamobile.com/PLTV/3/224/3221226053/index.m3u8 302 | #EXTINF:-1,广西卫视 303 | http://ott.js.chinamobile.com/PLTV/3/224/3221226055/index.m3u8 304 | #EXTINF:-1,吉林卫视 305 | http://ott.js.chinamobile.com/PLTV/3/224/3221226057/index.m3u8 306 | #EXTINF:-1,四川卫视 307 | http://ott.js.chinamobile.com/PLTV/3/224/3221226059/index.m3u8 308 | #EXTINF:-1,辽宁卫视 309 | http://ott.js.chinamobile.com/PLTV/3/224/3221226061/index.m3u8 310 | #EXTINF:-1,江西卫视 311 | http://ott.js.chinamobile.com/PLTV/3/224/3221226063/index.m3u8 312 | #EXTINF:-1,河南卫视 313 | http://ott.js.chinamobile.com/PLTV/3/224/3221226065/index.m3u8 314 | #EXTINF:-1,东南卫视 315 | http://ott.js.chinamobile.com/PLTV/3/224/3221226067/index.m3u8 316 | #EXTINF:-1,贵州卫视 317 | http://ott.js.chinamobile.com/PLTV/3/224/3221226069/index.m3u8 318 | #EXTINF:-1,旅游卫视 319 | http://ott.js.chinamobile.com/PLTV/3/224/3221226071/index.m3u8 320 | #EXTINF:-1,青海卫视 321 | http://ott.js.chinamobile.com/PLTV/3/224/3221226073/index.m3u8 322 | #EXTINF:-1,河北卫视 323 | http://ott.js.chinamobile.com/PLTV/3/224/3221226075/index.m3u8 324 | #EXTINF:-1,内蒙古卫视 325 | http://ott.js.chinamobile.com/PLTV/3/224/3221226077/index.m3u8 326 | #EXTINF:-1,陕西卫视 327 | http://ott.js.chinamobile.com/PLTV/3/224/3221226079/index.m3u8 328 | #EXTINF:-1,新疆卫视 329 | http://ott.js.chinamobile.com/PLTV/3/224/3221226081/index.m3u8 330 | #EXTINF:-1,云南卫视 331 | http://ott.js.chinamobile.com/PLTV/3/224/3221226083/index.m3u8 332 | #EXTINF:-1,兵团卫视 333 | http://ott.js.chinamobile.com/PLTV/3/224/3221226085/index.m3u8 334 | #EXTINF:-1,甘肃卫视 335 | http://ott.js.chinamobile.com/PLTV/3/224/3221226087/index.m3u8 336 | #EXTINF:-1,宁夏卫视 337 | http://ott.js.chinamobile.com/PLTV/3/224/3221226089/index.m3u8 338 | #EXTINF:-1,山西卫视 339 | http://ott.js.chinamobile.com/PLTV/3/224/3221226091/index.m3u8 340 | #EXTINF:-1,厦门卫视 341 | http://ott.js.chinamobile.com/PLTV/3/224/3221226093/index.m3u8 342 | #EXTINF:-1,金鹰卡通 343 | http://ott.js.chinamobile.com/PLTV/3/224/3221226095/index.m3u8 344 | #EXTINF:-1,BTV卡酷少儿 345 | http://ott.js.chinamobile.com/PLTV/3/224/3221226097/index.m3u8 346 | #EXTINF:-1,嘉佳卡通 347 | http://ott.js.chinamobile.com/PLTV/3/224/3221226099/index.m3u8 348 | #EXTINF:-1,纪实 349 | http://ott.js.chinamobile.com/PLTV/3/224/3221226105/index.m3u8 350 | #EXTINF:-1,CCTV-8电视剧 351 | http://ott.js.chinamobile.com/PLTV/3/224/3221226109/index.m3u8 352 | #EXTINF:-1,CCTV-5体育 353 | http://ott.js.chinamobile.com/PLTV/3/224/3221226111/index.m3u8 354 | #EXTINF:-1,尚星 355 | http://ott.js.chinamobile.com/PLTV/3/224/3221226115/index.m3u8 356 | #EXTINF:-1,金鹰卡通 357 | http://ott.js.chinamobile.com/PLTV/3/224/3221226303/index.m3u8 358 | #EXTINF:-1,BTV卡酷少儿 359 | http://ott.js.chinamobile.com/PLTV/3/224/3221226305/index.m3u8 360 | 361 | #EXTINF:-1,CCTV-3综艺 362 | http://ott.js.chinamobile.com/PLTV/3/224/3221226360/index.m3u8 363 | #EXTINF:-1,CCTV-5体育 364 | http://ott.js.chinamobile.com/PLTV/3/224/3221226362/index.m3u8 365 | #EXTINF:-1,黑龙江卫视 366 | http://ott.js.chinamobile.com/PLTV/3/224/3221226374/index.m3u8 367 | #EXTINF:-1,西藏卫视 368 | http://ott.js.chinamobile.com/PLTV/3/224/3221226376/index.m3u8 369 | #EXTINF:-1,炫动卡通 370 | http://ott.js.chinamobile.com/PLTV/3/224/3221226388/index.m3u8 371 | #EXTINF:-1,CETV-1教育 372 | http://ott.js.chinamobile.com/PLTV/3/224/3221226392/index.m3u8 373 | #EXTINF:-1,CETV-1教育 374 | http://ott.js.chinamobile.com/PLTV/3/224/3221226394/index.m3u8 375 | #EXTINF:-1,CCTV-6电影 376 | http://ott.js.chinamobile.com/PLTV/3/224/3221226398/index.m3u8 377 | #EXTINF:-1,全纪实 378 | http://ott.js.chinamobile.com/PLTV/3/224/3221226414/index.m3u8 379 | #EXTINF:-1,西藏卫视 380 | http://ott.js.chinamobile.com/PLTV/3/224/3221226416/index.m3u8 381 | #EXTINF:-1,CCTV-高尔夫网球 382 | http://ott.js.chinamobile.com/PLTV/3/224/3221226420/index.m3u8 383 | #EXTINF:-1,家有购物 384 | http://ott.js.chinamobile.com/PLTV/3/224/3221226593/index.m3u8 385 | #EXTINF:-1,NewsTV 搏击 386 | http://ott.js.chinamobile.com/PLTV/3/224/3221226656/index.m3u8 387 | #EXTINF:-1,电竞世界 388 | http://ott.js.chinamobile.com/PLTV/3/224/3221226795/index.m3u8 389 | #EXTINF:-1,BesTV 390 | http://ott.js.chinamobile.com/PLTV/3/224/3221226797/index.m3u8 391 | #EXTINF:-1,BesTV LIVE 392 | http://ott.js.chinamobile.com/PLTV/3/224/3221226799/index.m3u8 393 | #EXTINF:-1,超级体育cctv5+ 394 | http://ott.js.chinamobile.com/PLTV/3/224/3221226801/index.m3u8 395 | #EXTINF:-1,超级体育BesTV 396 | http://ott.js.chinamobile.com/PLTV/3/224/3221226803/index.m3u8 397 | #EXTINF:-1,超级体育BesTV 398 | http://ott.js.chinamobile.com/PLTV/3/224/3221226805/index.m3u8 399 | #EXTINF:-1,BesTV LIVE 400 | http://ott.js.chinamobile.com/PLTV/3/224/3221226807/index.m3u8 401 | #EXTINF:-1,东方卫视 402 | http://ott.js.chinamobile.com/PLTV/3/224/3221226809/index.m3u8 403 | #EXTINF:-1,阳光卫视 404 | http://ott.js.chinamobile.com/PLTV/3/224/3221226915/index.m3u8 405 | #EXTINF:-1,凤凰中文HD 406 | http://ott.js.chinamobile.com/PLTV/3/224/3221226922/index.m3u8 407 | #EXTINF:-1,凤凰资讯HD 408 | http://ott.js.chinamobile.com/PLTV/3/224/3221226923/index.m3u8 409 | #EXTINF:-1,NewsTV 中国功夫 410 | http://ott.js.chinamobile.com/PLTV/3/224/3221226935/index.m3u8 411 | #EXTINF:-1,宿迁公共 412 | http://ott.js.chinamobile.com/PLTV/3/224/3221226939/index.m3u8 413 | #EXTINF:-1,电竞世界 414 | http://ott.js.chinamobile.com/PLTV/3/224/3221226942/index.m3u8 415 | #EXTINF:-1,BesTV 416 | http://ott.js.chinamobile.com/PLTV/3/224/3221226943/index.m3u8 417 | #EXTINF:-1,宿迁综合 418 | http://ott.js.chinamobile.com/PLTV/3/224/3221226944/index.m3u8 419 | #EXTINF:-1,CCTV-5体育 420 | http://ott.js.chinamobile.com/PLTV/3/224/3221226945/index.m3u8 421 | #EXTINF:-1,BesTV 422 | http://ott.js.chinamobile.com/PLTV/3/224/3221226946/index.m3u8 423 | #EXTINF:-1,如东-1 424 | http://ott.js.chinamobile.com/PLTV/3/224/3221226948/index.m3u8 425 | #EXTINF:-1,如东-3 426 | http://ott.js.chinamobile.com/PLTV/3/224/3221226949/index.m3u8 427 | #EXTINF:-1,如东-2 428 | http://ott.js.chinamobile.com/PLTV/3/224/3221226951/index.m3u8 429 | #EXTINF:-1,东方购物 430 | http://ott.js.chinamobile.com/PLTV/3/224/3221226954/index.m3u8 431 | #EXTINF:-1,凤凰香港台 432 | http://ott.js.chinamobile.com/PLTV/3/224/3221226975/index.m3u8 433 | #EXTINF:-1,优漫卡通 434 | http://ott.js.chinamobile.com/PLTV/3/224/3221226982/index.m3u8 435 | #EXTINF:-1,NewsTV 潮妈辣婆 436 | http://ott.js.chinamobile.com/PLTV/3/224/3221226983/index.m3u8 437 | #EXTINF:-1,CCTV-3综艺 438 | http://ott.js.chinamobile.com/PLTV/3/224/3221226987/index.m3u8 439 | #EXTINF:-1,CCTV-3综艺 440 | http://ott.js.chinamobile.com/PLTV/3/224/3221226992/index.m3u8 441 | #EXTINF:-1,CCTV-2财经 442 | http://ott.js.chinamobile.com/PLTV/3/224/3221226993/index.m3u8 443 | #EXTINF:-1,CCTV-4中文国际 444 | http://ott.js.chinamobile.com/PLTV/3/224/3221226994/index.m3u8 445 | #EXTINF:-1,厦门卫视 446 | http://ott.js.chinamobile.com/PLTV/3/224/3221226996/index.m3u8 447 | #EXTINF:-1,安多卫视 448 | http://ott.js.chinamobile.com/PLTV/3/224/3221226999/index.m3u8 449 | #EXTINF:-1,延边卫视 450 | http://ott.js.chinamobile.com/PLTV/3/224/3221227002/index.m3u8 451 | #EXTINF:-1,极速汽车 452 | http://ott.js.chinamobile.com/PLTV/3/224/3221227004/index.m3u8 453 | #EXTINF:-1,广东南方卫视TVS2 454 | http://ott.js.chinamobile.com/PLTV/3/224/3221227005/index.m3u8 455 | #EXTINF:-1,康巴卫视 456 | http://ott.js.chinamobile.com/PLTV/3/224/3221227008/index.m3u8 457 | #EXTINF:-1,嘉佳卡通 458 | http://ott.js.chinamobile.com/PLTV/3/224/3221227009/index.m3u8 459 | #EXTINF:-1,家庭理财 460 | http://ott.js.chinamobile.com/PLTV/3/224/3221227011/index.m3u8 461 | #EXTINF:-1,湖北卫视 462 | http://ott.js.chinamobile.com/PLTV/3/224/3221227014/index.m3u8 463 | #EXTINF:-1,农林卫视 464 | http://ott.js.chinamobile.com/PLTV/3/224/3221227015/index.m3u8 465 | #EXTINF:-1,中华美食 466 | http://ott.js.chinamobile.com/PLTV/3/224/3221227017/index.m3u8 467 | #EXTINF:-1,CETV-3教育 468 | http://ott.js.chinamobile.com/PLTV/3/224/3221227018/index.m3u8 469 | #EXTINF:-1,SDCETV 470 | http://ott.js.chinamobile.com/PLTV/3/224/3221227019/index.m3u8 471 | #EXTINF:-1,篮球 472 | http://ott.js.chinamobile.com/PLTV/3/224/3221227020/index.m3u8 473 | #EXTINF:-1,新娱乐 474 | http://ott.js.chinamobile.com/PLTV/3/224/3221227021/index.m3u8 475 | #EXTINF:-1,陕西卫视 476 | http://ott.js.chinamobile.com/PLTV/3/224/3221227022/index.m3u8 477 | #EXTINF:-1,篮球 478 | http://ott.js.chinamobile.com/PLTV/3/224/3221227023/index.m3u8 479 | #EXTINF:-1,网络棋牌GTV 480 | http://ott.js.chinamobile.com/PLTV/3/224/3221227024/index.m3u8 481 | #EXTINF:-1,兵团卫视 482 | http://ott.js.chinamobile.com/PLTV/3/224/3221227025/index.m3u8 483 | #EXTINF:-1,CCTV-女性时尚 484 | http://ott.js.chinamobile.com/PLTV/3/224/3221227026/index.m3u8 485 | #EXTINF:-1,中国交通 486 | http://ott.js.chinamobile.com/PLTV/3/224/3221227027/index.m3u8 487 | #EXTINF:-1,CETV-4教育 488 | http://ott.js.chinamobile.com/PLTV/3/224/3221227028/index.m3u8 489 | #EXTINF:-1,CCTV-发现之旅 490 | http://ott.js.chinamobile.com/PLTV/3/224/3221227030/index.m3u8 491 | #EXTINF:-1,弈坛春秋 492 | http://ott.js.chinamobile.com/PLTV/3/224/3221227031/index.m3u8 493 | #EXTINF:-1,高尔夫 494 | http://ott.js.chinamobile.com/PLTV/3/224/3221227033/index.m3u8 495 | #EXTINF:-1,中华美食 496 | http://ott.js.chinamobile.com/PLTV/3/224/3221227034/index.m3u8 497 | #EXTINF:-1,置业频道 498 | http://ott.js.chinamobile.com/PLTV/3/224/3221227037/index.m3u8 499 | #EXTINF:-1,京视剧场 500 | http://ott.js.chinamobile.com/PLTV/3/224/3221227040/index.m3u8 501 | #EXTINF:-1,CCTV-老故事 502 | http://ott.js.chinamobile.com/PLTV/3/224/3221227043/index.m3u8 503 | #EXTINF:-1,CCTV-发现之旅 504 | http://ott.js.chinamobile.com/PLTV/3/224/3221227046/index.m3u8 505 | #EXTINF:-1,邗江 506 | http://ott.js.chinamobile.com/PLTV/3/224/3221227154/index.m3u8 507 | #EXTINF:-1,CCTV-5体育 508 | http://ott.js.chinamobile.com/PLTV/3/224/3221227166/index.m3u8 509 | #EXTINF:-1,南京十八 510 | http://ott.js.chinamobile.com/PLTV/3/224/3221227178/index.m3u8 511 | #EXTINF:-1,江苏卫视 512 | http://ott.js.chinamobile.com/PLTV/3/224/3221227185/index.m3u8 513 | #EXTINF:-1,湖南卫视 514 | http://ott.js.chinamobile.com/PLTV/3/224/3221227191/index.m3u8 515 | #EXTINF:-1,南京科教 516 | http://ott.js.chinamobile.com/PLTV/3/224/3221227194/index.m3u8 517 | #EXTINF:-1,CCTV-14少儿 518 | http://ott.js.chinamobile.com/PLTV/3/224/3221227201/index.m3u8 519 | #EXTINF:-1,CCTV-8电视剧 520 | http://ott.js.chinamobile.com/PLTV/3/224/3221227204/index.m3u8 521 | #EXTINF:-1,CCTV-8电视剧 522 | http://ott.js.chinamobile.com/PLTV/3/224/3221227205/index.m3u8 523 | #EXTINF:-1,CCTV-2财经 524 | http://ott.js.chinamobile.com/PLTV/3/224/3221227207/index.m3u8 525 | #EXTINF:-1,东方卫视 526 | http://ott.js.chinamobile.com/PLTV/3/224/3221227208/index.m3u8 527 | #EXTINF:-1,CCTV-6电影 528 | http://ott.js.chinamobile.com/PLTV/3/224/3221227209/index.m3u8 529 | #EXTINF:-1,湖北卫视 530 | http://ott.js.chinamobile.com/PLTV/3/224/3221227211/index.m3u8 531 | #EXTINF:-1,天津卫视 532 | http://ott.js.chinamobile.com/PLTV/3/224/3221227212/index.m3u8 533 | #EXTINF:-1,南京新闻综合 534 | http://ott.js.chinamobile.com/PLTV/3/224/3221227213/index.m3u8 535 | #EXTINF:-1,浙江卫视 536 | http://ott.js.chinamobile.com/PLTV/3/224/3221227215/index.m3u8 537 | #EXTINF:-1,深圳卫视 538 | http://ott.js.chinamobile.com/PLTV/3/224/3221227217/index.m3u8 539 | #EXTINF:-1,湖南卫视 540 | http://ott.js.chinamobile.com/PLTV/3/224/3221227220/index.m3u8 541 | #EXTINF:-1,BTV北京卫视 542 | http://ott.js.chinamobile.com/PLTV/3/224/3221227246/index.m3u8 543 | #EXTINF:-1,广东卫视 544 | http://ott.js.chinamobile.com/PLTV/3/224/3221227249/index.m3u8 545 | #EXTINF:-1,黑龙江卫视 546 | http://ott.js.chinamobile.com/PLTV/3/224/3221227252/index.m3u8 547 | #EXTINF:-1,江苏卫视 548 | http://ott.js.chinamobile.com/PLTV/3/224/3221227255/index.m3u8 549 | #EXTINF:-1,山东卫视 550 | http://ott.js.chinamobile.com/PLTV/3/224/3221227258/index.m3u8 551 | #EXTINF:-1,CCTV-3综艺 552 | http://ott.js.chinamobile.com/PLTV/3/224/3221227295/index.m3u8 553 | #EXTINF:-1,CCTV-5体育 554 | http://ott.js.chinamobile.com/PLTV/3/224/3221227298/index.m3u8 555 | #EXTINF:-1,CCTV-6电影 556 | http://ott.js.chinamobile.com/PLTV/3/224/3221227301/index.m3u8 557 | #EXTINF:-1,CCTV-8电视剧 558 | http://ott.js.chinamobile.com/PLTV/3/224/3221227304/index.m3u8 559 | #EXTINF:-1,深圳卫视 560 | http://ott.js.chinamobile.com/PLTV/3/224/3221227307/index.m3u8 561 | #EXTINF:-1,山东卫视 562 | http://ott.js.chinamobile.com/PLTV/3/224/3221227310/index.m3u8 563 | #EXTINF:-1,CCTV-7军事农业 564 | http://ott.js.chinamobile.com/PLTV/3/224/3221227314/index.m3u8 565 | #EXTINF:-1,CCTV-10科教 566 | http://ott.js.chinamobile.com/PLTV/3/224/3221227317/index.m3u8 567 | #EXTINF:-1,湖南卫视 568 | http://ott.js.chinamobile.com/PLTV/3/224/3221227320/index.m3u8 569 | #EXTINF:-1,黑龙江卫视 570 | http://ott.js.chinamobile.com/PLTV/3/224/3221227323/index.m3u8 571 | #EXTINF:-1,江苏电视剧2台 572 | http://ott.js.chinamobile.com/PLTV/3/224/3221227325/index.m3u8 573 | #EXTINF:-1,CETV-1教育 574 | http://ott.js.chinamobile.com/PLTV/3/224/3221227355/index.m3u8 575 | #EXTINF:-1,江苏卫视 576 | http://ott.js.chinamobile.com/PLTV/3/224/3221227356/index.m3u8 577 | #EXTINF:-1,魅力音乐 578 | http://ott.js.chinamobile.com/PLTV/3/224/3221227358/index.m3u8 579 | #EXTINF:-1,湖北卫视 580 | http://ott.js.chinamobile.com/PLTV/3/224/3221227359/index.m3u8 581 | #EXTINF:-1,CGTN-1英文 582 | http://ott.js.chinamobile.com/PLTV/3/224/3221227361/index.m3u8 583 | #EXTINF:-1,浙江卫视 584 | http://ott.js.chinamobile.com/PLTV/3/224/3221227362/index.m3u8 585 | #EXTINF:-1,金色频道 586 | http://ott.js.chinamobile.com/PLTV/3/224/3221227364/index.m3u8 587 | #EXTINF:-1,陶瓷 588 | http://ott.js.chinamobile.com/PLTV/3/224/3221227365/index.m3u8 589 | #EXTINF:-1,湖南卫视 590 | http://ott.js.chinamobile.com/PLTV/3/224/3221227367/index.m3u8 591 | #EXTINF:-1,山东卫视 592 | http://ott.js.chinamobile.com/PLTV/3/224/3221227370/index.m3u8 593 | #EXTINF:-1,CCTV-1综合 594 | http://ott.js.chinamobile.com/PLTV/3/224/3221227375/index.m3u8 595 | #EXTINF:-1,湖北卫视 596 | http://ott.js.chinamobile.com/PLTV/3/224/3221227377/index.m3u8 597 | #EXTINF:-1,CCTV-4中文国际 598 | http://ott.js.chinamobile.com/PLTV/3/224/3221227378/index.m3u8 599 | #EXTINF:-1,辽宁卫视 600 | http://ott.js.chinamobile.com/PLTV/3/224/3221227380/index.m3u8 601 | #EXTINF:-1,CCTV-5+体育赛事 602 | http://ott.js.chinamobile.com/PLTV/3/224/3221227381/index.m3u8 603 | #EXTINF:-1,天津卫视 604 | http://ott.js.chinamobile.com/PLTV/3/224/3221227382/index.m3u8 605 | #EXTINF:-1,CCTV-11戏曲 606 | http://ott.js.chinamobile.com/PLTV/3/224/3221227384/index.m3u8 607 | #EXTINF:-1,贾汪新闻 608 | http://ott.js.chinamobile.com/PLTV/3/224/3221227385/index.m3u8 609 | #EXTINF:-1,CCTV-13新闻 610 | http://ott.js.chinamobile.com/PLTV/3/224/3221227387/index.m3u8 611 | #EXTINF:-1,贾汪旅游 612 | http://ott.js.chinamobile.com/PLTV/3/224/3221227389/index.m3u8 613 | #EXTINF:-1,北京卫视 614 | http://ott.js.chinamobile.com/PLTV/3/224/3221227390/index.m3u8 615 | #EXTINF:-1,CCTV-7军事农业 616 | http://ott.js.chinamobile.com/PLTV/3/224/3221227392/index.m3u8 617 | #EXTINF:-1,浙江卫视 618 | http://ott.js.chinamobile.com/PLTV/3/224/3221227393/index.m3u8 619 | #EXTINF:-1,纪实 620 | http://ott.js.chinamobile.com/PLTV/3/224/3221227395/index.m3u8 621 | #EXTINF:-1,东方卫视 622 | http://ott.js.chinamobile.com/PLTV/3/224/3221227396/index.m3u8 623 | #EXTINF:-1,北京纪实 624 | http://ott.js.chinamobile.com/PLTV/3/224/3221227397/index.m3u8 625 | #EXTINF:-1,好享购物 626 | http://ott.js.chinamobile.com/PLTV/3/224/3221227398/index.m3u8 627 | #EXTINF:-1,广东卫视 628 | http://ott.js.chinamobile.com/PLTV/3/224/3221227399/index.m3u8 629 | #EXTINF:-1,CCTV-1综合 630 | http://ott.js.chinamobile.com/PLTV/3/224/3221227400/index.m3u8 631 | #EXTINF:-1,CCTV-5体育 632 | http://ott.js.chinamobile.com/PLTV/3/224/3221227401/index.m3u8 633 | #EXTINF:-1,江苏卫视 634 | http://ott.js.chinamobile.com/PLTV/3/224/3221227402/index.m3u8 635 | #EXTINF:-1,CCTV-0科教 636 | http://ott.js.chinamobile.com/PLTV/3/224/3221227403/index.m3u8 637 | #EXTINF:-1,湖南卫视 638 | http://ott.js.chinamobile.com/PLTV/3/224/3221227404/index.m3u8 639 | #EXTINF:-1,CCTV-12社会与法 640 | http://ott.js.chinamobile.com/PLTV/3/224/3221227406/index.m3u8 641 | #EXTINF:-1,天津卫视 642 | http://ott.js.chinamobile.com/PLTV/3/224/3221227407/index.m3u8 643 | #EXTINF:-1,CCTV-14少儿 644 | http://ott.js.chinamobile.com/PLTV/3/224/3221227409/index.m3u8 645 | #EXTINF:-1,辽宁卫视 646 | http://ott.js.chinamobile.com/PLTV/3/224/3221227410/index.m3u8 647 | #EXTINF:-1,CCTV-2财经 648 | http://ott.js.chinamobile.com/PLTV/3/224/3221227412/index.m3u8 649 | #EXTINF:-1,CCTV-3综艺 650 | http://ott.js.chinamobile.com/PLTV/3/224/3221227415/index.m3u8 651 | #EXTINF:-1,CCTV-8电视剧 652 | http://ott.js.chinamobile.com/PLTV/3/224/3221227418/index.m3u8 653 | #EXTINF:-1,CCTV-8电视剧 654 | http://ott.js.chinamobile.com/PLTV/3/224/3221227419/index.m3u8 655 | #EXTINF:-1,纪实 656 | http://ott.js.chinamobile.com/PLTV/3/224/3221227420/index.m3u8 657 | #EXTINF:-1,重庆卫视 658 | http://ott.js.chinamobile.com/PLTV/3/224/3221227421/index.m3u8 659 | #EXTINF:-1,东方卫视 660 | http://ott.js.chinamobile.com/PLTV/3/224/3221227423/index.m3u8 661 | #EXTINF:-1,CCTV-3综艺 662 | http://ott.js.chinamobile.com/PLTV/3/224/3221227424/index.m3u8 663 | #EXTINF:-1,家冢购物 664 | http://ott.js.chinamobile.com/PLTV/3/224/3221227425/index.m3u8 665 | #EXTINF:-1,CCTV-2财经 666 | http://ott.js.chinamobile.com/PLTV/3/224/3221227427/index.m3u8 667 | #EXTINF:-1,家家购物 668 | http://ott.js.chinamobile.com/PLTV/3/224/3221227428/index.m3u8 669 | #EXTINF:-1,东方卫视 670 | http://ott.js.chinamobile.com/PLTV/3/224/3221227429/index.m3u8 671 | #EXTINF:-1,CCTV-6电影 672 | http://ott.js.chinamobile.com/PLTV/3/224/3221227430/index.m3u8 673 | #EXTINF:-1,CCTV-1综合 674 | http://ott.js.chinamobile.com/PLTV/3/224/3221227431/index.m3u8 675 | #EXTINF:-1,广东卫视 676 | http://ott.js.chinamobile.com/PLTV/3/224/3221227432/index.m3u8 677 | #EXTINF:-1,CCTV-8电视剧 678 | http://ott.js.chinamobile.com/PLTV/3/224/3221227433/index.m3u8 679 | #EXTINF:-1,CCTV-5体育 680 | http://ott.js.chinamobile.com/PLTV/3/224/3221227434/index.m3u8 681 | #EXTINF:-1,北京卫视 682 | http://ott.js.chinamobile.com/PLTV/3/224/3221227435/index.m3u8 683 | #EXTINF:-1,北京卫视 684 | http://ott.js.chinamobile.com/PLTV/3/224/3221227436/index.m3u8 685 | #EXTINF:-1,中国气象频道 686 | http://ott.js.chinamobile.com/PLTV/3/224/3221227438/index.m3u8 687 | #EXTINF:-1,江苏卫视 688 | http://ott.js.chinamobile.com/PLTV/3/224/3221227439/index.m3u8 689 | #EXTINF:-1,CNC新华社 690 | http://ott.js.chinamobile.com/PLTV/3/224/3221227441/index.m3u8 691 | #EXTINF:-1,深圳卫视 692 | http://ott.js.chinamobile.com/PLTV/3/224/3221227442/index.m3u8 693 | #EXTINF:-1,CNC新华社 694 | http://ott.js.chinamobile.com/PLTV/3/224/3221227444/index.m3u8 695 | #EXTINF:-1,广东卫视 696 | http://ott.js.chinamobile.com/PLTV/3/224/3221227445/index.m3u8 697 | #EXTINF:-1,幸福彩 698 | http://ott.js.chinamobile.com/PLTV/3/224/3221227447/index.m3u8 699 | #EXTINF:-1,山东卫视 700 | http://ott.js.chinamobile.com/PLTV/3/224/3221227448/index.m3u8 701 | #EXTINF:-1,黑龙江卫视 702 | http://ott.js.chinamobile.com/PLTV/3/224/3221227450/index.m3u8 703 | #EXTINF:-1,CCTV-5体育 704 | http://ott.js.chinamobile.com/PLTV/3/224/3221227452/index.m3u8 705 | #EXTINF:-1,深圳卫视 706 | http://ott.js.chinamobile.com/PLTV/3/224/3221227453/index.m3u8 707 | #EXTINF:-1,湖南卫视 708 | http://ott.js.chinamobile.com/PLTV/3/224/3221227461/index.m3u8 709 | #EXTINF:-1,CCTV-1综合 710 | http://ott.js.chinamobile.com/PLTV/3/224/3221227462/index.m3u8 711 | #EXTINF:-1,CCTV-5+体育赛事 712 | http://ott.js.chinamobile.com/PLTV/3/224/3221227463/index.m3u8 713 | #EXTINF:-1,CCTV-5+体育赛事 714 | http://ott.js.chinamobile.com/PLTV/3/224/3221227465/index.m3u8 715 | #EXTINF:-1,CCTV-5体育 716 | http://ott.js.chinamobile.com/PLTV/3/224/3221227466/index.m3u8 717 | #EXTINF:-1,CCTV-5体育 718 | http://ott.js.chinamobile.com/PLTV/3/224/3221227468/index.m3u8 719 | #EXTINF:-1,CCTV-9记录 720 | http://ott.js.chinamobile.com/PLTV/3/224/3221227471/index.m3u8 721 | #EXTINF:-1,CCTV-8电视剧 722 | http://ott.js.chinamobile.com/PLTV/3/224/3221227473/index.m3u8 723 | #EXTINF:-1,安徽卫视 724 | http://ott.js.chinamobile.com/PLTV/3/224/3221227474/index.m3u8 725 | #EXTINF:-1,NewsTV 炫舞未来 726 | http://ott.js.chinamobile.com/PLTV/3/224/3221227475/index.m3u8 727 | #EXTINF:-1,广东卫视 728 | http://ott.js.chinamobile.com/PLTV/3/224/3221227476/index.m3u8 729 | #EXTINF:-1,黑龙江卫视 730 | http://ott.js.chinamobile.com/PLTV/3/224/3221227477/index.m3u8 731 | #EXTINF:-1,CCTV-5体育 732 | http://ott.js.chinamobile.com/PLTV/3/224/3221227478/index.m3u8 733 | #EXTINF:-1,湖北卫视 734 | http://ott.js.chinamobile.com/PLTV/3/224/3221227479/index.m3u8 735 | #EXTINF:-1,CCTV-5+体育赛事 736 | http://ott.js.chinamobile.com/PLTV/3/224/3221227480/index.m3u8 737 | #EXTINF:-1,CCTV-3综艺 738 | http://ott.js.chinamobile.com/PLTV/3/224/3221227481/index.m3u8 739 | #EXTINF:-1,湖南卫视 740 | http://ott.js.chinamobile.com/PLTV/3/224/3221227482/index.m3u8 741 | #EXTINF:-1,浙江卫视 742 | http://ott.js.chinamobile.com/PLTV/3/224/3221227483/index.m3u8 743 | #EXTINF:-1,辽宁卫视 744 | http://ott.js.chinamobile.com/PLTV/3/224/3221227485/index.m3u8 745 | #EXTINF:-1,东方卫视 746 | http://ott.js.chinamobile.com/PLTV/3/224/3221227486/index.m3u8 747 | #EXTINF:-1,天津卫视 748 | http://ott.js.chinamobile.com/PLTV/3/224/3221227488/index.m3u8 749 | #EXTINF:-1,CCTV-4中文国际 750 | http://ott.js.chinamobile.com/PLTV/3/224/3221227489/index.m3u8 751 | #EXTINF:-1,浙江卫视 752 | http://ott.js.chinamobile.com/PLTV/3/224/3221227491/index.m3u8 753 | #EXTINF:-1,黑龙江卫视 754 | http://ott.js.chinamobile.com/PLTV/3/224/3221227492/index.m3u8 755 | #EXTINF:-1,CCTV-7军事农业 756 | http://ott.js.chinamobile.com/PLTV/3/224/3221227493/index.m3u8 757 | #EXTINF:-1,CCTV-1综合 758 | http://ott.js.chinamobile.com/PLTV/3/224/3221227494/index.m3u8 759 | #EXTINF:-1,湖北卫视 760 | http://ott.js.chinamobile.com/PLTV/3/224/3221227495/index.m3u8 761 | #EXTINF:-1,安徽卫视 762 | http://ott.js.chinamobile.com/PLTV/3/224/3221227498/index.m3u8 763 | #EXTINF:-1,CCTV-5+体育赛事 764 | http://ott.js.chinamobile.com/PLTV/3/224/3221227502/index.m3u8 765 | #EXTINF:-1,GYTV 766 | http://ott.js.chinamobile.com/PLTV/3/224/3221227503/index.m3u8 767 | #EXTINF:-1,CCTV-6电影 768 | http://ott.js.chinamobile.com/PLTV/3/224/3221227505/index.m3u8 769 | #EXTINF:-1,4KUHD纯享4K 770 | http://ott.js.chinamobile.com/PLTV/3/224/3221227506/index.m3u8 771 | #EXTINF:-1,北京卫视 772 | http://ott.js.chinamobile.com/PLTV/3/224/3221227508/index.m3u8 773 | #EXTINF:-1,NewTV 电竞 774 | http://ott.js.chinamobile.com/PLTV/3/224/3221227510/index.m3u8 775 | #EXTINF:-1,东方卫视 776 | http://ott.js.chinamobile.com/PLTV/3/224/3221227511/index.m3u8 777 | #EXTINF:-1,NewTV 电竞 778 | http://ott.js.chinamobile.com/PLTV/3/224/3221227513/index.m3u8 779 | #EXTINF:-1,黑龙江卫视 780 | http://ott.js.chinamobile.com/PLTV/3/224/3221227514/index.m3u8 781 | #EXTINF:-1,魔鬼与天使 782 | http://ott.js.chinamobile.com/PLTV/3/224/3221227516/index.m3u8 783 | #EXTINF:-1,山东卫视 784 | http://ott.js.chinamobile.com/PLTV/3/224/3221227517/index.m3u8 785 | #EXTINF:-1,电影电视剧 786 | http://ott.js.chinamobile.com/PLTV/3/224/3221227520/index.m3u8 787 | #EXTINF:-1,CCTV-5+体育赛事 788 | http://ott.js.chinamobile.com/PLTV/3/224/3221227522/index.m3u8 789 | #EXTINF:-1,卡通游戏 790 | http://ott.js.chinamobile.com/PLTV/3/224/3221227523/index.m3u8 791 | #EXTINF:-1,CCTV-5体育 792 | http://ott.js.chinamobile.com/PLTV/3/224/3221227531/index.m3u8 793 | #EXTINF:-1,CCTV-1综合 794 | http://ott.js.chinamobile.com/PLTV/3/224/3221227534/index.m3u8 795 | #EXTINF:-1,CCTV-5体育 796 | http://ott.js.chinamobile.com/PLTV/3/224/3221227537/index.m3u8 797 | #EXTINF:-1,CCTV-2财经 798 | http://ott.js.chinamobile.com/PLTV/3/224/3221227543/index.m3u8 799 | #EXTINF:-1,CCTV-3综艺 800 | http://ott.js.chinamobile.com/PLTV/3/224/3221227546/index.m3u8 801 | #EXTINF:-1,CCTV-4中文国际 802 | http://ott.js.chinamobile.com/PLTV/3/224/3221227549/index.m3u8 803 | #EXTINF:-1,江苏卫视 804 | http://ott.js.chinamobile.com/PLTV/3/224/3221227552/index.m3u8 805 | #EXTINF:-1,深圳卫视 806 | http://ott.js.chinamobile.com/PLTV/3/224/3221227555/index.m3u8 807 | #EXTINF:-1,安徽卫视 808 | http://ott.js.chinamobile.com/PLTV/3/224/3221227558/index.m3u8 809 | #EXTINF:-1,江苏卫视 810 | http://ott.js.chinamobile.com/PLTV/3/224/3221227561/index.m3u8 --------------------------------------------------------------------------------