forked from github2017luo/CMP4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmao.json
More file actions
2278 lines (2277 loc) · 438 KB
/
mao.json
File metadata and controls
2278 lines (2277 loc) · 438 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"spider": "https://jekoder.github.io/maoys.github.io/jar/custom_spider.jar",
//"spider": "https://sharertv.coding.net/p/mao/d/mao/git/raw/master/custom_spider.jar",
//"spider": "https://litecucumber.coding.net/p/cat/d/config/git/raw/master/main_spider.txt",
//"wallpaper":"https://picsum.photos/1080/",
"sites": [{"key":"csp_Buka","name":"真不卡(爬虫)","type":3,"api":"csp_Buka","searchable":0,"quickSearch":0,"filterable":1},
{"key":"快播云","name":"快播云","type":0,"api":"http://www.kuaibozy.com/api.php/provide/vod/at/xml/","playUrl":"","categories":["国产剧","港台剧","日韩剧","欧美剧","泰剧","综艺","动漫","动作片","喜剧片","爱情片","科幻片","恐怖片","剧情片","战争片","纪录片"]},
{"key":"if101资源","name":"if101(海外推荐)","type":0,"api":"https://demo.if101.tv/api.php/provide/vod/at/xml","searchable":1,"quickSearch":0,"filterable":0},
{"key":"无尽资源","name":"无尽资源","type":1,"api":"https://wuzy9.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":1,"categories":[]},
//{"key":"csp_YydsAli1","name":"YYDS阿里(爬蟲)","type":3,"api":"csp_YydsAli1","searchable":1,"quickSearch":1,"filterable":0},
{"key":"M3U8TV资源","name":"M3U8TV资源","type":0,"api":"http://www.zycaiji.net:7788/api.php/provide/vod/at/xml","playUrl":"","searchable":1,"quickSearch":1,"categories":[]},
{"key":"8090","name":"8090","type":0,"api":"http://zy.yilans.net:8090/api.php/provide/vod/at/xml","playUrl":"https://jx.renrenmi.cc/?url=","categories":["动作片","喜剧片","爱情片","科幻片","恐怖片","剧情片","战争片","国产剧","港台剧","日韩剧","欧美剧","惊悚片","魔幻片","冒险片","悬疑片","纪录片","犯罪片","微电影","其他片","动画片"]},
{"key":"csp_xpath_cokemv","name":"Cokemv(XPF)","type":3,"api":"csp_XPathFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/cokemv.json"},
{"key":"csp_xpath_jpys","name":"极品影视(XPF)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/jpys.json"},
{"key":"Jumi","name":"剧迷TV(XPF)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/Jumi.json"},
{"key":"csp_xpath_tvci","name":"大师兄(XPF)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/tvci.json"},
{"key":"csp_appysv2_M2_天空影视","name":"天空影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://tkys.tv/xgapp.php/v1/"},
{"key":"csp_appysv2_M2_DC影视","name":"DC影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://chaorenbb.com/api.php/v1.vod"},
{"key":"csp_appysv2_M2_躺平影视","name":"躺平影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://www.lltpys.com/api.php/app/"},
{"key":"csp_appysv2_M2_影阅阁","name":"影阅阁_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://221.236.18.12:665/api.php/v1.vod"},
{"key":"csp_appysv2_M2_美剧虫","name":"美剧虫_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://meijuchong.com/api.php/v1.vod"},
//{"key":"csp_Cokemv","name":"Cokemv(爬虫)","type":3,"api":"csp_Cokemv","searchable":1,"quickSearch":1,"filterable":1},
//{"key":"csp_Nekk","name":"9E看看(爬虫)","type":3,"api":"csp_Nekk","searchable":1,"quickSearch":1,"filterable":1},
//{"key":"csp_Djx","name":"瓜皮TV(爬虫)","type":3,"api":"csp_Djx","searchable":1,"quickSearch":1,"filterable":1},
//{"key":"csp_Aidi","name":"爱迪(爬虫)","type":3,"api":"csp_Aidi","searchable":1,"quickSearch":1,"filterable":1},
{"key":"csp_Auete","name":"Auete(爬虫)","type":3,"api":"csp_Auete","searchable":1,"quickSearch":0,"filterable":1},
//{"key":"csp_Ysgc","name":"影视工厂(爬虫)","type":3,"api":"csp_Ysgc","searchable":1,"quickSearch":1,"filterable":1},
//{"key":"csp_N0ys","name":"90影视(爬虫)","type":3,"api":"csp_N0ys","searchable":1,"quickSearch":1,"filterable":0},
//{"key":"csp_Imaple","name":"枫林网(爬虫)","type":3,"api":"csp_Imaple","searchable":1,"quickSearch":1,"filterable":1},
//{"key":"csp_Jumi","name":"剧迷(爬虫)","type":3,"api":"csp_Jumi","searchable":1,"quickSearch":1,"filterable":1},
{"key":"csp_Juhi","name":"剧嗨(爬虫)","type":3,"api":"csp_Juhi","searchable":1,"quickSearch":1,"filterable":1},
{"key":"csp_Enlienli","name":"嗯哩嗯哩(爬虫)","type":3,"api":"csp_Enlienli","searchable":1,"quickSearch":0,"filterable":1},
//{"key":"人人迷","name":"人人迷","type":1,"api":"https://kuu.renrenmi.cc/api.php/provide/vod/?ac=list","playUrl":"https://jx.renrenmi.cc/?url=","searchable":1,"quickSearch":1,"categories":["动作片","喜剧片","爱情片","科幻片","剧情片","战争片","恐怖片","国产剧","港台剧","日韩剧","欧美剧","其他剧","综艺","动漫"]},
//以下为xpath
{"key":"csp_xpath_huya","name":"虎牙(XPF)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/huya2.json"},
{"key":"csp_xpath_aidi_yh","name":"爱迪影视(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/aidi.json"},
{"key":"csp_xpath_axx2_yh","name":"爱西西影视(XP)","type":3,"api":"csp_XPathFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/Aixixi.json"},
{"key":"csp_xpath_auete_yh","name":"Auete影视(XP)","type":3,"api":"csp_XPathFilter","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/auete.json"},
//{"key":"csp_xpath_cokemv_yh","name":"Cokemv(XP)","type":3,"api":"csp_XPathFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/cokemv.json"},
{"key":"csp_appysv2_CJT影院_yh","name":"CJT影院(M2)","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.cjt521.com/api.php/v1.vod"},
{"key":"Gimy","name":"GimyTV(XPMac)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/Gimy.json"},
{"key":"csp_xpath_libv_yh","name":"Libvio(XPMac)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/libv.json"},
{"key":"csp_xpath_lezhutv_yh","name":"乐猪TV(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/lezhutv.json"},
//{"key":"csp_xpath_saohuotv_yh","name":"骚火电影(XP)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/saohuotv2.json"},
{"key":"csp_xpath_zxzj_yh","name":"在线之家(XPMac)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/zxzj.json"},
{"key":"csp_xpath_pianba_yh","name":"片吧影院(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/pianba.json"},
{"key":"人人迷蓝光","name":"人人迷蓝光","type":1,"api":"https://koko.renrenmi.cc/api.php/provide/vod/","playUrl":"https://www.66kdy.com/dmplay/?url=","searchable":1,"quickSearch":1,"categories":[]},
{"key":"影世界","name":"影世界","type":1,"api":"https://video.yingworld.vip/api.php/provide/vod/","playUrl":"https://jx.zjmiao.com/?url=","searchable":1,"quickSearch":1,"categories":["电影","连续剧","综艺","动漫"]},
{"key":"csp_xpath_age_yh","name":"AGE动漫(XP)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/agefans.json"},
{"key":"csp_xpath_dm84_yh","name":"动漫巴士(XP)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/dm84.json"},
{"key":"csp_xpath_dmw_yh","name":"动漫岛(XPMac)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/dmw.json"},
{"key":"csp_yinghua_yh","name":"樱花动漫(XP)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/yinghua2.json"},
{"key":"嘛哩嘛哩","name":"嘛哩嘛哩","type":1,"api":"https://malimali3.com/api.php/provide/vod/","playUrl":"https://jx.parwix.com:4433/player/?url=","searchable":1,"quickSearch":1,"categories":["国产动漫","日韩动漫","欧美动漫","港台动漫"]},
{"key":"一拳动漫","name":"一拳动漫","type":1,"api":"http://47.97.68.224/api.php/provide/vod/","playUrl":"json:http://103.40.246.5:6881/byg/json.php?url=","searchable":1,"quickSearch":1,"categories":[]},
//catvod
{"key":"csp_xpath_94sm_L","name":"@94神马_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/94sm.json"},
//{"key":"csp_xpath_jpys_L","name":"@极品_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/jpys.json"},
{"key":"csp_xpath_age_L","name":"@AGE动漫_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/agefans.json"},
//{"key":"csp_xpath_jpyszl_L","name":"@极品直链_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/jpys.json"},
{"key":"csp_xpath_cjt_L","name":"@CJT影视_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/cjtys.json"},
{"key":"csp_xpath_jumi_L","name":"@剧迷TV_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Jumi.json"},
{"key":"csp_xpath_tvci_L","name":"@大师兄_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/tvci.json"},
{"key":"csp_xpath_duboku_L","name":"@独播库_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Duboku.json"},
{"key":"csp_xpath_duboku2_L","name":"@独播库2_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/duboku2.json"},
{"key":"csp_xpath_saohuotv_L","name":"@骚火电影_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/saohuotv2.json"},
{"key":"csp_xpath_dd520_L","name":"@多多_XP_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/dd520.json"},
{"key":"csp_xpath_1010dy_L","name":"@1010dy_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/1010dy.json"},
{"key":"csp_xpath_dm84_L","name":"@动漫巴士_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/dm84.json"},
{"key":"csp_xpath_egg_L","name":"@蛋蛋影院_L","type":3,"api":"csp_XPathEgg","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/egg.json"},
//{"key":"csp_yysdali_L","name":"@YYDS影视_L","type":3,"api":"csp_YydsAli","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/yyds.json"},
{"key":"csp_xpath_555_L","name":"@555电影_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/555.json"},
{"key":"csp_xpath_sky4k_L","name":"@天空4K_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Sky4k.json"},
//{"key":"csp_xpath_4kyu_L","name":"@一只鱼4K_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/4kyu.json"},
{"key":"csp_xpath_miniku_L","name":"@迷你库_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/miniku.json"},
{"key":"csp_xpath_Ole_L","name":"@欧乐_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/olevod.json"},
{"key":"csp_xpath_pianba_L","name":"@片吧影院_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/pianba.json"},
//{"key":"csp_xpath_vipmv_L","name":"@追剧达人_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/vipmv.json"},
{"key":"csp_xpath_gimytv_L","name":"@GimyTV_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Gimy.json"},
{"key":"csp_xpath_Djx_L","name":"@瓜皮TV_L","type":3,"api":"csp_XPathFilter","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Djx.json"},
{"key":"csp_xpath_lezhutv_L","name":"@乐猪TV_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/lezhutv.json"},
{"key":"csp_xpath_Onedian_L","name":"@ONE影院_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/onedianshi.json"},
{"key":"csp_yinghua_L","name":"@樱花动漫_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/yinghua.json"},
{"key":"csp_xpath_xkys_L","name":"@星空_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/xkys.json"},
{"key":"csp_xpath_axx_L","name":"@爱西西_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Aixixi.json"},
{"key":"csp_xpath_fantuan_L","name":"@饭团_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/fantuan.json"},
//{"key":"csp_xpath_Renjie_L","name":"@唐人街_L","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Renjie.json"},
{"key":"csp_xpath_Nfuxs_L","name":"@南府_L","type":3,"api": "csp_XPathFilter","searchable":1,"quickSearch":0,"filterable":1,"ext": "https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Nfuxs.json"},
//{"key":"csp_xpath_cctv68_y","name":"狐狸影视_yh","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/cctv68.json"},
//{"key":"csp_xpath_1090ys2_y","name":"1090影视_yh","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/1090ys2.json"},
{"key":"csp_xpath_meiju56_y","name":"美剧网_yh","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/meiju56.json"},
{"key":"csp_xpath_lranc_y","name":"天天影视_yh","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/lranc.json"},
{"key":"csp_xpath_niumatv_h","name":"@牛马TV_08","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/hstsws008/mao@master/xpath/niumatv.json"},
{"key":"csp_xpath_nmys_h","name":"@农民影视_08","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/hstsws008/mao@master/xpath/nmys.json"},
{"key":"csp_xpath_mua99s_h","name":"@99S_08","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/hstsws008/mao@master/xpath/mua99s.json"},
{"key":"csp_xpath_czspp_h","name":"@厂长资源_08","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/hstsws008/mao@master/xpath/czspp.json"},
{"key":"csp_xpath_rrviprw_hy","name":"@人人影视_hd","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/hyundaic/xpath@master/rrviprw.json"},
{"key":"csp_xpath_smdyy_hy","name":"@神马影视_hd","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/hyundaic/xpath@master/smdyy.json"},
{"key":"csp_xpath_waipian2","name":"歪片星球_yh","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/waipian2.json"},
{"key":"csp_xpath_age_WN","name":"AGE动漫_WN","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"http://fj365.ml/xpath/agemys.json"},
//{"key":"csp_xpath_2345_hy","name":"@2345影视_hd","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/hyundaic/xpath@master/2345.json"},
//以下M列表--0220327--更新
{"key":"csp_appysv2_大熊","name":"大熊(M2)","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://dxys2233.com/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_流星","name":"流星(M2)","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://fkxs2233.com/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_全能","name":"全能(M2)","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://qnys5566.com/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_手指","name":"手指(M2)","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://szys5678.com/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_心爱","name":"心爱(M2)","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://xays6677.com/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_雪梨","name":"雪梨(M2)","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://zsb2233.com/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_杨桃","name":"杨桃(M2)","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://ytys3456.com/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_星空影视","name":"星空影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://xkys.tv/xgapp.php/v1/"},
{"key":"csp_appysv2_M2_饭团影视","name":"饭团影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://television.wkfile.com/api.php/app/"},
{"key":"csp_appysv2_M2_嘀哩嘀哩","name":"嘀哩嘀哩_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://dilidili.la/api.php/app/"},
{"key":"csp_appysv2_M2_手指影视","name":"手指影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://szys5678.com/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_心爱影视","name":"心爱影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://xays6677.com/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_913e影视","name":"913e影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://www.913e.net/xgapp.php/v1/"},
{"key":"csp_appysv2_M2_柚子视频","name":"柚子视频_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://yz.26ys.cn/api.php/v1.vod"},
{"key":"csp_appysv2_M2_无名影视","name":"无名影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://ccxg.xazhutu.com/xgapp.php/v1/"},
{"key":"csp_appysv2_M2_思奇影视","name":"思奇影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://app.siqitv.vip/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_艾特影视","name":"艾特影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.aitee.cc/api.php/v1.vod"},
{"key":"csp_appysv2_M2_TV酷","name":"TV酷_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.u23c.com/api.php/app/"},
{"key":"csp_appysv2_M2_橘子影视","name":"橘子影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://jz.juzidy.vip/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_麻瓜视频","name":"麻瓜视频_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://aliyun.k8aa.com/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_辉哥影视","name":"辉哥影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://app.y.hgyule8.com/api.php/v1.vod"},
{"key":"csp_appysv2_M2_极光影院","name":"极光影院_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://app.winxz.cc/api.php/v1.vod"},
{"key":"csp_appysv2_M2_vip影院","name":"vip影院_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://360yy.cn/api.php/app/"},
{"key":"csp_appysv2_M2_爱迪影视","name":"爱迪影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://aidi.fun/xgapp.php/v1/"},
{"key":"csp_appysv2_M2_看剧吧","name":"看剧吧_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://app.ishen520.com/api.php/v1.vod"},
{"key":"csp_appysv2_M2_播放呀","name":"播放呀_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.bofangya.com/xgapp.php/v1/"},
{"key":"csp_appysv2_M2_苍蓝资源","name":"苍蓝资源_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://vip.ruifenglb.com:4433/api.php/app/"},
{"key":"csp_appysv2_M2_段友影视","name":"段友影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://js.66app.me/api.php/app/"},
{"key":"csp_appysv2_M2_非凡TV","name":"非凡TV_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://app.feifan.live:2087/xgapp.php/v1/"},
{"key":"csp_appysv2_M2_HG影视","name":"HG影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://hgyx.vip/api.php/v1.vod"},
{"key":"csp_appysv2_M2_神马影视","name":"神马影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://summ.vip/api.php/v1.vod"},
{"key":"csp_appysv2_M2_追剧吧","name":"追剧吧_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://zhuiju8.vip/api.php/v1.vod"},
{"key":"csp_appysv2_M2_海胆影视","name":"海胆影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://xf123.cc/api.php/app/"},
{"key":"csp_appysv2_M2_海棠视频","name":"海棠视频_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.haitangsp.net/api.php/app/"},
{"key":"csp_appysv2_M2_京广航","name":"京广航_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.jingguanhang.com/api.php/app/"},
{"key":"csp_appysv2_M2_久九影视","name":"久九影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://api.58qxk.cn/xgapp.php/v1/"},
{"key":"csp_appysv2_M2_冷视TV","name":"冷视TV_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://len.tv/api.php/v1.vod"},
{"key":"csp_appysv2_M2_看365","name":"看365_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.kan365.xyz/api.php/app/"},
{"key":"csp_appysv2_M2_快云影音","name":"快云影音_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.kuaiyunyy.com/api.php/app/"},
{"key":"csp_appysv2_M2_灵狐影视","name":"灵狐影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://x.dmntv.com/api.php/app/"},
{"key":"csp_appysv2_M2_抹茶猪","name":"抹茶猪_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.mczdyw.com/api.php/app/"},
{"key":"csp_appysv2_M2_萌蛋蛋","name":"萌蛋蛋_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://app.mengdandan.com/xgapp.php/v1/"},
{"key":"csp_appysv2_M2_莫扎兔","name":"莫扎兔_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://www.mozhatu.xyz/api.php/app/"},
{"key":"csp_appysv2_M2_天神影视","name":"天神影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://deity.fun/api.php/app/"},
{"key":"csp_appysv2_M2_我爱电影","name":"我爱电影_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://xg.5imv.net/api.php/app/"},
{"key":"csp_appysv2_M2_小七影视","name":"小七影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://ys.kd60.cn/api.php/app/"},
{"key":"csp_appysv2_M2_(无名)","name":"(无名)_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://ccxg.xazhutu.com/xgapp.php/v1/"},
{"key":"csp_appysv2_M2_免费看","name":"免费看_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://freekan.vip/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_暖光影视","name":"暖光影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://app.bl210.com/api.php/v1.vod"},
{"key":"csp_appysv2_M2_小极影视","name":"小极影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://app.8d8q.com/api.php/v1.vod"},
{"key":"csp_appysv2_M2_月色影视","name":"月色影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://69ty.cc/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_U5影视","name":"U5影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://appx.uy07.com/api.php/v1.vod"},
{"key":"csp_appysv2_M2_yoyo","name":"yoyo_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://jx.wnvod.net/ruifenglb_api.php/v1.vod"},
{"key":"csp_appysv2_M2_爱影视","name":"爱影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.hzlff.cn/api.php/v1.vod"},
{"key":"csp_appysv2_M2_比邻影视","name":"比邻影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://0hzy.cn:9990/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_大头影视","name":"大头影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://dy.idsao.com/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_豆渣影视","name":"豆渣影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://douzhayss.cc/api.php/v1.vod"},
{"key":"csp_appysv2_M2_黄河影视","name":"黄河影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://i.ledu8.cn/api.php/v1.vod"},
{"key":"csp_appysv2_M2_林谷影视","name":"林谷影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://ys.linguyy.xyz/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_段友影视1","name":"段友影视1_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://shangjihuoke.com/api.php/v1.vod"},
{"key":"csp_appysv2_M2_饭后电影","name":"饭后电影_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://summ.vip/api.php/v1.vod"},
{"key":"csp_appysv2_M2_虎猫视频","name":"虎猫视频_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://humaosp.com/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_绿箭影视","name":"绿箭影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://www.69ty.cc/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_益达影院","name":"益达影院_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://luobu.yss6080.com/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_蓝光视频","name":"蓝光视频_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://vip.91iqiyi.com/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_美剧范","name":"美剧范_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://ttzmz.net/api.php/v1.vod"},
{"key":"csp_appysv2_M2_皮皮动漫","name":"皮皮动漫_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://dm.muying.me/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_视听星球","name":"视听星球_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://zjyapijzys.shynwlkj.com/api.php/v1.vod"},
{"key":"csp_appysv2_M2_淘剧社","name":"淘剧社_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://app.shuhai99.com/api.php/v1.vod"},
{"key":"csp_appysv2_M2_天天视频","name":"天天视频_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://app.qianju.cc/api.php/v1.vod"},
{"key":"csp_appysv2_M2_兔子窝","name":"兔子窝_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://cj.huimaojia.com:12345/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_吾爱影视","name":"吾爱影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://app.5lp.net/api.php/v1.vod"},
{"key":"csp_appysv2_M2_小蜻蜓","name":"小蜻蜓_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://3ketv.com/mogai_api.php/v1.vod"},
{"key":"csp_appysv2_M2_追剧猫","name":"追剧猫_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://tv.kmtvb.com/api.php/v1.vod"},
{"key":"csp_appysv2_M2_猪猪影院","name":"猪猪影院_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://app.2zdyy.com/api.php/v1.vod"},
{"key":"csp_appysv2_M2_渔渔影视","name":"渔渔影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://luobo.yugenye.site/api.php/v1.vod"},
//以下资源列表
{"key":"九九美剧","name":"九九美剧","type":1,"api":"https://www.999meiju.tv/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":1,"categories":[]},
{"key":"小蜻蜓APP","name":"小蜻蜓APP","type":1,"api":"http://3ketv.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":1,"categories":[]},
{"key":"乐活影视","name":"乐活影视","type":1,"api":"https://lehootv.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":1,"categories":[]},
{"key":"乐多资源1","name":"乐多资源1","type":0,"api":"http://cj.leduocaiji.com/inc/seacmsapi.php","playUrl":"https://ldy.jx.cn/wp-api/ifr.php?vid=","searchable":1,"quickSearch":1,"categories":[]},
{"key":"乐多资源2","name":"乐多资源2","type":0,"api":"http://api.leduosj.com/inc/api.php","playUrl":"https://ldy.jx.cn/wp-api/ifr.php?vid=","searchable":1,"quickSearch":1,"categories":[]},
{"key":"番茄资源","name":"番茄资源","type":1,"api":"http://api.fqzy.cc/api.php/provide/vod/","playUrl":"https://jx.fqzy.cc/jx.php?url=","searchable":1,"quickSearch":1,"categories":[]},
{"key":"2A资源","name":"2A资源","type":1,"api":"http://zy.zcocc.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"348电影网","name":"348电影网","type":1,"api":"https://348z.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"39影视","name":"39影视","type":0,"api":"https://www.39kan.com/api.php/provide/vod/at/xml/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"6U资源","name":"6U资源","type":1,"api":"http://zy.ataoju.com/inc/apijson_vod.php","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
//{"key":"8090资源","name":"8090资源","type":1,"api":"http://zy.yilans.net:8090/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"88资源","name":"88资源","type":1,"api":"http://www.88zy.live/inc/apijson_vod.php","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"BL视频","name":"BL视频","type":1,"api":"https://bljiex.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"KK看剧","name":"KK看剧","type":1,"api":"https://www.kkkanju.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
//{"key":"M3U8.TV资源","name":"M3U8.TV资源","type":1,"api":"http://www.zycaiji.net:7788/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"MBO影视","name":"MBO影视","type":0,"api":"https://www.mbomovie.com/api.php/provide/vod/at/xml/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"OmoFun动漫","name":"OmoFun动漫","type":1,"api":"https://www.omofun.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":["动漫","剧场版","国产","欧美"]},
{"key":"U酷资源","name":"U酷资源","type":1,"api":"http://ukuzy.com/api.php/provide/vod?ac=list","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"YT影视","name":"YT影视","type":1,"api":"http://ytys.cc/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"八戒资源","name":"八戒资源","type":1,"api":"http://cj.bajiecaiji.com/inc/apijson_vod.php","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"三零资源","name":"三零资源","type":1,"api":"http://api.000zy.com/provide/vod/","playUrl":"https://jx.3jx.net/?url=","categories":[]},
{"key":"千寻时光","name":"千寻时光","type":1,"api":"http://wy.dqyhg.cn/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"大米蓝光","name":"大米蓝光","type":1,"api":"https://www.dmzyu.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"飞鱼影视","name":"飞鱼影视","type":1,"api":"https://app.feiyu5.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"飞速资源","name":"飞速资源","type":1,"api":"https://m3u8.feisuzyapi.com/vod/at/xml/","playUrl":"https://www.feisuplayer.com/m3u8/?url=","searchable":1,"quickSearch":0,"categories":[]},
{"key":"不开门","name":"不开门","type":1,"api":"http://c.bukai.men/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"天龙影院","name":"天龙影院","type":1,"api":"http://www.tl86dy.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"天空资源","name":"天空资源","type":1,"api":"http://api.tiankongapi.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"天堂资源","name":"天堂资源","type":1,"api":"http://vipmv.cc/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
//{"key":"无尽资源","name":"无尽资源","type":1,"api":"https://wuzy9.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":1,"categories":[]},
{"key":"无极影院","name":"无极影院","type":1,"api":"http://wujiys.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"木偶人","name":"木偶人","type":1,"api":"http://vip.muoutv.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"比邻影视","name":"比邻影视","type":1,"api":"http://0hzy.cn:9990/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"片库","name":"片库","type":1,"api":"https://pianku.wang/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
//{"key":"乐多资源1","name":"乐多资源1","type":0,"api":"http://cj.leduocaiji.com/inc/seacmsapi.php","playUrl":"https://ldy.jx.cn/wp-api/ifr.php?vid=","categories":[]},
//{"key":"乐多资源2","name":"乐多资源2","type":0,"api":"http://api.leduosj.com/inc/api.php","playUrl":"https://ldy.jx.cn/wp-api/ifr.php?vid=","categories":[]},
{"key":"乐活影视","name":"乐活影视","type":1,"api":"https://lehootv.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"北斗星资源","name":"北斗星资源","type":1,"api":"https://v8.bdxzyapi.com/inc/apijson_vod.php","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"瓜皮TV","name":"瓜皮TV","type":1,"api":"http://www.dijiaxia.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"白联盟","name":"白联盟","type":1,"api":"https://www.hszbj.net/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"闪电资源","name":"闪电资源","type":1,"api":"http://sdzyapi.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"宅男影视","name":"宅男影视","type":1,"api":"http://www.sexyy.top/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"江湖","name":"江湖","type":1,"api":"http://jhzy.jhdyw.vip:8091/api.php/provide/vod","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"百度资源","name":"百度资源","type":1,"api":"https://api.apibdzy.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"百搜资源","name":"百搜资源","type":1,"api":"https://vip.baisou.ltd/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"红牛资源","name":"红牛资源","type":1,"api":"https://www.hongniuzy.com/inc/apijson_vod.php","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"网民电影","name":"网民电影","type":1,"api":"https://www.prinevillesda.org/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"艾特","name":"艾特","type":0,"api":"http://tv.aitesucai.xyz/api.php/provide/vod/at/xml","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"西门影视","name":"西门影视","type":1,"api":"https://ximenys.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"快看客栈","name":"快看客栈","type":1,"api":"https://www.vp1127.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
//{"key":"快播资源","name":"快播资源","type":1,"api":"http://www.kuaibozy.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"我爱跟剧","name":"我爱跟剧","type":1,"api":"http://www.52gen.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"每天看看","name":"每天看看","type":1,"api":"http://www.meitiankankan.cn:1234/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"侦探APP","name":"侦探APP","type":1,"api":"http://ys.huangguay.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"兔子窝","name":"兔子窝","type":1,"api":"http://cj.huimaojia.com:12345/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"初心影视","name":"初心影视","type":1,"api":"https://18mv.club/api.php/provide/vod/","playUrl":"https://jx.renrenmi.cc/?url=","categories":[]},
{"key":"奇乐(优剧)资源","name":"奇乐(优剧)资源","type":1,"api":"https://zy.ujuba.com/api.php/provide/vod/","playUrl":"https://zy.ujuba.com/play.php?url=","quickSearch":0,"categories":[]},
{"key":"畅视影视","name":"畅视影视","type":1,"api":"http://app.reboju.net/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"鱼乐资源","name":"鱼乐资源","type":1,"api":"https://api.ylzy1.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"哇可可影视","name":"哇可可影视","type":1,"api":"https://www.zwcoco.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"思乐影视","name":"思乐影视","type":1,"api":"https://www.4ltv.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"思古影院","name":"思古影院","type":1,"api":"https://www.siguyy.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"测试","name":"测试","type":1,"api":"http://107.150.5.146:39000/maccms10-main/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"美剧星球","name":"美剧星球","type":1,"api":"https://www.meijuxq.tv/inc/apijson_vod.php","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"英皇影城资源","name":"英皇影城资源","type":1,"api":"https://www.yhyczy.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"唐人街","name":"唐人街","type":0,"api":"https://www.tangrenjie.tv/api.php/provide/vod/at/xml","playUrl":""},
{"key":"晓峰影视","name":"晓峰影视","type":1,"api":"http://api.xxcr.tk/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"热映网","name":"热映网","type":1,"api":"http://hl.reying.vip/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"爱看啦","name":"爱看啦","type":0,"api":"http://v.aik.la/api.php/provide/vod/at/xml","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"爱搜影院","name":"爱搜影院","type":1,"api":"http://yunbangcheng.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"玺心影视","name":"玺心影视","type":1,"api":"https://tvcj.arbd.cn/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"玺娜影视","name":"玺娜影视","type":1,"api":"https://www.yuxidy.cn/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"清欢资源","name":"清欢资源","type":1,"api":"http://free.qinghuanzy.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"清欢授权","name":"清欢授权","type":1,"api":"https://www.qinghuanzy.com/qinghuan.php/provide/vod/?token=m7DJcblgDs","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"聆风资源","name":"聆风资源","type":1,"api":"http://maccms.bwcxvip.top/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"速更资源","name":"速更资源","type":1,"api":"https://sugengzy.cn/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"雪人官采","name":"雪人官采","type":1,"api":"https://zl.qd234.cn/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
//{"key":"番茄资源","name":"番茄资源","type":1,"api":"http://api.fqzy.cc/api.php/provide/vod/","playUrl":"https://jx.fqzy.cc/jx.php?url=","categories":[]},
{"key":"舒渡影视","name":"舒渡影视","type":1,"api":"http://www.lovctv.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"萌果资源","name":"萌果资源","type":1,"api":"http://api.appearoo.top/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"嗨哆咪影视","name":"嗨哆咪影视","type":1,"api":"http://hdmys1.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"想看资源","name":"想看资源","type":1,"api":"https://m3u8.xiangkanapi.com/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"椰子资源","name":"椰子资源","type":1,"api":"https://zy.gbxy.net.cn/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"随便看电影","name":"随便看电影","type":1,"api":"https://baobei666.com/inc/apijson_vod.php","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"嘀哩嘀哩","name":"嘀哩嘀哩","type":1,"api":"http://api.diliktv.xyz/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"酷点资源","name":"酷点资源","type":1,"api":"https://api.kuapi.cc/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"樱花资源","name":"樱花资源","type":1,"api":"https://m3u8.apiyhzy.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"趣看","name":"趣看","type":1,"api":"http://qkmp4.cn/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"飘花电影","name":"飘花电影","type":1,"api":"http://www.zzrhgg.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"飘花影院","name":"飘花影院","type":1,"api":"https://www.2mjtt.com/inc/apijson_vod.php","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"橘猫影视","name":"橘猫影视","type":1,"api":"http://www.zitv.cc/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"融兴bilibili","name":"融兴bilibili","type":1,"api":"https://bilibili.rongxingvr.cc/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"麒麟资源","name":"麒麟资源","type":1,"api":"http://www.qilinzyz.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
{"key":"迅播","name":"迅播qgvod","type":0,"api":"https://www.qgvod.com/api.php/provide/vod/at/xml/","playUrl":"https://jx.renrenmi.cc/?url=","searchable":1,"quickSearch":0,"filterable":0},
{"key":"影图","name":"影图(聚)","type":1,"api":"https://cj.vodimg.top/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"猪猪影院","name":"猪猪影院(聚)","type":1,"api":"https://www.2zdyy.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"美剧星球","name":"美剧星球(聚)","type":1,"api":"https://www.meijuxq.tv/inc/apijson_vod.php","searchable":0,"quickSearch":0},
{"key":"初恋云影视","name":"初恋云影视(聚)","type":1,"api":"https://video.xuanqi.pro/api.php/provide/vod/","playUrl":"parse:parwix1","searchable":1,"quickSearch":1},
{"key":"小猫咪","name":"小猫咪(聚)","type":1,"api":"http://zy.xiaomaomi.cc/api.php/provide/vod/","playUrl":"http://xiaomaomi.cc/player/?url=","searchable":1,"quickSearch":1},
{"key":"随缘电影","name":"随缘电影(聚)","type":1,"api":"https://baobei666.com/inc/apijson_vod.php","playUrl":"parse:parwix1","searchable":0,"quickSearch":0},
{"key":"飘零影院","name":"飘零影院(聚)","type":1,"api":"https://p2100.net/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"酷点影视","name":"酷点影视(聚)","type":1,"api":"http://ys.kudian6.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"艾旦影视","name":"艾旦影视(聚)","type":1,"api":"https://lovedan.net/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"艾思影院","name":"艾思影院(聚)","type":1,"api":"https://www.aitee.cc/api.php/provide/vod/","playUrl":"https://jx.zjmiao.com/?url=","searchable":1,"quickSearch":1},
{"key":"VV影视","name":"VV影视(聚)","type":1,"api":"https://vvdy.org/api.php/provide/vod/","playUrl":"https://vvdy.org/dm/?url=","searchable":1,"quickSearch":1},
{"key":"趣看","name":"趣看(聚)","type":1,"api":"https://qkmp4.cn/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"迅播影院","name":"迅播影院(聚)","type":1,"api":"https://www.qgvod.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"39影视","name":"39影视(聚)","type":1,"api":"https://www.39kan.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"剧大神","name":"剧大神(聚)","type":1,"api":"http://judashen.com/api.php/provide/vod/","playUrl":"parse:parwix1","searchable":1,"quickSearch":1},
{"key":"嗨哆咪影视","name":"嗨哆咪影视(聚)","type":1,"api":"http://hdmys1.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"橘猫影视","name":"橘猫影视(聚)","type":1,"api":"http://www.zitv.cc/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"速影","name":"速影(聚)","type":1,"api":"https://速影128.xyz/inc/apijson.php","searchable":0,"quickSearch":0},
{"key":"飘花电影","name":"飘花电影(聚)","type":1,"api":"http://www.zzrhgg.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"千寻时光","name":"千寻时光(聚)","type":1,"api":"http://wy.dqyhg.cn/api.php/provide/vod/","playUrl":"parse:parwix1","searchable":1,"quickSearch":1},
{"key":"快看客栈","name":"快看客栈(聚)","type":1,"api":"https://www.vp1127.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"网民电影","name":"网民电影(聚)","type":1,"api":"https://www.prinevillesda.org/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"MBO影视","name":"MBO影视(聚)","type":0,"api":"https://www.mbomovie.com/api.php/provide/vod/at/xml/","searchable":0,"quickSearch":0},
{"key":"兔子窝","name":"兔子窝(聚)","type":1,"api":"http://cj.huimaojia.com:12345/api.php/provide/vod/","playUrl":"parse:parwix1","searchable":1,"quickSearch":1},
{"key":"哇可可影视","name":"哇可可影视(聚)","type":1,"api":"https://www.zwcoco.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"共青春","name":"共青春(聚)","type":1,"api":"https://gqcyy.com/api.php/provide/vod/","playUrl":"parse:parwix1","searchable":1,"quickSearch":1},
{"key":"酷猫影视","name":"酷猫影视(聚)","type":1,"api":"https://www.pgcms10.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"胖猫影视","name":"胖猫影视(聚)","type":1,"api":"http://www.pangmaotv.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
//以下为1-8限
{"key":"环","name":"*环","type":0,"api":"http://wmcj8.com/inc/sapi.php?ac=videolist","playUrl":"","categories":[],"quickSearch":0},
{"key":"狼","name":"狼","type":0,"api":"http://cjmygzy.com/inc/sapi.php?ac=videolist","playUrl":"","categories":[],"quickSearch":0},
{"key":"富","name":"富","type":0,"api":"http://f2dcj6.com/sapi/?ac=videolist","playUrl":"","categories":[],"quickSearch":0},
{"key":"美","name":"美","type":1,"api":"https://www.msnii.com/api/json.php","playUrl":"","categories":[],"quickSearch":0},
{"key":"香","name":"香","type":1,"api":"https://www.gdlsp.com/api/json.php","playUrl":"","categories":[],"quickSearch":0},
{"key":"花","name":"花","type":1,"api":"https://apihjzy.com/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
{"key":"探","name":"探","type":1,"api":"https://apittzy.com/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
{"key":"A","name":"A","type":0,"api":"http://m.7777688.com/inc/api.php","playUrl":"","categories":[],"quickSearch":0},
{"key":"水","name":"水","type":1,"api":"https://www.xrbsp.com/api/json.php","playUrl":"","categories":[],"quickSearch":0},
{"key":"佳","name":"佳","type":0,"api":"https://api.jializyzapi.com/inc/api.php","playUrl":"","categories":[],"quickSearch":0},
{"key":"白","name":"白","type":1,"api":"https://www.kxgav.com/api/json.php","playUrl":"","categories":[],"quickSearch":0},
{"key":"鲨","name":"鲨","type":1,"api":"https://shayuapi.com/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
{"key":"袜","name":"袜","type":1,"api":"https://siwazyw.net/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
{"key":"乐","name":"乐","type":1,"api":"https://lbapi9.com/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
{"key":"字","name":"字","type":0,"api":"http://zmcj88.com/sapi?ac=videolist","playUrl":"","categories":[],"quickSearch":0},
{"key":"J","name":"J","type":0,"api":"http://mygzycj.com/api.php?ac=list","playUrl":"","categories":[],"quickSearch":0},
{"key":"S","name":"S","type":0,"api":"http://secj8.com/inc/sapi.php?ac=videolist","playUrl":"","categories":[],"quickSearch":0},
{"key":"速","name":"速","type":0,"api":"http://www.ggmmzy.com:9999/inc/xml","playUrl":"","categories":[],"quickSearch":0,"searchable":0},
{"key":"天","name":"天","type":0,"api":"http://bttcj.com/inc/sapi.php?ac=videolist","playUrl":"","categories":[],"quickSearch":0},
{"key":"番","name":"番","type":1,"api":"http://fhapi9.com/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
{"key":"来","name":"来","type":0,"api":"http://llzxcj.com/inc/sck.php?ac=videolist","playUrl":"","categories":[],"quickSearch":0},
{"key":"玖","name":"玖","type":0,"api":"http://99zywcj.com/inc/sapi.php?ac=videolist","playUrl":"","categories":[],"quickSearch":0},
{"key":"桃","name":"桃","type":1,"api":"https://api.taoseapi.com/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
{"key":"秀","name":"秀","type":1,"api":"https://api.xiuseapi.com/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
{"key":"CK","name":"CK","type":1,"api":"https://ckzy.me/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0}
],
//以下直播列表
"lives": [
//proxy加载列表
//{"group":"redirect","channels":[
//{"name":"live","urls":["proxy://do=live&type=txt&ext=aHR0cDovL2ZqMzY1Lm1sLzAvdHYudHh0"]}
//]}
//
{"group": "CCTV","channels": [{"name":"反馈蜗牛ci.ci/672","urls":["http://hls-ott-zhibo.wasu.tv/live/443/index.m3u8","http://183.232.171.91/tx.hls.huya.com/src/1199512837905-1199512837905-5226813369159254016-2399025799266-10057-A-0-1.m3u8","http://dyscdnali3.douyucdn.cn/live/2901080rH4xX1NNE.flv?uuid=","http://dyscdnali1.douyucdn.cn/live/2901080rH4xX1NNE.flv?uuid=","http://tx2play1.douyucdn.cn/live/2901080rH4xX1NNE.xs?uuid="]},
{"name":"中国天气","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227210/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227210/index.m3u8?servicetype=1","http://140.207.241.2:8080/live/program/live/zgqx/1300000/mnf.m3u8","http://39.135.230.71/ott.fj.chinamobile.com/PLTV/88888888/224/3221227005/index.m3u8","http://hls.weathertv.cn/tslslive/qCFIfHB/hls/live_sd.m3u8"]},
{"name":"CCTV-1","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2000210103.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221225726/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221225777/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225573/index.m3u8?fmt=ts2hls","http://39.135.138.58:18890/PLTV/88888888/224/3221225618/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225642/index.m3u8","http://117.148.179.155/PLTV/88888888/224/3221231468/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv1hd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225630/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225618/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225918/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225762/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226016/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226834/48356507.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225804/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv1/HD-8000k-1080P-cctv1","http://yinhe-live.yinhe.vs.rxip.sc96655.com/live/CCTV-1H265_4000.m3u8","http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225777/1/index.m3u8?fmt=ts2hls","http://39.134.24.24/PLTV/88888888/224/3221225684/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225829/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225652/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221226024/index.m3u8","http://39.135.34.150:8080/000000001000/1000000001000021973/1.m3u8?xtkg","http://39.134.115.163:8080/PLTV/88888910/224/3221225642/index.m3u8","http://mmitv.top/pltv/gz.php?id=cctv-1","http://39.135.138.58:18890/PLTV/88888888/224/3221225642/index.m3u8","http://39.134.39.4/PLTV/88888888/224/3221226247/index.m3u8","http://39.134.66.110/PLTV/88888888/224/3221225816/index.m3u8","http://117.136.154.98/PLTV/88888888/224/3221225663/index.m3u8","http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221225530/index.m3u8","http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226226/1.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225726/1/index.m3u8?fmt=ts2hls","http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227675/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231468/index.m3u8","http://117.148.179.55/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221228809/index.m3u8","http://39.135.34.142:8080/000000001000/1000000001000021973/1.m3u8?","http://124.232.233.14:6610/000000001001/201500000063/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2","http://coocaa-ynbit-ws.ifengli.com:2381/live/cctv-1hd/1.m3u8","http://gslbserv.itv.cmvideo.cn:80/1.m3u8?channel-id=ystenlive&Contentid=1000000001000021973&livemode=1&stbId=00000250001B50800001B401420BC069&userToken=&usergroup=","http://otttv.bj.chinamobile.com/PLTV/88888888/224/3221226226/index.m3u8?servicetype=2&icpid=88888888&accounttype=1&limitflux=-1&limitdur=-1&GuardEncType=2&accountinfo=hEQbBsN1cd87ZS1LRd3TXf5LH0Ql8IEhnGwO%2B75IdBOPtEbjPb9jhieBCtTUAr9dv5ZbZ4EessCEDFzP4cGUE71B0UFe79pybuMPoFbNny1A5gXy7m59YoE1AMvcRYl8Pvf6NHAGt8pY%2F1XkpmVDXg%3D%3D%3A20180910182102%2C60D21CD359DA%2C124.129.96.17%2C20180910182102%2C10000100000000050000000002171815%2C0B6786BF2451D83B45BD7E85EAB1B8F7%2C-1%2C1%2C1%2C-1%2C%2C7%2C2201300%2C17%2C%2C4%2CEND","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225618/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225918/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225501/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225642/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-1/1.m3u8","http://cctvalih5ca.v.myalicdn.com/live/cctv1_2/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226416/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226515/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226438/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226563/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226226/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221226564/1.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221227014/index.m3u8","http://39.135.230.69/ott.fj.chinamobile.com/PLTV/88888888/224/3221226995/index.m3u8","http://39.135.230.81/ott.fj.chinamobile.com/PLTV/88888888/224/3221226908/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225922/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225812/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221226624/index.m3u8","http://66.90.88.132:8080/hls/ph00481/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225829/index.m3u8"]},
{"name":"CCTV-2","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225706/1/index.m3u8?fmt=ts2hls","http://39.135.230.74/ott.fj.chinamobile.com/PLTV/88888888/224/3221226795/index.m3u8","http://39.135.138.58:18890/PLTV/88888910/224/3221225643/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225619/index.m3u8","http://117.148.179.147/PLTV/88888888/224/3221231678/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225572/index.m3u8?fmt=ts2hls","http://v.mp.haue.edu.cn/hls/cctv2hd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225619/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226655/40417429.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226195/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv2/HD-8000k-1080P-cctv2","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225588/index.m3u8","http://yinhe-live.yinhe.vs.rxip.sc96655.com/live/CCTV-2H265_4000.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228118/index.m3u8","http://39.130.202.81:6610/gitv_live/G_CCTV-2-HD/G_CCTV-2-HD/.m3u8","http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225612/1.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228118/index.m3u8","http://202.204.118.254/hls/ch3.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228094/index.m3u8","http://39.130.202.81:6610/gitv_live/G_CCTV-2-HD/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225686/index.m3u8","http://39.135.138.60:18890/PLTV/88888910/224/3221225643/index.m3u8","http://39.134.134.88/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226371/1.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225619/index.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225643/index.m3u8","http://39.134.39.4/PLTV/88888888/224/3221226220/index.m3u8","http://39.134.135.81/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226371/1.m3u8","http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226472/1.m3u8","http://117.136.154.98/PLTV/88888888/224/3221225502/index.m3u8","http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227708/index.m3u8","http://223.110.245.158/ott.js.chinamobile.com/PLTV/3/224/3221227696/index.m3u8","http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221226993/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225706/1/index.m3u8?fmt=ts2hls","http://223.110.245.148/ott.js.chinamobile.com/PLTV/3/224/3221227543/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231678/index.m3u8","http://39.135.34.142:8080/000000001000/1000000001000012442/1.m3u8?","http://coocaa-ynbit-ws.ifengli.com:2381/live/cctv-2hd/1.m3u8","http://otttv.bj.chinamobile.com/PLTV/88888888/224/3221226230/index.m3u8?servicetype=2&icpid=&accounttype=1&limitflux=-1&limitdur=-1&GuardEncType=2&accountinfo=hEQbBsN1cd87ZS1LRd3TXf5LH0Ql8IEhnGwO%2B75IdBOPtEbjPb9jhieBCtTUAr9dv5ZbZ4EessCEDFzP4cGUE71B0UFe79pybuMPoFbNny03lPQqzzaPom58NeiSUcIEpHb2JZvMEi7Y3xwc0BSosA%3D%3D%3A20180910182829%2C60D21CD359DA%2C124.129.96.17%2C20180910182829%2C10000100000000050000000002171859%2C0B6786BF2451D83B45BD7E85EAB1B8F7%2C-1%2C1%2C1%2C-1%2C%2C7%2C2201300%2C17%2C%2C4%2CEND","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225500/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225643/index.m3u8","http://cctvalih5ca.v.myalicdn.com/live/cctv2_2/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-2/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225934/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226230/1.m3u8","http://39.135.230.80/ott.fj.chinamobile.com/PLTV/88888888/224/3221225800/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225923/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221226915/index.m3u8"]},
{"name":"CCTV-3","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226008/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226040/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226263/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225647/index.m3u8","http://117.148.179.183/PLTV/88888888/224/3221231682/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv3hd.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv3/HD-8000k-1080P-cctv3","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226021/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221226023/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225630/index.m3u8","https://p4.weizan.cn/1228393605/270303707572166290/live.m3u8","http://39.135.34.150:8080/000000001000/1000000001000011218/1.m3u8?xtkg","http://39.135.32.29:6610/000000001000/1000000001000011218/1.m3u8?","http://140.207.241.2:8080/live/program/live/cctv3hd/2300000/mnf.m3u8","http://111.63.117.13:6060/030000001000/CCTV-3/CCTV-3.m3u8","http://117.169.120.160:8080/live/cctv-3/1.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-3/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226471/1.m3u8","http://66.90.88.132:8080/hls/ph00482/index.m3u8"]},
{"name":"CCTV-4","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225779/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221225744/1/index.m3u8?fmt=ts2hls","http://39.135.230.80/ott.fj.chinamobile.com/PLTV/88888888/224/3221225802/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225621/index.m3u8","http://117.148.179.182/PLTV/88888888/224/3221231726/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225571/index.m3u8?fmt=ts2hls","http://v.mp.haue.edu.cn/hls/cctv4hd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225621/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226633/40417241.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226191/index.m3u8","http://183.207.248.71:80/cntv/live1/cctv-4/cctv-4","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226007/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225662/index.m3u8","http://39.135.34.150:8080/000000001000/1000000002000031664/1.m3u8?xtkg","http://117.169.120.160:8080/live/cctv-4/1.m3u8","http://39.135.32.29:6610/000000001000/1000000002000031664/1.m3u8?","http://39.134.134.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226335/1.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225621/index.m3u8","http://117.136.154.86/PLTV/88888888/224/3221225501/index.m3u8","http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226335/1.m3u8","http://117.136.154.98/PLTV/88888888/224/3221225501/index.m3u8","http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227658/index.m3u8","http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227683/index.m3u8","http://223.110.243.140/ott.js.chinamobile.com/PLTV/3/224/3221225534/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225779/1/index.m3u8?fmt=ts2hls","http://39.135.34.142:8080/000000001000/1000000002000031664/1.m3u8?","http://coocaa-ynbit-ws.ifengli.com:2381/live/cctv-4sd/1.m3u8","http://otttv.bj.chinamobile.com/PLTV/88888888/224/3221226156/index.m3u8?servicetype=2&icpid=&accounttype=1&limitflux=-1&limitdur=-1&GuardEncType=2&accountinfo=hEQbBsN1cd87ZS1LRd3TXf5LH0Ql8IEhnGwO%2B75IdBOPtEbjPb9jhieBCtTUAr9dv5ZbZ4EessCEDFzP4cGUE71B0UFe79pybuMPoFbNny39rqLpWTnoSe3SMCfckAmq2XZ52h1qe0gYx4t9%2FVbXIA%3D%3D%3A20180910183850%2C60D21CD359DA%2C124.129.96.17%2C20180910183850%2C10000100000000050000000001936248%2C0B6786BF2451D83B45BD7E85EAB1B8F7%2C-1%2C1%2C1%2C-1%2C%2C7%2C2201300%2C17%2C%2C4%2CEND","http://cctvalih5ca.v.myalicdn.com/live/cctv4_2/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-4/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226335/1.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221226968/index.m3u8","http://66.90.88.132:8080/hls/ph00483/index.m3u8"]},
{"name":"CCTV-5","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226024/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226043/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226248/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226259/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226306/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225751/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225752/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv5phd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225753/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225754/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225633/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226019/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv5/HD-8000k-1080P-cctv5","http://39.134.24.24/PLTV/88888888/224/3221226025/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225758/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv5/HD-8000k-1080P-cctv5","http://39.135.34.150:8080/000000001000/1000000001000004794/1.m3u8?xtkg","http://111.63.117.13:6060/030000001000/CCTV-5/CCTV-5.m3u8","http://140.207.241.2:8080/live/program/live/cctv5hd/4000000/mnf.m3u8","http://117.169.120.160:8080/live/cctv-5/1.m3u8","http://39.134.134.88:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226469/1.m3u8","http://117.136.154.98/PLTV/88888888/224/3221225780/index.m3u8","http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227661/index.m3u8","http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227686/index.m3u8","http://223.110.243.158/ott.js.chinamobile.com/PLTV/3/224/3221227478/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226024/1/index.m3u8?fmt=ts2hls","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226043/1/index.m3u8?fmt=ts2hls","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226248/1/index.m3u8?fmt=ts2hls","http://39.134.66.110/PLTV/88888888/224/3221225818/index.m3u8","http://223.110.243.141/ott.js.chinamobile.com/PLTV/3/224/3221227661/index.m3u8","http://223.110.243.145/ott.js.chinamobile.com/PLTV/3/224/3221227478/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231702/index.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226454/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226469/1.m3u8"]},
{"name":"CCTV-5+","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226128/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226171/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226285/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226309/1/index.m3u8?fmt=ts2hls","http://39.135.230.82/ott.fj.chinamobile.com/PLTV/88888888/224/3221225821/index.m3u8","http://117.148.179.136/PLTV/88888888/224/3221231459/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225649/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv05plus/HD-8000k-1080P-cctv05plus","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225603/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225718/index.m3u8","http://39.134.39.39/TVOD/88888888/224/3221226253/index.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225649/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225761/index.m3u8","http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226349/1.m3u8","http://39.134.134.88:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226458/1.m3u8","http://117.169.124.46:6410/ysten-businessmobile/live/hdcctv05plus/1.m3u8","http://39.134.135.81:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226225/1.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225507/index.m3u8","http://117.136.154.98/PLTV/88888888/224/3221225512/index.m3u8","http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227714/index.m3u8","http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221227381/index.m3u8","http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221227480/index.m3u8","http://223.110.245.150/ott.js.chinamobile.com/PLTV/3/224/3221227502/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226128/1/index.m3u8?fmt=ts2hls","http://223.110.243.145/ott.js.chinamobile.com/PLTV/3/224/3221227685/index.m3u8","http://117.148.179.55/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221228822/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231459/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/hdcctv05plus/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226458/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226225/1.m3u8","http://39.135.230.72/ott.fj.chinamobile.com/PLTV/88888888/224/3221225939/index.m3u8","http://39.135.230.88/ott.fj.chinamobile.com/PLTV/88888888/224/3221226919/index.m3u8"]},
{"name":"CCTV-6","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226011/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226046/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226250/1/index.m3u8?fmt=ts2hls","http://117.148.179.153/PLTV/88888888/224/3221231724/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225650/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225632/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv6hd.m3u8","http://183.207.248.71:80/cntv/live1/cctv-6/cctv-6","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226010/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221226027/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225708/index.m3u8","http://140.207.241.2:8080/live/program/live/cctv6hd/2300000/mnf.m3u8","http://39.135.32.29:6610/000000001000/1000000001000016466/1.m3u8?","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226393/index.m3u8","http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225548/index.m3u8","http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221225548/index.m3u8","http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221227209/index.m3u8","http://223.110.243.145/ott.js.chinamobile.com/PLTV/3/224/3221227581/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226011/1/index.m3u8?fmt=ts2hls","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226046/1/index.m3u8?fmt=ts2hls","http://223.110.243.158/ott.js.chinamobile.com/PLTV/3/224/3221227664/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231724/index.m3u8","http://117.148.179.55/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230685/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-6/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226453/1.m3u8"]},
{"name":"CCTV-7","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225745/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225570/index.m3u8?fmt=ts2hls","http://v.mp.haue.edu.cn/hls/cctv7hd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225624/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225499/index.m3u8?fmt=ts2hls","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv7/HD-8000k-1080P-cctv7","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225733/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225855/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225768/index.m3u8","http://39.135.32.29:6610/000000001000/1000000001000017218/1.m3u8?","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226192/index.m3u8","http://39.135.138.60:18890/PLTV/88888910/224/3221225624/index.m3u8","http://39.135.138.59:18890/PLTV/88888910/224/3221225644/index.m3u8","http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226234/1.m3u8","http://39.135.238.69/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226467/1.m3u8","http://39.134.66.110/PLTV/88888888/224/3221225671/index.m3u8","http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227642/index.m3u8","http://223.110.245.148/ott.js.chinamobile.com/PLTV/3/224/3221225546/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225745/1/index.m3u8?fmt=ts2hls","http://39.134.66.66/PLTV/88888888/224/3221225671/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231633/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226645/40426612.smil","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-7/1.m3u8","http://cctvalih5ca.v.myalicdn.com/live/cctv7_2/index.m3u8","http://111.13.42.47/PLTV/88888888/224/3221226452/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226467/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226234/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225863/1.m3u8"]},
{"name":"CCTV-8","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226005/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226060/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226244/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225635/index.m3u8","http://39.134.66.2/PLTV/88888888/224/3221225795/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv8hd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225631/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv8/HD-8000k-1080P-cctv8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226008/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221226029/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225666/index.m3u8","http://39.135.34.150:8080/000000001000/1000000001000003736/1.m3u8?xtkg","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226391/index.m3u8","http://140.207.241.2:8080/live/program/live/cctv8hd/2300000/mnf.m3u8","http://117.169.120.160:8080/live/cctv-8/1.m3u8","http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221227205/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231694/index.m3u8","http://117.148.179.55/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230737/index.m3u8","http://223.110.243.164/ott.js.chinamobile.com/PLTV/3/224/3221227667/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226005/1/index.m3u8?fmt=ts2hls","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-8/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226451/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226485/1.m3u8"]},
{"name":"CCTV-9","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226031/1/index.m3u8?fmt=ts2hls","http://39.134.115.163:8080/PLTV/88888910/224/3221225626/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225920/index.m3u8?fmt=ts2hls","http://117.148.179.162/PLTV/88888888/224/3221231697/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv9hd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225626/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225646/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv9/HD-8000k-1080P-cctv9","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225734/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225672/index.m3u8","http://117.169.120.160:8080/live/cctv-news/1.m3u8","http://39.134.134.88:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226465/1.m3u8","http://39.134.66.110/PLTV/88888888/224/3221225676/index.m3u8","http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221227614/index.m3u8","http://223.110.243.143/ott.js.chinamobile.com/PLTV/3/224/3221227704/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226031/1/index.m3u8?fmt=ts2hls","http://39.134.134.86:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226236/1.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231697/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-9/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226450/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226236/1.m3u8"]},
{"name":"CCTV-10","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225685/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225569/index.m3u8?fmt=ts2hls","http://117.148.179.175/PLTV/88888888/224/3221231666/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv10hd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225627/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225496/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225636/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv10/HD-8000k-1080P-cctv10","http://39.134.24.24/PLTV/88888888/224/3221225823/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225730/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225782/index.m3u8","http://39.135.34.150:8080/000000001000/7019587760656900133/1.m3u8?xtkg","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226189/index.m3u8","http://117.169.120.160:8080/live/cctv-10/1.m3u8","http://39.134.66.110/PLTV/88888888/224/3221225677/index.m3u8","http://117.136.154.98/PLTV/88888888/224/3221225503/index.m3u8","http://223.110.243.141/ott.js.chinamobile.com/PLTV/3/224/3221227717/index.m3u8","http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221225550/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225685/1/index.m3u8?fmt=ts2hls","http://117.148.179.160/PLTV/88888888/224/3221231666/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226718/40417274.smil","http://coocaa-ynbit-ws.ifengli.com:2381/live/cctv-10hd/1.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-10/1.m3u8","http://cctvalih5ca.v.myalicdn.com/live/cctv10_2/index.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226227/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225868/1.m3u8"]},
{"name":"CCTV-11","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225746/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225568/index.m3u8?fmt=ts2hls","http://117.148.179.164/PLTV/88888888/224/3221231711/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv11.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225628/index.m3u8","http://183.207.248.71:80/cntv/live1/n-cctv-11/n-cctv-11","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225597/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225825/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225774/index.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225628/index.m3u8","http://39.134.135.81/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226334/1.m3u8","http://39.134.135.126:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226463/1.m3u8","http://223.110.243.149/ott.js.chinamobile.com/PLTV/3/224/3221227524/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225746/1/index.m3u8?fmt=ts2hls","http://117.148.179.160/PLTV/88888888/224/3221231711/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-11/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225869/1.m3u8"]},
{"name":"CCTV-12","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225747/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225567/index.m3u8?fmt=ts2hls","http://117.148.179.150/PLTV/88888888/224/3221231660/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv12hd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225629/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225921/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225495/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225637/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225731/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv12/HD-8000k-1080P-cctv12","http://39.134.24.24/PLTV/88888888/224/3221225702/index.m3u8","http://39.135.32.29:6610/000000001000/1000000001000032494/1.m3u8?","http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226228/1.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225669/index.m3u8","http://39.134.135.126:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226462/1.m3u8","http://117.136.154.98/PLTV/88888888/224/3221225505/index.m3u8","http://223.110.243.164/ott.js.chinamobile.com/PLTV/3/224/3221227655/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225747/1/index.m3u8?fmt=ts2hls","http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221225556/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-12/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226447/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226462/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226228/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225870/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226190/index.m3u8"]},
{"name":"CCTV-13","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225748/1/index.m3u8?fmt=ts2hls","http://newsbsh5ca.v.live.baishancdnx.cn/live/newscctv13_2/index.m3u8","http://39.135.138.59:18890/PLTV/88888910/224/3221225638/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225638/index.m3u8","http://39.134.66.8/PLTV/88888888/224/3221225812/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225566/index.m3u8?fmt=ts2hls","http://v.mp.haue.edu.cn/hls/cctv13hd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225638/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225638/index.m3u8","rtsp://183.252.176.54:554/PLTV/88888888/224/3221226104/10000100000000060000000002298296_0.smil","http://yinhe-live.yinhe.vs.rxip.sc96655.com/live/CCTV-xw_4000.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228224/index.m3u8","http://219.150.217.47:6610/PLTV1/280/index.m3u8?icpid=dxrm1","http://183.207.248.71:80/cntv/live1/cctv-13/cctv-13","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226011/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225827/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225612/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225650/index.m3u8","http://39.135.140.104:6610/PLTV/88888888/224/3221225638/2/index.m3u8?fmt=ts2hls","http://39.135.34.150:8080/000000001000/1000000002000021303/1.m3u8?xtkg","http://39.135.138.60:18890/PLTV/88888910/224/3221225638/index.m3u8","http://117.169.120.160:8080/live/cctv-13/1.m3u8","http://39.135.32.29:6610/000000001000/1000000002000021303/1.m3u8?","http://39.134.134.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226316/1.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225638/index.m3u8","http://39.135.238.15:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226316/1.m3u8","http://39.135.138.59:18890/PLTV/88888910/224/3221225638/index.m3u8","http://117.136.154.98/PLTV/88888888/224/3221225510/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225748/1/index.m3u8?fmt=ts2hls","http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221227387/index.m3u8","http://39.135.34.142:8080/000000001000/1000000002000021303/1.m3u8?","rtsp://183.252.166.199/PLTV/88888888/224/3221226104/10000100000000060000000002298296_0.smil","http://coocaa-ynbit-ws.ifengli.com:2381/live/cctv-newssd/1.m3u8","http://otttv.bj.chinamobile.com/PLTV/88888888/224/3221226159/index.m3u8?servicetype=2&icpid=&accounttype=1&limitflux=-1&limitdur=-1&GuardEncType=2&accountinfo=hEQbBsN1cd87ZS1LRd3TXf5LH0Ql8IEhnGwO%2B75IdBOPtEbjPb9jhieBCtTUAr9dv5ZbZ4EessCEDFzP4cGUE71B0UFe79pybuMPoFbNny0UFqokgozs5U5z7uMDGi6ggqbCRmEa1rrlXOkqIpCyQA%3D%3D%3A20180910190104%2C60D21CD359DA%2C124.129.96.17%2C20180910190104%2C10000100000000050000000001936260%2C0B6786BF2451D83B45BD7E85EAB1B8F7%2C-1%2C1%2C1%2C-1%2C%2C7%2C2201300%2C17%2C%2C4%2CEND","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-13/1.m3u8","http://cctvalih5ca.v.myalicdn.com/live/cctv13_2/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221226568/1.m3u8","http://39.135.230.82/ott.fj.chinamobile.com/PLTV/88888888/224/3221226985/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225817/index.m3u8","http://scgctvshow.sctv.com/scgc/cctv13/index.m3u8"]},
{"name":"CCTV-14","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225727/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225565/index.m3u8?fmt=ts2hls","http://117.148.179.182/PLTV/88888888/224/3221231648/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv14hd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225639/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225494/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225640/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv14/HD-8000k-1080P-cctv14","http://39.134.24.24/PLTV/88888888/224/3221225857/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225732/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225658/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225674/index.m3u8","http://117.169.120.160:8080/live/cctv-14/1.m3u8","http://39.134.135.81/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226229/1.m3u8","http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227656/index.m3u8","http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227693/index.m3u8","http://117.136.154.86/PLTV/88888888/224/3221225678/index.m3u8","http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221227201/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225727/1/index.m3u8?fmt=ts2hls","http://223.110.243.141/ott.js.chinamobile.com/PLTV/3/224/3221227693/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231648/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-14/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226445/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226229/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226461/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225872/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226193/index.m3u8"]},
{"name":"CCTV-15","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225749/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225564/index.m3u8?fmt=ts2hls","http://117.148.179.169/PLTV/88888888/224/3221231693/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv15.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225641/index.m3u8","http://183.207.248.71:80/cntv/live1/n-cctv-15/n-cctv-15","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225601/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225636/index.m3u8","http://39.135.34.150:8080/000000001000/1000000002000008163/1.m3u8?xtkg","http://117.136.154.86/PLTV/88888888/224/3221225508/index.m3u8","http://117.136.154.98/PLTV/88888888/224/3221225508/index.m3u8","http://223.110.243.167/ott.js.chinamobile.com/PLTV/3/224/3221227538/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225749/1/index.m3u8?fmt=ts2hls","http://117.148.179.160/PLTV/88888888/224/3221231693/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-15/1.m3u8","http://111.13.42.47/PLTV/88888888/224/3221226460/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225940/1.m3u8"]},
{"name":"CCTV-16","urls":["http://cctvalih5ca.v.myalicdn.com/live/cctv16_2/index.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221226283/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226302/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226305/1/index.m3u8?fmt=ts2hls","http://39.135.46.246:6610/PLTV/77777777/224/3221225956/index.m3u8","http://liveop.cctv.cn/hls/CCTV16HD/playlist.m3u8","http://yinhe-live.yinhe.vs.rxip.sc96655.com/live/CCTV-16_4000.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225919/index.m3u8?fmt=ts2hls","http://v.mp.haue.edu.cn/hls/cctv16.m3u8","http://yinhe-live.yinhe.vs.rxip.sc96655.com/live/CCTV-16-4K_8000.m3u8","http://59.49.72.48/live.aishang.ctlcdn.com/00000110240388_1/encoder/0/playlist.m3u8?CONTENTID=00000110240388_1","http://110.184.197.25:9981/stream/channelid/1747634698","https://live.olympicchannelchina.cn/aoyun/cctv16_1td.m3u8"]},
{"name":"CCTV-17","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226027/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225910/index.m3u8?fmt=ts2hls","http://117.148.179.167/PLTV/88888888/224/3221231772/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv17hd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225922/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225907/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225908/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225909/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225765/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv17/HD-8000k-1080P-cctv17","http://39.134.24.24/PLTV/88888888/224/3221225859/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv17/HD-8000k-1080P-cctv17","http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226318/1.m3u8","http://39.134.66.110/PLTV/88888888/224/3221225708/index.m3u8","http://117.136.154.98/PLTV/88888888/224/3221225706/index.m3u8","http://223.110.243.167/ott.js.chinamobile.com/PLTV/3/224/3221227578/index.m3u8","http://223.110.243.167/ott.js.chinamobile.com/PLTV/3/224/3221227589/index.m3u8","http://223.110.243.150/ott.js.chinamobile.com/PLTV/3/224/3221227592/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226027/1/index.m3u8?fmt=ts2hls","http://39.134.135.82:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226459/1.m3u8","http://223.110.243.149/ott.js.chinamobile.com/PLTV/3/224/3221227726/index.m3u8","http://223.110.243.143/ott.js.chinamobile.com/PLTV/3/224/3221227726/index.m3u8","http://117.148.179.55/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221229765/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231772/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226198/index.m3u8"]},
{"name":"CCTV-风云音乐","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012514103.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221225698/1/index.m3u8?fmt=ts2hls","http://42.176.185.28:9901/tsfile/live/1024_1.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221226083/1/index.m3u8?fmt=ts2hls","http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226083/1/index.m3u8?fmt=ts2hls","http://175.18.189.238:9999/tsfile/live/1029_1.m3u8","http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/fyyy/fyyy711/1000/index.m3u8?&encrypt=1","http://mmitv.top/pltv/gdgz.php?id=117&upt=604ef0611cb50f83","http://mmitv.top/pltv/gdgz.php?id=117&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=cctvfyyy&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=cctvfyyy&upt=604ef0611cb50f83","http://mmitv.top/pltv/gdgz.php?id=117&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=cctvfyyy&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=117&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=cctvfyyy&upt=63a44f4ef2f3c6ce","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226083/1/index.m3u8?fmt=ts2hls","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225698/1/index.m3u8?fmt=ts2hls"]},
{"name":"CCTV-兵器科技","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012513403.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221225676/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226111/1/index.m3u8?fmt=ts2hls","http://42.176.185.28:9901/tsfile/live/1034_1.m3u8","http://175.18.189.238:9999/tsfile/live/1027_1.m3u8","http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/gfjs/gfjs711/1000/index.m3u8?&encrypt=1","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226111/1/index.m3u8?fmt=ts2hls","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225676/1/index.m3u8?fmt=ts2hls","http://124.232.231.246:6610/000000001001/201500000313/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"]},
{"name":"CCTV-世界地理","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012513303.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221225733/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226071/1/index.m3u8?fmt=ts2hls","http://42.176.185.28:9901/tsfile/live/1037_1.m3u8","http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226071/1/index.m3u8?fmt=ts2hls","http://175.18.189.238:9999/tsfile/live/1000_1.m3u8","http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/sjdl/sjdl711/1000/index.m3u8?&encrypt=1","http://42.176.185.28:9901/tsfile/live/1037_1.m3u8","http://117.148.179.156/PLTV/88888888/224/3221231537/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231537/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=124&upt=63a44f4ef2f3c6ce","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226071/1/index.m3u8?fmt=ts2hls","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225733/1/index.m3u8?fmt=ts2hls"]},
{"name":"CCTV-风云足球","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012514203.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221225734/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226153/1/index.m3u8?fmt=ts2hls","http://117.148.179.137/PLTV/88888888/224/3221231547/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231547/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=119&upt=63a44f4ef2f3c6ce","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226153/1/index.m3u8?fmt=ts2hls","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225734/1/index.m3u8?fmt=ts2hls"]},
{"name":"CCTV-央视台球","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012513703.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221226117/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226156/1/index.m3u8?fmt=ts2hls","http://117.148.179.167/PLTV/88888888/224/3221231616/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231616/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226117/1/index.m3u8?fmt=ts2hls","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226156/1/index.m3u8?fmt=ts2hls"]},
{"name":"CCTV-高尔夫网球","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012512503.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221225674/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226114/1/index.m3u8?fmt=ts2hls","http://117.148.179.160/PLTV/88888888/224/3221231619/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231619/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226114/1/index.m3u8?fmt=ts2hls","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225674/1/index.m3u8?fmt=ts2hls"]},
{"name":"CCTV-电视指南","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012514003.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221225673/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226120/1/index.m3u8?fmt=ts2hls","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226120/1/index.m3u8?fmt=ts2hls"]},
{"name":"CCTV-文化精品","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012513803.m3u8","http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225675/1/index.m3u8?fmt=ts2hls","http://117.148.179.147/PLTV/88888888/224/3221231561/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231561/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=116&upt=7e4f8041b306488a","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226100/1/index.m3u8?fmt=ts2hls","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225675/1/index.m3u8?fmt=ts2hls"]},
{"name":"CCTV-怀旧剧场","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012511203.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221225765/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226097/1/index.m3u8?fmt=ts2hls","http://117.148.179.158/PLTV/88888888/224/3221231544/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231544/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=118&upt=63a44f4ef2f3c6ce","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226097/1/index.m3u8?fmt=ts2hls","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225765/1/index.m3u8?fmt=ts2hls"]},
{"name":"CCTV-第一剧场","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012514403.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221225702/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226124/1/index.m3u8?fmt=ts2hls","http://117.148.179.172/PLTV/88888888/224/3221231540/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=121&upt=63a44f4ef2f3c6ce","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226124/1/index.m3u8?fmt=ts2hls","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225702/1/index.m3u8?fmt=ts2hls"]},
{"name":"CCTV-风云剧场","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012514603.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221225700/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226107/1/index.m3u8?fmt=ts2hls","http://117.148.179.162/PLTV/88888888/224/3221231604/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231604/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=120&upt=63a44f4ef2f3c6ce","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226107/1/index.m3u8?fmt=ts2hls"]},
{"name":"CGTN","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226297/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225747/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225604/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221226980/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225822/index.m3u8"]},
{"name":"CCTV-女性时尚","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012513903.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221225699/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226104/1/index.m3u8?fmt=ts2hls","http://117.148.179.167/PLTV/88888888/224/3221231598/index.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226104/1/index.m3u8?fmt=ts2hls","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225699/1/index.m3u8?fmt=ts2hls","http://223.110.245.152/ott.js.chinamobile.com/PLTV/3/224/3221227026/index.m3u8"]},
{"name":"CCTV-卫生健康","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012513503.m3u8"]},
{"name":"中国教育1","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225661/index.m3u8","http://39.134.134.82:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226494/1.m3u86","http://117.136.154.98/PLTV/88888888/224/3221225701/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231714/index.m3u8","http://39.134.135.81/otttv.bj.chinamobile.com/TVOD/88888888/224/3221225905/1.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225563/index.m3u8","http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221225909/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231552/index.m3u8"]},
{"name":"中国教育2","urls":["http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221225850/index.m3u8","http://223.110.243.162/ott.js.chinamobile.com/PLTV/3/224/3221227607/index.m3u8"]},
{"name":"中国教育3","urls":["http://223.110.246.68/ott.js.chinamobile.com/PLTV/3/224/3221227018/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231543/index.m3u8"]},
{"name":"中国教育4","urls":["http://117.136.154.98/PLTV/88888888/224/3221225802/index.m3u8","http://223.110.243.143/ott.js.chinamobile.com/PLTV/3/224/3221227657/index.m3u8","http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226557/1.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231613/index.m3u8","http://117.148.179.55/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230334/index.m3u8"]}
]},
{"group": "卫视","channels": [{"name":"湖南卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225707/1/index.m3u8?fmt=ts2hls","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226211/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225745/index.m3u8","http://v.mp.haue.edu.cn/hls/hunanhd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225490/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225704/index.m3u8","http://183.207.248.71:80/cntv/live1/hunanstv/hunanstv","http://39.134.24.24/PLTV/88888888/224/3221225616/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225610/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226053/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/hnws-hd/1.m3u8","http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221227698/index.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225704/index.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225745/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226082/10000100000000060000000002296924_0.smil","http://39.134.39.4/PLTV/88888888/224/3221226193/index.m3u8","http://39.134.66.2/PLTV/88888888/224/3221225506/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231729/index.m3u8","http://39.134.135.124/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226509/1.m3u8","http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226509/1.m3u8","http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226509/1.m3u8","http://39.134.39.37/PLTV/88888888/224/3221226193/index.m3u8","http://39.134.39.39/PLTV/88888888/224/3221226193/index.m3u8","http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221228824/index.m3u8","http://223.110.243.173/PLTV/3/224/3221227220/index.m3u8","http://39.130.202.114:6610/gitv_live/HNWS-HD/HNWS-HD.m3u8","http://39.135.34.150:8080/000000001000/1000000001000009115/1.m3u8?xtkg","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225704/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225506/index.m3u8","http://117.169.120.160:8080/live/hdhunanstv/1.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225704/index.m3u8","http://39.135.34.142:8080/000000001000/1000000001000009115/1.m3u8?","http://117.169.124.36:6610/ysten-businessmobile/live/hdhunanstv/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225799/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226211/index.m3u8","http://66.90.88.132:8080/hls/ph00501/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=42&upt=63a44f4ef2f3c6ce","http://140.207.241.3:8080/live/program/live/hnwshd/4000000/mnf.m3u8"]},
{"name":"东南卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225739/1/index.m3u8?fmt=ts2hls","rtsp://183.252.166.199/PLTV/88888888/224/3221226121/10000100000000060000000002358085_0.smil","http://v.mp.haue.edu.cn/hls/dnhd.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226079/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225735/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/fjws-hd/1.m3u8","http://116.199.5.51:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5a1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=23&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1","http://223.110.243.162/ott.js.chinamobile.com/PLTV/3/224/3221227553/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225585/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225657/index.m3u8","http://39.135.138.59:18890/PLTV/88888910/224/3221225657/index.m3u8","http://39.135.32.29:6610/000000001000/1000000002000009263/1.m3u8?","http://39.135.34.150:8080/000000001000/1000000002000009263/1.m3u8?xtkg","http://39.130.202.81:6610/gitv_live/G_DONGNAN-HD/G_DONGNAN-HD.m3u8","http://58.211.84.24/liveplay-kk.rtxapp.com/live/program/live/dnwshd/4000000/mnf.m3u8","http://shbu.live.bestvcdn.com.cn:8080/live/program/live/dnwshd/2300000/mnf.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/dongnanstv/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226517/1.m3u8","http://111.13.42.47/PLTV/88888888/224/3221226496/1.m3u8","http://mmitv.top/pltv/gdgz.php?id=55&upt=63a44f4ef2f3c6ce","http://111.13.42.8/PLTV/88888888/224/3221225876/1.m3u8","http://183.207.248.71:80/cntv/live1/n-dongnanstv/n-dongnanstv","http://39.134.39.37/PLTV/88888888/224/3221226182/index.m3u8"]},
{"name":"海峡卫视","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226128/10000100000000060000000002434539_0.smil","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221226977/index.m3u8"]},
{"name":"广东南方卫视","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226203/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226038/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225871/index.m3u8"]},
{"name":"广东卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225720/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225742/index.m3u8","http://v.mp.haue.edu.cn/hls/gdhd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225597/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225701/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226076/index.m3u8","http://183.207.248.71:80/cntv/live1/n-guangdongstv/n-guangdongstv","http://coocaa-ynbit-ws.ifengli.com:2381/live/gdws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225692/index.m3u8","http://39.130.202.81:6610/gitv_live/GDWS-HD/GDWS-HD.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/hdguangdongstv/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226535/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226238/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225803/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226216/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226216/index.m3u8"]},
{"name":"深圳卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225712/1/index.m3u8?fmt=ts2hls","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226205/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225741/index.m3u8","http://v.mp.haue.edu.cn/hls/szhd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225598/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225700/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225739/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226111/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-shenzhenstv/HD-2500k-1080P-shenzhenstv","http://coocaa-ynbit-ws.ifengli.com:2381/live/szws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225843/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225764/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225590/index.m3u8","http://39.130.202.81:6610/gitv_live/SZWS-HD/SZWS-HD.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/hdshenzhenstv/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226573/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226495/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226245/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225801/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226205/index.m3u8"]},
{"name":"江苏卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225751/1/index.m3u8?fmt=ts2hls","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226200/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225743/index.m3u8","http://v.mp.haue.edu.cn/hls/jshd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225488/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225702/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225613/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226099/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-jiangsustv/HD-2500k-1080P-jiangsustv","http://coocaa-ynbit-ws.ifengli.com:2381/live/jsws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225602/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225734/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226038/10000100000000060000000002296879_0.smil","http://39.130.202.81:6610/gitv_live/G_JIANGSU-HD/G_JIANGSU-HD.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/hdjiangsustv/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226506/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226242/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225800/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226200/index.m3u8","http://66.90.88.132:8080/hls/ph00504/index.m3u8"]},
{"name":"东方卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226217/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225658/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225489/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225659/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225676/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225835/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/shdfws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225622/index.m3u8","http://39.130.202.81:6610/gitv_live/DFWS-HD/DFWS-HD.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225976/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/hddongfangstv/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226519/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226237/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226261/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226217/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225797/index.m3u8","http://66.90.88.132:8080/hls/ph00503/index.m3u8"]},
{"name":"浙江卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225750/1/index.m3u8?fmt=ts2hls","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226199/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225744/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225491/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225703/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225612/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226056/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225642/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226040/10000100000000060000000002296881_0.smil","http://117.169.124.36:6610/ysten-businessmobile/live/hdzhejiangstv/1.m3u8","http://111.13.42.47/PLTV/88888888/224/3221226492/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226247/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225798/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226199/index.m3u8","http://66.90.88.132:8080/hls/ph00502/index.m3u8"]},
{"name":"北京卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225754/1/index.m3u8?fmt=ts2hls","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226222/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225673/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225600/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225674/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-beijingstv/HD-2500k-1080P-beijingstv","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225728/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226064/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/bjws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225833/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225724/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225646/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225735/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226092/10000100000000060000000002296930_0.smil","http://117.169.124.36:6610/ysten-businessmobile/live/hdbeijingstv/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226441/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226224/1.m3u8","http://111.13.42.47/PLTV/88888888/224/3221226367/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225796/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226222/index.m3u8"]},
{"name":"四川卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225757/1/index.m3u8?fmt=ts2hls","http://183.207.248.71:80/cntv/live1/n-sichuanstv/n-sichuanstv","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225733/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225532/index.m3u8?fmt=ts2hls","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226096/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/scws-hd/1.m3u8","http://39.130.202.81:6610/gitv_live/G_SICHUAN-HD/G_SICHUAN-HD.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225704/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226407/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226523/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225898/1.m3u8"]},
{"name":"安徽卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226196/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225737/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225691/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-anhuistv/HD-8000k-1080P-anhuistv","http://39.134.24.24/PLTV/88888888/224/3221225847/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226087/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/ahws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225638/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/anhuistv/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226223/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226499/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225873/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226196/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226203/index.m3u8"]},
{"name":"兵团卫视","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225530/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226200/index.m3u8","http://183.207.248.71:80/cntv/live1/SD-4000k-576P-bingtuanstv/SD-4000k-576P-bingtuanstv","http://coocaa-ynbit-ws.ifengli.com:2381/live/btws-sd/1.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226804/48628997.smil","http://111.13.42.47/PLTV/88888888/224/3221226541/1.m3u8"]},
{"name":"重庆卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225686/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225734/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225612/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225692/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-chongqingstv/HD-8000k-1080P-chongqingstv","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226062/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/cqws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225592/index.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226518/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221226569/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226202/index.m3u8"]},
{"name":"甘肅卫视","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225724/index.m3u8","http://39.134.39.39/PLTV/88888888/224/3221226240/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225714/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225877/1.m3u8","http://183.207.248.71:80/cntv/live1/n-gansustv/n-gansustv"]},
{"name":"广西卫视","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226211/index.m3u8?fmt=ts2hls","http://coocaa-ynbit-ws.ifengli.com:2381/live/gxws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225594/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225879/1.m3u8"]},
{"name":"贵州卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225703/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225483/index.m3u8?fmt=ts2hls","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226105/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/gzws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225610/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226405/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226521/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225880/1.m3u8"]},
{"name":"海南卫视","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226212/index.m3u8?fmt=ts2hls","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226102/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/lyws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225614/index.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226427/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226574/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225890/1.m3u8"]},
{"name":"河北卫视","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225610/index.m3u8?fmt=ts2hls","http://183.207.248.71:80/cntv/live1/n-hebeistv/n-hebeistv","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226059/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/hebeiws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225744/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226409/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226536/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225881/1.m3u8"]},
{"name":"河南卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225709/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225611/index.m3u8?fmt=ts2hls","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226108/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/hnws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225716/index.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226525/1.m3u8"]},
{"name":"黑龙江卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226215/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225736/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225586/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225690/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-heilongjiangstv/HD-8000k-1080P-heilongjiangstv","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226014/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/hljws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225690/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/hdheilongjiangstv/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226524/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226239/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225802/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226215/index.m3u8"]},
{"name":"湖北卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226194/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226091/10000100000000060000000002296929_0.smil","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225740/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225596/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225699/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225627/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226088/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/hbws-sd/1.m3u8","http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-hubeistv/HD-2500k-1080P-hubeistv","http://39.134.24.24/PLTV/88888888/224/3221225674/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/hdhubeistv/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226520/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226240/1.m3u8","http://111.13.42.47/PLTV/88888888/224/3221226503/1.m3u8"]},
{"name":"吉林卫视","urls":["http://39.136.66.39/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225753/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225680/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225553/index.m3u8?fmt=ts2hls","http://coocaa-ynbit-ws.ifengli.com:2381/live/jlws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225804/index.m3u8","http://111.13.42.47/PLTV/88888888/224/3221226533/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225886/1.m3u8"]},
{"name":"江西卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225710/1/index.m3u8?fmt=ts2hls","http://183.207.248.71:80/cntv/live1/jiangxistv/jiangxistv","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225705/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225746/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225492/index.m3u8?fmt=ts2hls","http://39.134.24.24/PLTV/88888888/224/3221225682/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226085/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/jxws-hd/1.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226687/42186801.smil","http://39.130.202.81:6610/gitv_live/G_JIANGXI-HD/G_JIANGXI-HD.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/jiangxistv/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226522/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226243/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221226570/1.m3u8"]},
{"name":"康巴卫视","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226207/index.m3u8","http://183.207.248.71:80/cntv/live1/SD-4000k-576P-kambatv/SD-4000k-576P-kambatv"]},
{"name":"辽宁卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225717/1/index.m3u8?fmt=ts2hls","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226210/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225735/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225601/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225696/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/lnws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225726/index.m3u8","http://111.13.42.47/PLTV/88888888/224/3221226488/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226201/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226210/index.m3u8"]},
{"name":"內蒙古卫视","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225667/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/nmws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225626/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225891/1.m3u8"]},
{"name":"宁夏卫视","urls":["http://183.207.248.71:80/cntv/live1/n-ningxiastv/n-ningxiastv","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225726/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225535/index.m3u8?fmt=ts2hls","http://coocaa-ynbit-ws.ifengli.com:2381/live/nxws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225730/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226528/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225892/1.m3u8"]},
{"name":"青海卫视","urls":["http://183.207.248.71:80/cntv/live1/n-qinghaistv/n-qinghaistv","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225727/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225546/index.m3u8?fmt=ts2hls","http://39.134.24.24/PLTV/88888888/224/3221225606/index.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226529/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225893/1.m3u8"]},
{"name":"山东卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225728/1/index.m3u8?fmt=ts2hls","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226209/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225738/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225484/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225697/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226067/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-shandongstv/HD-2500k-1080P-shandongstv","http://coocaa-ynbit-ws.ifengli.com:2381/live/sdws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225841/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225796/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/hdshandongstv/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226244/1.m3u8"]},
{"name":"山西卫视","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225730/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225549/index.m3u8?fmt=ts2hls","http://coocaa-ynbit-ws.ifengli.com:2381/live/shanxiws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225738/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225895/1.m3u8"]},
{"name":"陜西农林卫视","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226204/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/sxws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225877/index.m3u8"]},
{"name":"陜西卫视","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225729/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225531/index.m3u8?fmt=ts2hls","http://183.207.248.71:80/cntv/live1/n-shanxi1stv/n-shanxi1stv","http://111.13.42.10/PLTV/88888888/224/3221226411/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226532/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225896/1.m3u8"]},
{"name":"天津卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226204/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225739/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225485/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225698/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225740/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226073/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/tjws-sd/1.m3u8","http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-tianjinstv/HD-2500k-1080P-tianjinstv","http://117.169.124.36:6610/ysten-businessmobile/live/hdtianjinstv/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226502/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226246/1.m3u8"]},
{"name":"云南卫视","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225538/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225664/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/ynws-hd/1.m3u8","http://183.207.248.71:80/cntv/live1/n-yntv1/n-yntv1","http://39.134.24.24/PLTV/88888888/224/3221225696/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226424/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226543/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225902/1.m3u8"]},
{"name":"新疆卫视","urls":["http://coocaa-ynbit-ws.ifengli.com:2381/live/xjws-sd/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226546/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225901/1.m3u8"]},
{"name":"西藏卫视","urls":["http://coocaa-ynbit-ws.ifengli.com:2381/live/xzws-sd/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226428/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225900/1.m3u8"]},
{"name":"安多卫视","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226195/index.m3u8","http://183.207.248.71:80/cntv/live1/anduostv/anduostv","http://39.134.24.24/PLTV/88888888/224/3221225875/index.m3u8"]},
{"name":"上海哈哈炫动","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225720/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225560/index.m3u8?fmt=ts2hls","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225657/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225909/1.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225872/index.m3u8","http://39.135.230.83/ott.fj.chinamobile.com/PLTV/88888888/224/3221227020/index.m3u8"]},
{"name":"北京卡酷少儿","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225677/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225654/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226511/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226558/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225907/1.m3u8","http://39.135.230.78/ott.fj.chinamobile.com/PLTV/88888888/224/3221225871/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221226963/index.m3u8"]},
{"name":"广东嘉佳卡通","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226193/index.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226539/1.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221227024/index.m3u8"]},
{"name":"江苏优漫卡通","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225665/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225656/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225910/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226420/1.m3u8","http://39.135.230.74/ott.fj.chinamobile.com/PLTV/88888888/224/3221225874/index.m3u8"]},
{"name":"湖南金鹰卡通","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225721/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225653/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225554/index.m3u8?fmt=ts2hls","http://111.13.42.8/PLTV/88888888/224/3221226576/1.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221226959/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225870/index.m3u8"]}
]},
{"group": "港澳台","channels": [{"name":"凤凰中文","urls":["http://playtv-live.ifeng.com:80/live/06OLEGEGM4G.m3u8","http://39.135.55.105:6610/PLTV/88888888/224/3221227222/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227222/index.m3u8?servicetype=1","http://playtv-live.ifeng.com/live/06OLEGEGM4G.m3u8","http://anren.live/HK/AQtU.m3u8","http://117.169.120.138:8080/live/fhchinese/index.m3u8","http://ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228057/index.m3u8","http://124.232.233.16:6610/000000001001/201500000230/index.m3u8?&version=v1.0&IASHttpSessionId=SLB2046220190906022827233263&AuthInfo=&m3u8_level=2","http://stream.guihet.com/t/ifeng2.php?id=2","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226547/index.m3u8","http://playtv-live.ifeng.com:80/live/06OLEGEGM4G.m3u8","http://hkss3.phoenixtv.com/fs/pcc.stream/.m3u8","http://mmitv.top/pltv/gdgz.php?id=37&upt=604ef0611cb50f83","http://mmitv.top/pltv/gdgz.php?id=37&upt=63a44f4ef2f3c6ce","http://ott.js.chinamobile.com/TVOD/3/224/3221228057/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=fhhk&upt=604ef0611cb50f83","http://mmitv.top/pltv/gdgz.php?id=fhhk&upt=63a44f4ef2f3c6ce","http://v.mp.haue.edu.cn/hls/fhzw.m3u8","http://iptv.tvfix.org/hls/fhzw.m3u8","http://66.90.88.132:8080/hls/ph00451/index.m3u8","http://223.110.245.139/PLTV/3/224/3221226922/index.m3u8","http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8","http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8","http://117.169.124.37:6610/ysten-businessmobile/live/fhchinese/1.m3u8","http://117.169.124.43:6610/ysten-businessmobile/live/fhchinese/index.m3u8","http://223.110.245.136/PLTV/3/224/3221226923/index.m3u8","http://117.169.124.37:6610/ysten-businessmobile/live/fhchinese/1.m3u8","http://117.169.124.43:6610/ysten-businessmobile/live/fhchinese/index.m3u8","http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221228608/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225942/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225948/1.m3u8","rtmp://45.88.148.178/channel/60c2f331961593122ebaf8c7?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://zb.ios.ifeng.com/live/05QGDA0CIRK/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=37&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=37&upt=604ef0611cb50f83","http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8"]},
{"name":"凤凰资讯","urls":["http://playtv-live.ifeng.com/live/06OLEEWQKN4.m3u8","http://39.135.55.105:6610/PLTV/88888888/224/3221227226/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227226/index.m3u8?servicetype=1","http://117.169.120.138:8080/live/fhzixun/index.m3u8","http://anren.live/HK/AQtQ.m3u8","http://183.207.249.35/PLTV/3/224/3221226923/index.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228098/index.m3u8","http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8","http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8$JS1080P","http://117.169.124.37:6610/ysten-businessmobile/live/fhzixun/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226546/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=36&upt=604ef0611cb50f83","http://hkss3.phoenixtv.com/fs/pic.stream/.m3u8","http://mmitv.top/pltv/gdgz.php?id=36&upt=63a44f4ef2f3c6ce","https://playtv-live.ifeng.com/live/06OLEEWQKN4.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228098/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=fhzx&upt=604ef0611cb50f83","http://mmitv.top/pltv/gdgz.php?id=fhzx&upt=63a44f4ef2f3c6ce","http://v.mp.haue.edu.cn/hls/fhzx.m3u8","http://66.90.88.132:8080/hls/ph00452/index.m3u8","http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228098/index.m3u8","http://iptv.tvfix.org/hls/fhzx.m3u8","http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8","http://zb.ios.ifeng.com/live/05QGCOB3T34/index.m3u8","http://117.169.124.43:6610/ysten-businessmobile/live/fhzixun/index.m3u8","http://117.169.124.37:6610/ysten-businessmobile/live/fhzixun/1.m3u8","http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221228597/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221225949/1.m3u8","http://anan.jxin122.top/cj.php?id=99&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://mmitv.top/pltv/gdgz.php?id=36&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=36&upt=604ef0611cb50f83","rtmp://45.88.148.178/channel/60c2f46e961593122ebaf8cb?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
{"name":"凤凰香港","urls":["http://183.207.249.35/PLTV/3/224/3221226975/index.m3u8","http://hkss3.phoenixtv.com/fs/phk.stream/.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228060/index.m3u8","http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8","http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8","http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8","http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8","http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8","http://183.207.249.34/PLTV/3/224/3221226975/index.m3u8","http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8?icpid=88888888&from=0&hms_devid=3804","http://183.207.249.35/PLTV/3/224/3221226975/index.m3u8","http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8?icpid=88888888&from=0&hms_devid=38044364","http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8$JS1080P","http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8","http://183.207.249.34/PLTV/3/224/3221226975/index.m3u8","http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8?icpid=88888888&from=0&hms_devid=3804","http://183.207.249.35/PLTV/3/224/3221226975/index.m3u8","http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8?icpid=88888888&from=0&hms_devid=38044364","http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8","http://183.207.249.34/PLTV/3/224/3221226975/index.m3u8","http://66.90.88.132:8080/hls/ph00453/index.m3u8","rtmp://45.88.148.178/channel/60c2f428961593122ebaf8c9?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
{"name":"星空卫视","urls":["http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=233&Fsv_rate_id=1&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1","http://v.mp.haue.edu.cn/hls/startv.m3u8","http://mmitv.top/pltv/gdgz.php?id=87&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=87&upt=604ef0611cb50f83","http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=233&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8","http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=233&Fsv_rate_id=1&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1","http://218.202.220.2:5000/nn_live.ts?id=STARTV","http://116.199.5.51:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=233&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1","http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=233&Fsv_rate_id=1&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1","http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id=&Fsv_chan_hls_se_idx=233","http://mmitv.top/pltv/gz.php?id=tvbfc","http://tyzb8081.weetai.cn:80/iptv-cdn/公众号=太阳视界/tyzb01.php?id=xingkong_1500"]},
{"name":"澳门卫视","urls":["http://61.244.22.4/ch3/ch3.live/chunklist_w415594313.m3u8","http://61.244.22.4/ch3/ch3.live/index.m3u8","http://61.244.22.4/ch3/ch3.live/playelist.m3u8","http://103.233.191.132:1935/ch3/ch3.live/playlist.m3u8","http://103.233.191.133:1935/ch3/ch3.live/playlist.m3u8","http://103.233.191.134:1935/ch3/ch3.live/playlist.m3u8"]},
{"name":"澳视澳门","urls":["http://61.244.22.4/ch1/ch1.live/playelist.m3u8","http://103.233.191.133:1935/ch1/ch1.live/playlist.m3u8","http://103.233.191.134:1935/ch1/ch1.live/playlist.m3u8"]},
{"name":"澳门资讯","urls":["http://61.244.22.5/ch5/info_ch5.live/master.m3u8","http://61.244.22.4/ch2/ch2.live/playelist.m3u8","http://103.233.191.133:1935/ch5/info_ch5.live/playlist.m3u8","http://103.233.191.134:1935/ch5/info_ch5.live/playlist.m3u8"]},
{"name":"澳门综艺","urls":["http://103.233.191.132:1935/ch6/hd_ch6.live/playlist.m3u8","http://103.233.191.133:1935/ch6/hd_ch6.live/playlist.m3u8","http://103.233.191.134:1935/ch6/hd_ch6.live/playlist.m3u8"]},
{"name":"莲花卫视","urls":["http://nettvpro.live/hls/lotustv.php","http://anren.live/HK/BiIOU11uLA.m3u8"]},
{"name":"民视","urls":["rtmp://219.80.97.35/sat/tv051","http://220.134.196.147:8614/playlist.m3u8","rtmp://9wv7.mine.nu/sat/tv051","rtmp://59.124.75.157/sat/tv051","http://dllb.jxin122.top/jj.php?id=44&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://61.222.202.191/gt/gttv.php?id=13669&cid=13822","http://211.23.114.106:8504/http/61.221.81.94:8088/hls/73/815/ch49.m3u8","rtmp://59.124.75.138/sat/tv051","rtmp://59.124.75.157/sat/tv051","http://50.7.61.147:30080/Entry/ftv","http://anan.jxin122.top/cj.php?id=44&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","rtmp://45.92.126.226/channel/60c317bd961593122ebaf90a","http://50.7.61.148:30080/Entry/ftv","http://66.90.88.132:8080/hls/ph00302/index.m3u8","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv002","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv001","rtmp://45.92.126.226/channel/60c317bd961593122ebaf90a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
{"name":"台视","urls":["rtmp://219.80.97.35/sat/tv071","http://220.134.196.147:8611/playlist.m3u8","rtmp://9wv7.mine.nu/sat/tv071","rtmp://59.124.75.138/sat/tv071","rtmp://59.124.75.157/sat/tv071","http://dllb.jxin122.top/jj.php?id=45&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://66.90.88.132:8080/hls/ph00304/index.m3u8","rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910c44?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://50.7.61.148:30080/Entry/ttv","http://211.23.114.106:8502/http/61.221.81.94:8088/hls/72/814/ch46.m3u8","http://60.251.59.180:8543/xoxo.m3u8","http://50.7.61.148:30080/Entry/ttv","rtmp://45.92.126.226/channel/60c31796961593122ebaf908","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv066"]},
{"name":"中视","urls":["rtmp://219.80.97.35/sat/tv091","http://220.134.196.147:8612/playlist.m3u8","rtmp://9wv7.mine.nu/sat/tv091","rtmp://59.124.75.138/sat/tv091","http://dllb.jxin122.top/jj.php?id=47&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://61.222.202.191/gt/gttv.php?id=13681&cid=13834","rtmp://59.124.75.157/sat/tv091","http://211.23.114.106:8502/http/61.221.81.94:8088/hls/72/814/ch47.m3u8","http://50.7.61.148:30080/Entry/ctv","http://50.7.61.148:30080/Entry/ctv","http://anan.jxin122.top/cj.php?id=18&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://anan.jxin122.top/cj.php?id=47&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv040","rtmp://45.92.126.114/channel/60c3166c961593122ebaf8fe?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
{"name":"华视","urls":["rtmp://219.80.97.35/sat/tv111","http://220.134.196.147:8613/playlist.m3u8","rtmp://9wv7.mine.nu/sat/tv111","rtmp://59.124.75.157/sat/tv111","http://61.222.202.191/gt/gttv.php?id=13676&cid=13829","rtmp://59.124.75.157/sat/tv111","http://66.90.88.132:8080/hls/ph00305/index.m3u8","http://anan.jxin122.top/cj.php?id=46&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","rtmp://45.88.148.122/channel/60b4e50239e1b02e8b910c4c?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://211.23.114.106:8503/http/61.221.81.94:8088/hls/72/814/ch48.m3u8","http://50.7.61.147:30080/Entry/cts","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv041","rtmp://59.124.75.138/sat/tv111"]},
{"name":"公视","urls":["http://220.134.196.147:8615/playlist.m3u8","http://220.134.196.147:8654/playlist.m3u8","http://dllb.jxin122.top/jj.php?id=43&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://211.23.114.106:8505/http/61.221.81.94:8088/hls/73/815/ch50.m3u8","https://flv3948069e.live.126.net/live/sytv_9dd30b5c8e846938c26dde70be773545.flv","http://66.90.88.132:8080/hls/ph00306/index.m3u8","http://anan.jxin122.top/cj.php?id=43&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://sytv.xtvants.fun/mytv.php?id=gs&token=free&user=free","http://sytv.xtvants.fun/mytv.php?id=gs&token=qq3036107507&user=fmys","rtmp://45.92.126.226/channel/60c31796961593122ebaf908?sign=epgg4bkSF4hx%2BZ5WNsuYKsEplghWqWFa%2FRw3tGNF7vys%2FTXdBAnc%2BYbrUpogDq3MZnOL","rtmp://45.88.148.178/channel/60b4e50239e1b02e8b910c3e?sign=epgg4bkSF4hx%2BZ5WNsuYKsEplghWqWFa%2FRw3tGNF7vys%2FTXdBAnc%2BYbrUpogDq3MZnOL"]},
{"name":"CHC高清電影","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226463/index.m3u8","http://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226463/index.m3u8","http://v.mp.haue.edu.cn/hls/chchd.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226463/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226463/index.m3u8"]},
{"name":"CHC动作電影","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226465/index.m3u8","http://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/index.m3u8","http://v.mp.haue.edu.cn/hls/chcatv.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/index.m3u8"]},
{"name":"CHC家庭影院","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226462/index.m3u8","http://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226462/index.m3u8","http://v.mp.haue.edu.cn/hls/chctv.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226462/index.m3u8"]},
{"name":"超级电影","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225717/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225644/index.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225766/index.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225623/index.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226233/1.m3u8"]},
{"name":"超级电视剧","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225716/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225637/index.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225765/index.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225625/index.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226253/1.m3u8"]},
{"name":"黑莓电影","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225718/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225764/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225769/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225743/index.m3u8","http://ott.js.chinamobile.com/PLTV/3/224/3221225567/index.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225769/index.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225764/index.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225718/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225927/1.m3u8"]}
]},
{"group": "海外","channels": [{"name":"俄·IGITV蓝光","urls":["http://hls-igi.cdnvideo.ru/igi/igi_hq/playlist.m3u8"]},
{"name":"日·全天新闻","urls":["https://n24-cdn-live.ntv.co.jp/ch01/index.m3u8"]},
{"name":"韩·阿里郎","urls":["http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8","http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8","http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/chunklist_b3256000_sleng.m3u8","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv079"]},
{"name":"韩·娛樂台KMTV","urls":["rtmp://45.88.148.114/channel/60c2d183961593122ebaf8ae?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://93.190.139.36:8278/streams/d/chcaction/playlist.m3u8","http://93.190.139.36:8278/streams/d/chcaction/playlist.m3u8"]},
{"name":"韩·KBC","urls":["http://119.200.131.11:1935/KBCTV/tv/playlist.m3u8","http://119.77.96.184:1935/chn05/chn05/chunklist_w644291506.m3u8"]},
{"name":"韩·SBS","urls":["http://119.200.131.11:1935/KBCTV/tv/playlist.m3u8","http://1.245.74.5:1935/live/tv/.m3u8"]},
{"name":"韩·KBS","urls":["http://luotuo.ycchenrong.cn/dl/youku.php?id=8034767"]},
{"name":"韩·MBC","urls":["http://vod.mpmbc.co.kr:1935/live/encoder-tv/playlist.m3u8","http://www.pickcom.co.kr:1935/sjp/live07/chunklist_w2107750490.m3u8","https://5c3639aa99149.streamlock.net/live_TV/TV/playlist.m3u8"]},
{"name":"韩·MTN","urls":["http://183.110.27.87/mtnlive/_definst_/720/chunklist.m3u8"]},
{"name":"韩·YTN","urls":["http://slive.sciencetv.kr:1935/science/yslive_20140419_1/playlist.m3u8","http://slive.ytn.co.kr/ytn/_definst_/ytn_stream_20190306/playlist.m3u8"]},
{"name":"韩·KCTV","urls":["http://119.77.96.184:1935/chn21/chn21/chunklist_w252131137.m3u8"]},
{"name":"韩·TBS","urls":["http://58.234.158.60:1935/catvlive/myStream/playlist.m3u8","http://58.234.158.60:1935/catvlive/myStream/playlist.m3u8"]},
{"name":"韩·SBSCJB","urls":["http://1.222.207.80:1935/live/cjbtv/chunklist_w1357270949.m3u8"]},
{"name":"韩·EBS-1","urls":["http://ebsonairios.ebs.co.kr/groundwavetablet500k/tablet500k/groundwavetablet500k.m3u8","http://ebsonairios.ebs.co.kr/plus1tablet500k/tablet500k/plus1tablet500k.index.m3u8","http://ebsonairios.ebs.co.kr/groundwavetablet500k/tablet500k/playlist.m3u8"]},
{"name":"韩·EBS-2","urls":["http://ebsonairios.ebs.co.kr/ebs2tablet500k/tablet500k/ebs2tablet500k.index.m3u8","http://ebsonair.ebs.co.kr:1935/ebs2familypc/familypc1m/playlist.m3u8","http://ebsonairios.ebs.co.kr/plus2tablet500k/tablet500k/plus2tablet500k.index.m3u8","http://ebsonairios.ebs.co.kr/ebs2tablet500k/tablet500k/ebs2tablet500k.index.m3u8"]},
{"name":"韩·EBSE","urls":["http://ebsonairios.ebs.co.kr/plus3tablet500k/tablet500k/plus3tablet500k.index.m3u8","http://ebsonairios.ebs.co.kr/plus3tablet500k/tablet500k/plus3tablet500k.index.m3u8"]},
{"name":"韩·阿里郎WORLD","urls":["http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8","http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch/master.m3u8"]},
{"name":"韩·KBSWorld","urls":["https://livecdn.fptplay.net/sdb/kbs_hls.smil/chunklist_b2500000.m3u8"]},
{"name":"韩·SexyK-Pop","urls":["https://srv1.zcast.com.br/kpoptv/kpoptv/.m3u8"]},
{"name":"韩·EBS少儿","urls":["http://ebsonairios.ebs.co.kr/ebsutablet500k/_definst_/tablet500k/chunklist_w1965791004.m3u8"]},
{"name":"韩·BBS佛教","urls":["http://bbstv.clouducs.com:1935/bbstv-live/livestream/chunklist_w1403706733.m3u8"]},
{"name":"韩·职业","urls":["http://live.worktv.or.kr:1935/live/wowtvlive1.sdp/playlist.m3u8"]},
{"name":"韩·GOODTV","urls":["http://mobliestream.c3tv.com:554/live/goodtv.sdp/playlist.m3u8"]},
{"name":"韩·YTNDMB","urls":["http://slive.ytn.co.kr:1935/dmb/ydlive_20140419_1/playlist.m3u8"]},
{"name":"日·NHK","urls":["https://nhkwlive-ojp.akamaized.net/hls/live/2003459/nhkwlive-ojp-en/index_4M.m3u8","https://nhkw-zh-hlscomp.akamaized.net/8thz5iufork8wjip/playlist.m3u8"]},
{"name":"日·Animax HD","urls":["https://livecdn.fptplay.net/hda3/animaxport_hls.smil/chunklist.m3u8","https://livecdn.fptplay.net/hda3/animaxport_2000.stream/.m3u8"]},
{"name":"日·Atx","urls":["https://sub2.neetball.net/live/neet.m3u8"]},
{"name":"日·ウェザーニュース","urls":["https://movie.mcas.jp/mcas/smil:wn1.smil/master.m3u8","http://movie.mcas.jp/mcas/wn1_2/master.m3u8"]},
{"name":"日·Gunma TV","urls":["https://movie.mcas.jp/switcher/smil:mcas8.smil/master.m3u8"]},
{"name":"日·宝石GSTV","urls":["https://gemstv.wide-stream.net/gemstv01/smil:gemstv01.smil/chunklist_w1860888413_b600000.m3u8"]},
{"name":"日·声优广播","urls":["http://www.uniqueradio.jp/agplayerf/hls/Active.m3u8"]},
{"name":"日·QVC","urls":["http://cdn-live1.qvc.jp/iPhone/800/800.m3u8"]},
{"name":"日·NHK华语","urls":["https://nhkw-zh-hlscomp.akamaized.net/8thz5iufork8wjip/playlist.m3u8"]},
{"name":"CGNTV","urls":["http://cgntv-glive.ofsdelivery.net/live/_definst_/cgntv_kr02/chunklist_w1604760015.m3u8","http://cgntv-glive.ofsdelivery.net/live/_definst_/cgntv_jp/chunklist_w564190259.m3u8","https://livedoc.cgtn.com/500d/prog_index.m3u8","http://liveru.cgtn.com/1000r/prog_index.m3u8","http://livear.cgtn.com/1000a/prog_index.m3u8","http://livees.cgtn.com/1000e/prog_index.m3u8","http://live.cgtn.com/1000/prog_index.m3u8","http://live.cgtn.com/500/prog_index.m3u8","http://liveru.cgtn.com/1000r/prog_index.m3u8","http://livees.cgtn.com/1000e/prog_index.m3u8","http://live.cgtn.com/500/prog_index.m3u8","http://liveru.cgtn.com/1000r/prog_index.m3u8","http://livees.cgtn.com/1000e/prog_index.m3u8"]},
{"name":"Channel News Asia","urls":["https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_5.m3u8"]},
{"name":"FTVLIVE","urls":["http://218.236.58.185:1935/FTVLIVE_MOBILE/Stream_mobile/playlist.m3u8"]},
{"name":"新闻CBS News 1","urls":["http://cbsnewshd-lh.akamaihd.net/i/CBSNHD_7@199302/master.m3u8"]},
{"name":"俄·ТВTV蓝光","urls":["http://hls-video01.cdnvideo.ru/video01/smil:video01.smil/chunklist_b4128000.m3u8"]},
{"name":"俄·NastoyashcheyeVremya","urls":["http://rfe-lh.akamaihd.net/i/rfe_tvmc5@383630/master.m3u8"]},
{"name":"俄·RBC(Opt-1)","urls":["http://92.50.128.180/utv/1358/index.m3u8"]},
{"name":"俄·音乐TROSoyuz","urls":["http://live2.mediacdn.ru/sr1/tro/playlist.m3u8"]},
{"name":"俄·Euronews","urls":["http://evronovosti.mediacdn.ru/sr1/evronovosti/playlist_2m.m3u8"]},
{"name":"和平HBTV","urls":["http://hoabinhtvlive.746b3ddb.cdnviet.com/hoabinhtv/playlist.m3u8"]},
{"name":"KPRF","urls":["http://kprf-htlive.cdn.ngenix.net/live/_definst_/stream_high/chunklist.m3u8"]},
{"name":"法·时尚","urls":["http://lb.streaming.sk/fashiontv/stream/chunklist.m3u8","http://lb.streaming.sk/fashiontv/stream/chunklist_w1702070444.m3u8","http://lb.streaming.sk/fashiontv/stream/chunklist_w1906011378.m3u8","http://lb.streaming.sk/fashiontv/stream/chunklist.m3u8","http://lb.streaming.sk/fashiontv/stream/chunklist_w1702070444.m3u8"]},
{"name":"VOA卫视『蓝光』","urls":["https://voa-lh.akamaihd.net/i/voa_mpls_tvmc8@326847/master.m3u8"]},
{"name":"Channel News Asia『蓝光』","urls":["http://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_5.m3u8"]},
{"name":"CNBC 18","urls":["https://cnbctv18-lh.akamaihd.net/i/cnbctv18_1@174868/index_5_av-p.m3u8"]},
{"name":"美·NASA Public Channel","urls":["https://ntv1.akamaized.net/hls/live/2014075/NASA-NTV1-HLS/master_2000.m3u8","https://ntv2.akamaized.net/hls/live/2013923/NASA-NTV2-HLS/master_2000.m3u8"]},
{"name":"NDTV 24X7","urls":["https://ndtv24x7elemarchana.akamaized.net/hls/live/2003678/ndtv24x7/ndtv24x7master.m3u8"]},
{"name":"VB","urls":["http://live.tv2bornholm.dk/stream/live/chunklist.m3u8"]},
{"name":"半·新闻","urls":["http://live-hls-web-aja.getaj.net/AJA/02.m3u8"]},
{"name":"美·彭博财经Bloomberg TV","urls":["http://liveproduseast.akamaized.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-1000-1_live.m3u8"]},
{"name":"M2O音乐TV","urls":["http://m2otv-lh.akamaihd.net/i/m2oTv_1@186074/index_600_av-b.m3u8","http://m2otv-lh.akamaihd.net/i/m2oTv_1@186074/index_600_av-p.m3u8"]},
{"name":"意·电台","urls":["http://radioitaliatv-lh.akamaihd.net/i/radioitaliatv_1@329645/index_720x480_av-p.m3u8"]},
{"name":"法·24台","urls":["http://static.france24.com/live/F24_EN_LO_HLS/live_web.m3u8","http://static.france24.com/live/F24_AR_LO_HLS/live_web.m3u8","http://tv.balkanweb.com/news24/livestream/playlist.m3u8","http://tv.balkanweb.com:8081/news24/livestream/chunks.m3u8"]},
{"name":"Ytv","urls":["http://streams.sibinformburo.cdnvideo.ru/sibinformburo/sibinformburo.sdp/chunklist.m3u8"]},
{"name":"法·第五世界台","urls":["http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877-b/v3plusinfo247hls/v3plusinfo247hls_1_1.m3u8","http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877-b/v3plusinfo247hls/v3plusinfo247hls_1_1.m3u8","http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877-b/v3plusinfo247hls/v3plusinfo247hls_1_1.m3u8","http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877-b/v3plusinfo247hls/v3plusinfo247hls_1_1.m3u8"]},
{"name":"新加坡","urls":["https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_4.m3u8"]},
{"name":"赛马网","urls":["https://racingvic-i.akamaized.net/hls/live/598695/racingvic/268.m3u8"]},
{"name":"HP音乐蓝光","urls":["http://hls-video01.cdnvideo.ru/video01/smil:video01.smil/chunklist_b4128000.m3u8"]},
{"name":"彭博财经","urls":["http://liveproduseast.akamaized.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-1000-1_live.m3u8"]},
{"name":"美法·时尚音乐","urls":["http://lb.streaming.sk/fashiontv/stream/chunklist_w1702070444.m3u8"]},
{"name":"模特音乐FashionTV(SK)","urls":["http://lb.streaming.sk/fashiontv/stream/chunklist_w1906011378.m3u8","http://95.67.47.115/hls/hdfashion_ua_low/index.m3u8"]},
{"name":"音乐MusicTop","urls":["http://live-edge01.telecentro.net.ar/live/smil:musictop.smil/chunklist_w538311571_b364000_sleng.m3u8"]},
{"name":"TVIkim音乐(1080p)","urls":["http://edge.vediostream.com/abr/tvikim/live/tvikim_source/playlist.m3u8"]},
{"name":"CNA(1080p)","urls":["https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index.m3u8"]},
{"name":"美·红牛运动","urls":["http://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master_928.m3u8","http://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master_1660.m3u8"]},
{"name":"西·加利西亚欧洲体育电视台","urls":["http://europa-crtvg.flumotion.com/playlist.m3u8"]},
{"name":"泰·THAIPBS","urls":["http://thaipbs-live.cdn.byteark.com/live-en/playlist_720p/index.m3u8"]},
{"name":"美·CSBN","urls":["https://cbsnhls-i.akamaihd.net/hls/live/264710/cbsn_hlsprod_2/master_360.m3u8"]},
{"name":"澳·赛马网","urls":["https://racingvic-i.akamaized.net/hls/live/598695/racingvic/268.m3u8"]},
{"name":"西·CanalParlamento(Updated)","urls":["http://congresodirecto-f.akamaihd.net:80/i/congreso6_1@54665/master.m3u8"]},
{"name":"丹·TV2Fyn","urls":["http://cdn-lt-hls-vod.tv2fyn.dk/fhls/p/1966291/sp/196629100/serveFlavor/entryId/0_yct7rqn3/v/2/flavorId/0_h2wfmuqm/name/a.mp4/index.m3u8"]},
{"name":"丹·TV2Lorry","urls":["http://cdn-lt-hls-vod.tv2lorry.dk/fhls/p/2045321/sp/204532100/serveFlavor/entryId/0_0u9letdh/v/1/flavorId/0_p5f7q6yf/name/a.mp4/index.m3u8"]},
{"name":"墨·UnoTV(VOD)","urls":["http://ooyalahd2-f.akamaihd.net/i/UnoTV01_delivery@122640/master.m3u8"]},
{"name":"哥斯达黎加ExtremaTV","urls":["http://livestreamcdn.net:1935/ExtremaTV/ExtremaTV/playlist.m3u8"]},
{"name":"乌·M2音乐","urls":["http://live.m2.tv/hls3/stream.m3u8"]},
{"name":"乌·100ws","urls":["http://85.238.112.40:8810/hls_sec/239.33.16.32-.m3u8"]},
{"name":"乌·Lale","urls":["http://stream.atr.ua/lale//live/index.m3u8"]},
{"name":"捷·音乐Retro(Opt-1)","urls":["http://stream.mediawork.cz/retrotv/retrotvHQ1/playlist.m3u8"]},
{"name":"斯·TV8","urls":["http://109.74.145.11:1935/tv8/mp4:tv8.stream_360p/chunklist_w974670813.m3u8"]},
{"name":"斯·TVNZ","urls":["http://s1.media-planet.sk:80/live/novezamky/BratuMarian.m3u8"]},
{"name":"希·FoxTV","urls":["http://live.streams.ovh:1935/foxtv/foxtv/playlist.m3u8"]},
{"name":"印·ABPAsmita","urls":["http://abpasmita-lh.akamaihd.net:80/i/abpasmita_1@77821/master.m3u8"]},
{"name":"日·CGNTV","urls":["http://cgntv-glive.ofsdelivery.net/live/_definst_/cgntv_jp/chunklist_w564190259.m3u8"]},
{"name":"越·ANTV","urls":["http://antvlive.ab5c6921.cdnviet.com/antv/playlist.m3u8"]},
{"name":"阿尔巴利亚","urls":["http://tvsn-i.akamaihd.net/hls/live/261837/expo/expo_750.m3u8"]},
{"name":"狗狗宠物","urls":["http://video.blivenyc.com/broadcast/prod/2061/22/file-3192k.m3u8"]},
{"name":"西·Ⅰ中国环球","urls":["http://livees.cgtn.com/1000e/prog_index.m3u8"]},
{"name":"VB","urls":["http://live.tv2bornholm.dk/stream/live/chunklist.m3u8"]},
{"name":"THAIPBS-3","urls":["http://thaipbs-live.cdn.byteark.com/live/playlist_480p/index.m3u8"]},
{"name":"France24Arabic","urls":["http://static.france24.com/live/F24_AR_LO_HLS/live_web.m3u8"]},
{"name":"TV7+(Хмельн)","urls":["http://tv7plus.com/hls/tv7_site.m3u8"]},
{"name":"新·Ⅰ亚洲新闻","urls":["http://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_4.m3u8"]},
{"name":"ANTV","urls":["http://antvlive.ab5c6921.cdnviet.com/antv/playlist.m3u8"]},
{"name":"泰·公共三台","urls":["http://thaipbs-live.cdn.byteark.com/live/playlist_1080p/index.m3u8"]},
{"name":"TVIKIM44","urls":["http://edge.vediostream.com/abr/tvikim/live/tvikim_480p/playlist.m3u8"]},
{"name":"45","urls":["http://edge.vediostream.com/abr/tvikim/live/tvikim_480p/chunks.m3u8"]},
{"name":"ZEEALWAN50","urls":["http://ghaasiflu.online/Dijlah/tracks-v1a1/mono.m3u8"]},
{"name":"越·HBTV","urls":["http://hoabinhtvlive.746b3ddb.cdnviet.com/hoabinhtv/playlist.m3u8"]}
]},
{"group": "明星","channels": [{"name":"周星馳","urls":["http://117.148.179.153/PLTV/88888888/224/3221231562/index.m3u8","https://hw.flv.huya.com/src/1394575534-1394575534-5989656310331736064-2789274524-10057-A-0-1-imgplus.m3u8","http://183.232.171.91/tx.hls.huya.com/src/1394575534-1394575534-5989656310331736064-2789274524-10057-A-0-1.m3u8","http://183.232.171.91/tx.hls.huya.com/src/1199563481163-1199563481163-5444324506032144384-2399127085782-10057-A-0-1.m3u8","http://183.232.171.91/tx.hls.huya.com/src/1199561277724-1199561277724-5434860807588413440-2399122678904-10057-A-0-1.m3u8","http://183.232.171.91/tx.hls.huya.com/src/1449698986-1449698986-6226409733914361856-2847687634-10057-A-0-1.m3u8","http://121.51.94.31/tx.hls.huya.com/src/1394575534-1394575534-5989656310331736064-2789274524-10057-A-0-1-imgplus.m3u8","http://112.74.200.9:88/tv000000/m3u8.php?/migu/623338112","http://dyscdnali1.douyucdn.cn/live/122402rK7MO9bXSq.flv?uuid=","http://tx2play1.douyucdn.cn/live/122402rK7MO9bXSq.xs?uuid=","http://api.phoves.com.cn/iptv/huya.php?id=11342412","http://api.phoves.com.cn/iptv/huya.php?id=19105261","http://zzy789.xyz/douyu1.php?id=3990812","http://106.53.212.251/daili/yy.php?id=1353881242","http://106.53.212.251/daili/yy.php?id=38670875","http://106.53.212.251/daili/yy.php?id=1463505959","http://zzy789.xyz/douyu1.php?id=122402","https://1f97bd333ceef73bfdbd7e9987650b18.v.smtcdns.net/txpcdn.liveplay.egame.qq.com/live/3954_199681168.flv","http://183.232.171.91/tx.hls.huya.com/src/1394575534-1394575534-5989656310331736064-2789274524-10057-A-0-1-imgplus.m3u8"]},
{"name":"林正英","urls":["http://121.51.94.31/tx.hls.huya.com/src/1394575543-1394575543-5989656348986441728-2789274542-10057-A-0-1.m3u8","https://hw.flv.huya.com/src/1394575543-1394575543-5989656348986441728-2789274542-10057-A-0-1.m3u8","https://hw.flv.huya.com/src/1394575543-1394575543-5989656348986441728-2789274542-10057-A-0-1.m3u8","http://api.phoves.com.cn/iptv/huya.php?id=11342421","http://117.148.179.165/PLTV/88888888/224/3221231742/index.m3u8","https://3954-quic.liveplay.myqcloud.com/live/3954_363783415.flv","http://zzy789.xyz/douyu1.php?id=218859","http://106.53.212.251/daili/yy.php?id=1353059120","http://106.53.212.251/daili/yy.php?id=1351505899","http://106.53.212.251/daili/yy.php?id=1353685311","http://106.53.212.251/daili/yy.php?id=1351505899","http://106.53.212.251/daili/yy.php?id=34229877","http://106.53.212.251/daili/yy.php?id=24066336","http://zzy789.xyz/douyu1.php?id=7805562","http://106.53.212.251/daili/yy.php?id=1353507954","https://1f97bd333ceef73bfdbd7e9987650b18.v.smtcdns.net/txpcdn.liveplay.egame.qq.com/live/3954_363783415.flv"]},
{"name":"成龍","urls":["http://117.148.179.163/PLTV/88888888/224/3221231687/index.m3u8","https://hw.flv.huya.com/src/1394565191-1394565191-5989611887484993536-2789253838-10057-A-0-1-imgplus.m3u8","http://121.51.94.31/tx.hls.huya.com/src/1394565191-1394565191-5989611887484993536-2789253838-10057-A-0-1.m3u8","http://112.74.200.9:88/tv000000/m3u8.php?/migu/707671890","http://api.phoves.com.cn/iptv/huya.php?id=11342386","http://106.53.212.251/daili/yy.php?id=34460526","http://183.232.171.91/tx.hls.huya.com/src/1394565191-1394565191-5989611887484993536-2789253838-10057-A-0-1-imgplus.m3u8"]},
{"name":"張國榮","urls":["http://117.148.179.177/PLTV/88888888/224/3221231790/index.m3u8","http://112.74.200.9:88/tv000000/m3u8.php?/migu/707689526","http://api.phoves.com.cn/iptv/huya.php?id=11602034"]},
{"name":"吳京","urls":["http://117.148.179.183/PLTV/88888888/224/3221231564/index.m3u8","https://hw.flv.huya.com/src/1524434090-1524434090-6547394561457520640-3048991636-10057-A-0-1.m3u8","http://121.51.94.31/tx.hls.huya.com/src/1524434090-1524434090-6547394561457520640-3048991636-10057-A-0-1.m3u8","http://112.74.200.9:88/tv000000/m3u8.php?/migu/625681368","http://api.phoves.com.cn/iptv/huya.php?id=11602045"]},
{"name":"劉德華","urls":["http://117.148.179.154/PLTV/88888888/224/3221231757/index.m3u8","https://hw.flv.huya.com/src/1394575547-1394575547-5989656366166310912-2789274550-10057-A-0-1.m3u8","http://112.74.200.9:88/tv000000/m3u8.php?/migu/659315648","http://api.phoves.com.cn/iptv/huya.php?id=11342424","http://183.232.171.91/tx.hls.huya.com/src/1394575547-1394575547-5989656366166310912-2789274550-10057-A-0-1.m3u8"]},
{"name":"古天樂","urls":["http://117.148.179.176/PLTV/88888888/224/3221231645/index.m3u8","http://api.phoves.com.cn/iptv/huya.php?id=10871113"]},
{"name":"徐崢","urls":["http://121.51.94.31/tx.hls.huya.com/src/1524434085-1524434085-6547394539982684160-3048991626-10057-A-0-1.m3u8","https://hw.flv.huya.com/src/1524434085-1524434085-6547394539982684160-3048991626-10057-A-0-1.m3u8","http://api.phoves.com.cn/iptv/huya.php?id=11602043"]},
{"name":"沈腾","urls":["http://121.51.94.31/tx.hls.huya.com/src/1524418085-1524418085-6547325820505948160-3048959626-10057-A-0-1-imgplus.m3u8","https://hw.flv.huya.com/src/1524418085-1524418085-6547325820505948160-3048959626-10057-A-0-1-imgplus.m3u8"]},
{"name":"甄子丹","urls":["https://hw.flv.huya.com/src/1423787820-1423787820-6115122123343134720-2847699096-10057-A-0-1-imgplus.m3u8"]},
{"name":"洪金宝","urls":["https://hw.flv.huya.com/src/1394575551-1394575551-5989656383346180096-2789274558-10057-A-0-1-imgplus.m3u8","https://hw.flv.huya.com/src/1449698705-1449698705-6226408527028551680-3049003156-10057-A-0-1.m3u8"]},
{"name":"五福星","urls":["https://hw.flv.huya.com/src/1356780980-1356780980-5827329936934830080-2713685416-10057-A-0-1.m3u8"]},
{"name":"李小龙","urls":["https://hw.flv.huya.com/src/1449588725-1449588725-6225936166525337600-3048959678-10057-A-0-1.m3u8"]},
{"name":"李连杰","urls":["https://hw.flv.huya.com/src/1394565196-1394565196-5989611908959830016-2789253848-10057-A-0-1-imgplus.m3u8"]},
{"name":"女神系列","urls":["https://hw.flv.huya.com/src/1388451591-1388451591-5963354175424167936-2777026638-10057-A-0-1-imgplus.m3u8"]},
{"name":"张柏芝","urls":["https://hw.flv.huya.com/src/1524434111-1524434111-6547394651651833856-3048991678-10057-A-0-1.m3u8"]},
{"name":"北有谢","urls":["https://hw.flv.huya.com/src/1445653465-1445653465-6209034353524080640-2847699238-10057-A-0-1.m3u8"]},
{"name":"刘涛","urls":["https://hw.flv.huya.com/src/1524418105-1524418105-6547325906405294080-3048959666-10057-A-0-1.m3u8"]},
{"name":"大咖自黑","urls":["https://hw.flv.huya.com/src/1449572975-1449572975-6225868520790425600-2789274544-10057-A-0-1.m3u8"]},
{"name":"极限挑战","urls":["https://hw.flv.huya.com/src/1423782086-1423782086-6115097496000659456-2847687628-10057-A-0-1-imgplus.m3u8"]},
{"name":"【黑帮大片】","urls":["https://hw.flv.huya.com/src/1388472589-1388472589-5963444361147449344-2777068634-10057-A-0-1-imgplus.m3u8"]},
{"name":"金庸頻道","urls":["http://117.148.179.132/PLTV/88888888/224/3221231477/index.m3u8","https://hw.flv.huya.com/src/1524418105-1524418105-6547325906405294080-3048959666-10057-A-0-1.m3u8"]},
{"name":"喜劇聯盟","urls":["http://117.148.179.154/PLTV/88888888/224/3221231621/index.m3u8","https://hw.flv.huya.com/src/1445653465-1445653465-6209034353524080640-2847699238-10057-A-0-1.m3u8","https://hw.flv.huya.com/src/1388451591-1388451591-5963354175424167936-2777026638-10057-A-0-1-imgplus.m3u8"]},
{"name":"高分影院","urls":["http://117.148.179.182/PLTV/88888888/224/3221231699/index.m3u8"]},
{"name":"周潤發","urls":["http://117.148.179.177/PLTV/88888888/224/3221231709/index.m3u8","https://hw.flv.huya.com/src/1394565192-1394565192-5989611891779960832-2789253840-10057-A-0-1-imgplus.m3u8","http://183.232.171.91/tx.hls.huya.com/src/1394565192-1394565192-5989611891779960832-2789253840-10057-A-0-1-imgplus.m3u8","http://183.232.171.91/tx.hls.huya.com/src/1199561240999-1199561240999-5434703074914467840-2399122605454-10057-A-0-1.m3u8","http://183.232.171.91/tx.hls.huya.com/src/1524434089-1524434089-6547394557162553344-3048991634-10057-A-0-1.m3u8","http://112.74.200.9:88/tv000000/m3u8.php?/migu/639526984","http://api.phoves.com.cn/iptv/huya.php?id=11342387"]},
{"name":"郭富城","urls":["http://117.148.179.152/PLTV/88888888/224/3221231688/index.m3u8"]},
{"name":"楊冪","urls":["http://117.148.179.183/PLTV/88888888/224/3221231556/index.m3u8"]},
{"name":"劉亦菲","urls":["http://117.148.179.165/PLTV/88888888/224/3221231787/index.m3u8"]},
{"name":"懷舊老片","urls":["http://117.148.179.146/PLTV/88888888/224/3221231513/index.m3u8"]},
{"name":"午夜失眠劇場","urls":["http://117.148.179.141/PLTV/88888888/224/3221231516/index.m3u8"]},
{"name":"雲上電影院","urls":["http://117.148.179.176/PLTV/88888888/224/3221231565/index.m3u8"]},
{"name":"每日科幻電影","urls":["http://117.148.179.160/PLTV/88888888/224/3221231568/index.m3u8"]},
{"name":"殭屍劇場","urls":["http://117.148.179.165/PLTV/88888888/224/3221231742/index.m3u8","https://3954-quic.liveplay.myqcloud.com/live/3954_363783415.flv"]},
{"name":"TVB劇場","urls":["http://117.148.179.157/PLTV/88888888/224/3221231733/index.m3u8"]},
{"name":"新片放映廳","urls":["http://117.148.179.160/PLTV/88888888/224/3221231640/index.m3u8"]},
{"name":"盜墓","urls":["http://117.148.179.164/PLTV/88888888/224/3221231652/index.m3u8"]},
{"name":"試膽大會","urls":["http://117.148.179.166/PLTV/88888888/224/3221231672/index.m3u8"]},
{"name":"高能燒腦時刻","urls":["http://117.148.179.169/PLTV/88888888/224/3221231504/index.m3u8"]},
{"name":"4K劇場","urls":["http://117.148.179.161/PLTV/88888888/224/3221231624/index.m3u8"]},
{"name":"愛情公寓","urls":["http://117.148.179.160/PLTV/88888888/224/3221231583/index.m3u8"]},
{"name":"軍旅劇場","urls":["http://117.148.179.145/PLTV/88888888/224/3221231585/index.m3u8"]},
{"name":"SNH48劇場公演","urls":["http://117.148.179.139/PLTV/88888888/224/3221231622/index.m3u8"]},
{"name":"少林劇場","urls":["http://117.148.179.160/PLTV/88888888/224/3221231628/index.m3u8"]},
{"name":"神探狄仁傑","urls":["http://117.148.179.139/PLTV/88888888/224/3221231634/index.m3u8"]},
{"name":"黃金劇場","urls":["http://117.148.179.183/PLTV/88888888/224/3221231637/index.m3u8"]},
{"name":"追劇少女","urls":["http://117.148.179.179/PLTV/88888888/224/3221231643/index.m3u8"]},
{"name":"古龍作品集","urls":["http://117.148.179.160/PLTV/88888888/224/3221231657/index.m3u8"]},
{"name":"經典賀歲片","urls":["http://117.148.179.159/PLTV/88888888/224/3221231679/index.m3u8"]},
{"name":"每日薦影","urls":["http://117.148.179.162/PLTV/88888888/224/3221231727/index.m3u8"]},
{"name":"武俠劇場","urls":["http://117.148.179.160/PLTV/88888888/224/3221231763/index.m3u8"]},
{"name":"漫威DC★动作喜剧★经典电影 梦剧場","urls":["http://111.6.242.36/txpcdn.liveplay.egame.qq.com/live/3954_616645877_4000.flv"]},
{"name":"国外影院","urls":["http://111.6.242.36/txpcdn.liveplay.egame.qq.com/live/3954_382971876_4000.flv"]},
{"name":"头文字D","urls":["http://183.232.171.91/tx.hls.huya.com/src/1423782053-1423782053-6115097354266738688-2847687562-10057-A-0-1.m3u8"]},
{"name":"KK_经典好剧","urls":["http://hpull.kktv8.com/livekktv/153793844/playlist.m3u8"]},
{"name":"KK_科幻怪兽","urls":["http://hpull.kktv8.com/livekktv/143960119/playlist.m3u8"]},
{"name":"KK_喜剧电影","urls":["http://hpull.kktv8.com/livekktv/99592190/playlist.m3u8"]},
{"name":"KK_女神影院","urls":["http://hpull.kktv8.com/livekktv/99350550/playlist.m3u8"]},
{"name":"BesTv影院1","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226757/45949783.smil"]},
{"name":"Bestv影院2","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226816/48629572.smil"]},
{"name":"Bestv影院3","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226748/45950069.smil"]},
{"name":"Bestv影院4","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226797/47878049.smil"]},
{"name":"Bestv电视剧1","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226761/45973212.smil"]},
{"name":"Bestv电视剧2","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226022/10000100000000060000000002296864_0.smil"]},
{"name":"Bestv电视剧3","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226752/45973624.smil"]},
{"name":"Bestv动画1","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226756/45973923.smil"]},
{"name":"Bestv动画2","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226917/57526342.smil"]}
]},
{"group": "NewTV","channels": [{"name":"超级电影NewTV","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225717/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225644/index.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225623/index.m3u8"]},
{"name":"超级电视剧","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225716/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225637/index.m3u8"]},
{"name":"超级综艺","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225714/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225642/index.m3u8"]},
{"name":"明星大片","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225664/index.m3u8","http://223.110.243.152/ott.js.chinamobile.com/PLTV/3/224/3221227594/index.m3u8","http://111.11.121.184:6610/030000001001/mingxingdp/1.m3u8?channel-id=ystenlive","http://39.134.66.66/PLTV/88888888/224/3221225550/index.m3u8"]},
{"name":"欢乐剧场","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225742/index.m3u8"]},
{"name":"海外剧场","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225671/index.m3u8","http://111.11.121.184:6610/030000001001/xiqumd/1.m3u8?channel-id=ystenlive"]},
{"name": "愛情喜劇","urls": ["http://183.207.248.71:80/cntv/live1/n-aiqingxj/n-aiqingxj","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225669/index.m3u8","http://112.15.230.34/PLTV/88888888/224/3221229731/index.m3u8","http://117.148.179.45/PLTV/88888888/224/3221229014/index.m3u8","http://183.207.248.71:80/cntv/live1/n-aiqingxj/n-aiqingxj","http://111.11.121.184:6610/030000001001/aiqingxj/1.m3u8?channel-id=ystenlive"]},
{"name":"潮媽辣婆","urls":["http://183.207.248.71:80/cntv/live1/n-cmlapo/n-cmlapo","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225685/index.m3u8","http://117.148.179.43/PLTV/88888888/224/3221229725/index.m3u8","http://117.148.179.16/PLTV/88888888/224/3221229031/index.m3u8"]},
{"name":"動作電影","urls":["http://183.207.248.71:80/cntv/live1/n-dongzuody/n-dongzuody","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225661/index.m3u8","http://117.148.179.15/PLTV/88888888/224/3221229034/index.m3u8","http://117.148.179.44/PLTV/88888888/224/3221229672/index.m3u8","http://111.11.121.184:6610/030000001001/dongzuody/1.m3u8?channel-id=ystenlive"]},
{"name":"惊悚悬疑","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225665/index.m3u8","http://117.148.179.43/PLTV/88888888/224/3221229701/index.m3u8","http://117.148.179.51/PLTV/88888888/224/3221229001/index.m3u8","http://223.110.243.154/ott.js.chinamobile.com/PLTV/3/224/3221227536/index.m3u8","http://111.11.121.184:6610/030000001001/jingsongxy/1.m3u8?channel-id=ystenlive"]},
{"name":"古裝劇場","urls":["http://183.207.248.71:80/cntv/live1/n-guzhuangjc/n-guzhuangjc","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225663/index.m3u8","http://112.15.230.59/PLTV/88888888/224/3221229710/index.m3u8","http://117.148.179.51/PLTV/88888888/224/3221229011/index.m3u8","http://111.11.121.184:6610/030000001001/guzhuangjc/1.m3u8?channel-id=ystenlive"]},
{"name":"怡伴健康","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225673/index.m3u8","http://117.148.179.32/PLTV/88888888/224/3221229016/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229692/index.m3u8","http://223.110.243.147/ott.js.chinamobile.com/PLTV/3/224/3221227612/index.m3u8","http://111.11.121.184:6610/030000001001/ljiankangyouyue/1.m3u8?channel-id=ystenlive"]},
{"name":"黑莓電競之夜","urls":["http://183.207.248.71:80/cntv/live1/wmyx/wmyx","http://111.11.121.184:6610/030000001001/wmyx/1.m3u8?channel-id=ystenlive"]},
{"name":"黑莓電影","urls":["http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-Supermovie/HD-8000k-1080P-Supermovie","http://111.11.121.184:6610/030000001001/jdianying/1.m3u8?channel-id=ystenlive","http://183.207.249.14/PLTV/3/224/3221225567/index.m3u8"]},
{"name":"黑莓動畫","urls":["http://183.207.248.71:80/cntv/live1/donghuawg/donghuawg","http://111.11.121.184:6610/030000001001/donghuawg/1.m3u8?channel-id=ystenlive","http://183.207.249.15/PLTV/3/224/3221225555/index.m3u8"]},
{"name":"家庭劇場","urls":["http://183.207.248.71:80/cntv/live1/n-jiatingjc/n-jiatingjc","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225677/index.m3u8","http://117.148.179.52/PLTV/88888888/224/3221229007/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229695/index.m3u8","http://39.134.67.226/PLTV/88888888/224/3221225538/index.m3u8","http://111.11.121.184:6610/030000001001/jiatingjc/1.m3u8?channel-id=ystenlive"]},
{"name":"金牌綜藝","urls":["http://183.207.248.71:80/cntv/live1/n-saishijx/n-saishijx","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225666/index.m3u8","http://117.148.179.40/PLTV/88888888/224/3221229704/index.m3u8","http://117.148.179.35/PLTV/88888888/224/3221229002/index.m3u8","http://39.134.67.226/PLTV/88888888/224/3221225525/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225525/index.m3u8","http://111.11.121.184:6610/030000001001/saishijx/1.m3u8?channel-id=ystenlive","http://223.110.243.157/ott.js.chinamobile.com/PLTV/3/224/3221227541/index.m3u8"]},
{"name":"精品大劇","urls":["http://183.207.248.71:80/cntv/live1/n-jdaju/n-jdaju","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225670/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229713/index.m3u8","http://117.148.179.49/PLTV/88888888/224/3221229017/index.m3u8","http://223.110.243.151/ott.js.chinamobile.com/PLTV/3/224/3221227618/index.m3u8","http://111.11.121.184:6610/030000001001/jdaju/1.m3u8?channel-id=ystenlive"]},
{"name":"炫舞未来","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225719/index.m3u8","http://117.148.179.45/PLTV/88888888/224/3221229155/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229669/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225646/index.m3u8"]},
{"name":"精品體育","urls":["http://183.207.248.71:80/cntv/live1/n-jtiyu/n-jtiyu","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225715/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229719/index.m3u8","http://117.148.179.47/PLTV/88888888/224/3221229026/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225526/index.m3u8","http://223.110.243.154/ott.js.chinamobile.com/PLTV/3/224/3221227615/index.m3u8","http://111.11.121.184:6610/030000001001/jtiyu/1.m3u8?channel-id=ystenlive"]},
{"name":"精品綜合","urls":["http://183.207.248.71:80/cntv/live1/n-mingxingdp/n-mingxingdp","http://117.148.179.40/PLTV/88888888/224/3221229005/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229660/index.m3u8"]},
{"name":"精品纪录","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225672/index.m3u8","http://117.148.179.43/PLTV/88888888/224/3221229707/index.m3u8","http://117.148.179.21/PLTV/88888888/224/3221229013/index.m3u8","http://39.134.67.226/PLTV/88888888/224/3221225545/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225545/index.m3u8","http://223.110.243.162/ott.js.chinamobile.com/PLTV/3/224/3221227547/index.m3u8","http://111.11.121.184:6610/030000001001/jingpinjl/1.m3u8?channel-id=ystenlive"]},
{"name":"軍旅劇場","urls":["http://183.207.248.71:80/cntv/live1/n-junlvjc/n-junlvjc","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225676/index.m3u8","http://117.148.179.52/PLTV/88888888/224/3221229004/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229698/index.m3u8","http://111.11.121.184:6610/030000001001/junlvjc/1.m3u8?channel-id=ystenlive","http://223.110.243.142/ott.js.chinamobile.com/PLTV/3/224/3221227603/index.m3u8"]},
{"name":"軍事評論","urls":["http://183.207.248.71:80/cntv/live1/n-junshipl/n-junshipl","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225668/index.m3u8","http://117.148.179.43/PLTV/88888888/224/3221229716/index.m3u8","http://117.148.179.51/PLTV/88888888/224/3221229008/index.m3u8","http://223.110.243.167/ott.js.chinamobile.com/PLTV/3/224/3221227544/index.m3u8","http://111.11.121.184:6610/030000001001/junshipl/1.m3u8?channel-id=ystenlive"]},
{"name":"農業致富","urls":["http://183.207.248.71:80/cntv/live1/n-nongyezf/n-nongyezf","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225683/index.m3u8","http://117.148.179.45/PLTV/88888888/224/3221229029/index.m3u8","http://117.148.179.24/PLTV/88888888/224/3221229666/index.m3u8","http://223.110.243.158/ott.js.chinamobile.com/PLTV/3/224/3221227588/index.m3u8","http://111.11.121.184:6610/030000001001/nongyezf/1.m3u8?channel-id=ystenlive","http://39.134.66.66/PLTV/88888888/224/3221225552/index.m3u8"]},
{"name":"熱播精選","urls":["http://183.207.248.71:80/cntv/live1/n-xiqumd/n-xiqumd","http://117.148.179.15/PLTV/88888888/224/3221229062/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229654/index.m3u8"]},
{"name":"武搏世界","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225680/index.m3u8","http://112.15.230.38/PLTV/88888888/224/3221229722/index.m3u8","http://117.148.179.16/PLTV/88888888/224/3221229041/index.m3u8","http://223.110.243.141/ott.js.chinamobile.com/PLTV/3/224/3221227533/index.m3u8","http://111.11.121.184:6610/030000001001/SD-1500k-576P-bokesen/1.m3u8?channel-id=ystenlive","http://39.134.66.66/PLTV/88888888/224/3221225547/index.m3u8"]},
{"name":"中國功夫","urls":["http://183.207.248.71:80/cntv/live1/n-gzkongfu/n-gzkongfu","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225681/index.m3u8","http://117.148.179.47/PLTV/88888888/224/3221229019/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229663/index.m3u8","http://223.110.243.165/ott.js.chinamobile.com/PLTV/3/224/3221227530/index.m3u8","http://111.11.121.184:6610/030000001001/SD-1500k-576P-gzkongfu/1.m3u8?channel-id=ystenlive","http://39.134.66.66/PLTV/88888888/224/3221225604/index.m3u8"]},
{"name":"1·超级体育","urls":["http://39.134.66.66/PLTV/88888888/224/3221225635/index.m3u8"]}
]},
{"group": "CIBN","channels": [{"name":"综合CIBN","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226420/index.m3u8"]},
{"name":"经典剧场","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226402/index.m3u8","http://117.148.179.176/PLTV/88888888/224/3221231595/index.m3u8"]},
{"name":"古装剧场","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226400/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231625/index.m3u8"]},
{"name":"骄阳剧场","urls":["http://117.148.179.165/PLTV/88888888/224/3221231745/index.m3u8","http://211.94.219.178:18080/PLTV/68/224/3221226423/index.m3u8"]},
{"name":"微电影","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226441/index.m3u8","http://117.148.179.157/PLTV/88888888/224/3221231586/index.m3u8"]},
{"name":"纪录片","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226437/index.m3u8","http://117.148.179.154/PLTV/88888888/224/3221231594/index.m3u8"]},
{"name":"流金岁月","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226425/index.m3u8","http://117.148.179.158/PLTV/88888888/224/3221231664/index.m3u8"]},
{"name":"时尚生活","urls":["http://117.148.179.183/PLTV/88888888/224/3221231489/index.m3u8"]},
{"name":"风尚运动","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226429/index.m3u8"]},
{"name":"真人秀","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226416/index.m3u8"]},
{"name":"动画乐园","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226406/index.m3u8"]},
{"name":"SiTV全纪实","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226580/index.m3u8"]},
{"name":"SiTV极速汽车","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226574/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226583/index.m3u8"]},
{"name":"SiTV游戏风云","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226579/index.m3u8"]},
{"name":"SiTV都市剧场","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226581/index.m3u8"]}
]},
{"group": "风景区","channels": [{"name":"全国风景总览","urls":["https://gcalic.v.myalicdn.com/gc/wgw05_1/index.m3u8?contentid=2820180516001"]},
{"name":"北京-南宫温泉休闲度假区","urls":["http://gcalic.v.myalicdn.com/gc/tyhjntyz_1/index.m3u8?contentid=2820180516001"]},
{"name":"北京-水立方","urls":["http://gcalic.v.myalicdn.com/gc/gccntv241-slf01_1/index.m3u8?contentid=2820180516001"]},
{"name":"北京-黄花城水长城01","urls":["https://gcalic.v.myalicdn.com/gc/wgw01_1/index.m3u8?contentid=2820180516001","https://gcalic.v.myalicdn.com/gc/wgw02_1/index.m3u8?contentid=2820180516001","https://gcalic.v.myalicdn.com/gc/wgw03_1/index.m3u8?contentid=2820180516001","https://gcalic.v.myalicdn.com/gc/wgw04_1/index.m3u8?contentid=2820180516001"]},
{"name":"北京-八达岭长城南七楼","urls":["http://gcalic.v.myalicdn.com/gc/bgws7_1/index.m3u8?contentid=2820180516001"]},
{"name":"北京-中央电视塔东","urls":["http://gcalic.v.myalicdn.com/gc/ztd_1/index.m3u8?contentid=2820180516001"]},
{"name":"天津-天津之眼","urls":["https://gcalic.v.myalicdn.com/gc/tjhh01_1/index.m3u8?contentid=2820180516001"]},
{"name":"天津-天津海河","urls":["https://gcalic.v.myalicdn.com/gc/tjhh02_1/index.m3u8?contentid=2820180516001"]},
{"name":"山西-悬空寺全景","urls":["https://gcalic.v.myalicdn.com/gc/hsxksqj_1/index.m3u8?contentid=2820180516001"]},
{"name":"辽宁-沈阳金廊","urls":["https://gcalic.v.myalicdn.com/gc/zsslsjjfsd_1/index.m3u8?contentid=2820180516001"]},
{"name":"黑龙江-雪乡梦幻家园","urls":["https://gcalic.v.myalicdn.com/gc/mdjxxmhjyxj_1/index.m3u8?contentid=2820180516001"]},
{"name":"江苏-无锡鼋头渚长春桥","urls":["https://gcksc.v.kcdnvip.com/gc/dlst02_1/index.m3u8?BR=md®ion=beijing"]},
{"name":"江苏-无锡鼋头渚赏樱阁","urls":["https://gcalic.v.myalicdn.com/gc/pshdxg01_1/index.m3u8?contentid=2820180516001"]},
{"name":"江苏-南京牛首山","urls":["https://gcalic.v.myalicdn.com/gc/nss01_1/index.m3u8?contentid=2820180516001"]},
{"name":"江苏-南京玄武湖公园","urls":["https://gcalic.v.myalicdn.com/gc/xwh01_1/index.m3u8?contentid=2820180516001"]},
{"name":"江苏-徐州云龙湖观景台西","urls":["https://gcalic.v.myalicdn.com/gc/ylh04_1/index.m3u8?contentid=2820180516001"]},
{"name":"江苏-徐州云龙湖观景台南","urls":["https://gcalic.v.myalicdn.com/gc/ylh03_1/index.m3u8?contentid=2820180516001"]},
{"name":"江苏-兴化千垛景区","urls":["https://mlivecncc.v.wscdns.com/mlive/mlive_djy02_1/index.m3u8?contentid=2820180516001"]},
{"name":"浙江-云栖小镇","urls":["https://gcalic.v.myalicdn.com/gc/hnttpgsz_1/index.m3u8?contentid=2820180516001"]},
{"name":"浙江-千岛湖","urls":["https://gcalic.v.myalicdn.com/gc/caqdh_1/index.m3u8?contentid=2820180516001"]},
{"name":"浙江-普陀山","urls":["https://gcalic.v.myalicdn.com/gc/pts01_1/index.m3u8?contentid=2820180516001"]},
{"name":"浙江-舟山东极岛","urls":["https://gcalic.v.myalicdn.com/gc/djd01_1/index.m3u8?contentid=2820180516001"]},
{"name":"浙江-丽水仙都风景区","urls":["https://gcalic.v.myalicdn.com/gc/xdfjq01_1/index.m3u8?contentid=2820180516001"]},
{"name":"浙江-乌镇蓝印花布","urls":["https://gcalic.v.myalicdn.com/gc/zjwzlyhb_1/index.m3u8?contentid=2820180516001"]},
{"name":"浙江-乌镇全景","urls":["https://gcalic.v.myalicdn.com/gc/zjwzblt_1/index.m3u8?contentid=2820180516001"]},
{"name":"浙江-乌镇西市河","urls":["https://gcalic.v.myalicdn.com/gc/zjwzbblh_1/index.m3u8?contentid=2820180516001"]},
{"name":"浙江-乌镇龙形田","urls":["https://gcalic.v.myalicdn.com/gc/zjwzlxt_1/index.m3u8?contentid=2820180516001"]},
{"name":"安徽-西递牌坊","urls":["https://gcalic.v.myalicdn.com/gc/yxxdpf_1/index.m3u8?contentid=2820180516001"]},
{"name":"安徽-宏村月沼","urls":["https://gcalic.v.myalicdn.com/gc/yxhcyz_1/index.m3u8?contentid=2820180516001"]},
{"name":"安徽-西递半山亭","urls":["https://gcalic.v.myalicdn.com/gc/yxxdbst_1/index.m3u8?contentid=2820180516001"]},
{"name":"安徽-黟县芦村远眺","urls":["https://gcalic.v.myalicdn.com/gc/yxlcyt_1/index.m3u8?contentid=2820180516001"]},
{"name":"安徽-宏村南湖","urls":["https://gcalic.v.myalicdn.com/gc/yxhcnh_1/index.m3u8?contentid=2820180516001"]},
{"name":"安徽-黄山","urls":["https://gcalic.v.myalicdn.com/gc/ahhs01_1/index.m3u8?contentid=2820180516001"]},
{"name":"安徽-黄山始信新道","urls":["https://gcalic.v.myalicdn.com/gc/hsyg_1/index.m3u8?contentid=2820180516001"]},
{"name":"安徽-黄山卧云峰","urls":["https://gcalic.v.myalicdn.com/gc/hswlf_1/index.m3u8?contentid=2820180516001"]},
{"name":"安徽-黄山梦笔生花","urls":["https://gcalic.v.myalicdn.com/gc/hsmbsh_1/index.m3u8?contentid=2820180516001"]},
{"name":"安徽-黄山光明顶","urls":["https://gcalic.v.myalicdn.com/gc/hsgmd_1/index.m3u8?contentid=2820180516001"]},
{"name":"安徽-黄山飞来石","urls":["https://gcalic.v.myalicdn.com/gc/hsptgy_1/index.m3u8?contentid=2820180516001"]},
{"name":"安徽-黄山平天矼","urls":["https://gcalic.v.myalicdn.com/gc/hsptgz_1/index.m3u8?contentid=2820180516001"]},
{"name":"安徽-黄山排云亭","urls":["https://gcalic.v.myalicdn.com/gc/hspyt_1/index.m3u8?contentid=2820180516001"]},
{"name":"安徽-九华山拜经台","urls":["https://gcalic.v.myalicdn.com/gc/jhs02_1/index.m3u8?contentid=2820180516001"]},
{"name":"安徽-九华山","urls":["https://gcalic.v.myalicdn.com/gc/jhs05_1/index.m3u8?contentid=2820180516001"]},
{"name":"安徽-九华山花台","urls":["https://gcalic.v.myalicdn.com/gc/jhs01_1/index.m3u8?contentid=2820180516001"]},
{"name":"福建-厦门鼓浪屿","urls":["https://gcalic.v.myalicdn.com/gc/gly01_1/index.m3u8?contentid=2820180516001"]},
{"name":"福建-武夷山玉女峰","urls":["https://gcalic.v.myalicdn.com/gc/wysynf_1/index.m3u8?contentid=2820180516001"]},
{"name":"福建-宁德太姥山景区","urls":["https://gcalic.v.myalicdn.com/gc/tms01_1/index.m3u8?contentid=2820180516001"]},
{"name":"福建-漳州六鳌翡翠湾","urls":["https://gcalic.v.myalicdn.com/gc/fcw01_1/index.m3u8?contentid=2820180516001"]},
{"name":"福建-醉美沙滩翡翠湾","urls":["https://gcalic.v.myalicdn.com/gc/fcw03_1/index.m3u8?contentid=2820180516001"]},
{"name":"江西-婺源江岭2号观景台","urls":["https://gcalic.v.myalicdn.com/gc/wygjt2_1/index.m3u8?contentid=2820180516001"]},
{"name":"江西-婺源江岭1号观景台","urls":["https://gcalic.v.myalicdn.com/gc/wygjt1_1/index.m3u8?contentid=2820180516001"]},
{"name":"江西-龙虎山-中间水泡","urls":["https://gcalic.v.myalicdn.com/gc/lhszjsp_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-泰山","urls":["https://gcalic.v.myalicdn.com/gc/taishan04_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-泰山主峰","urls":["https://gcalic.v.myalicdn.com/gc/taishan01_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-瞻鲁台","urls":["https://gcalic.v.myalicdn.com/gc/hkts06_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-泰山十八盘","urls":["https://gcalic.v.myalicdn.com/gc/taishan05_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-玉皇顶西","urls":["https://gcalic.v.myalicdn.com/gc/hkts11_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-玉皇顶东","urls":["https://gcalic.v.myalicdn.com/gc/hkts10_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-太平岭","urls":["https://gcalic.v.myalicdn.com/gc/hkts09_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-扇子崖","urls":["https://gcalic.v.myalicdn.com/gc/hkts08_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-南天门","urls":["https://gcalic.v.myalicdn.com/gc/hkts07_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-开山","urls":["https://gcalic.v.myalicdn.com/gc/hkts05_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-经石峪","urls":["https://gcalic.v.myalicdn.com/gc/hkts04_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-碧霞祠","urls":["https://gcalic.v.myalicdn.com/gc/hkts03_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-白云亭悬崖","urls":["https://gcalic.v.myalicdn.com/gc/hkts02_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-拱北日出","urls":["https://gcalic.v.myalicdn.com/gc/hkts01_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-泰山天街","urls":["https://gcalic.v.myalicdn.com/gc/taishan07_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-泰山玉皇顶","urls":["https://gcalic.v.myalicdn.com/gc/taishan06_1/index.m3u8?contentid=2820180516001"]},
{"name":"山东-泰山大观峰","urls":["https://gcalic.v.myalicdn.com/gc/taishan03_1/index.m3u8?contentid=2820180516001"]},
{"name":"河南-郑东新区千玺广场","urls":["https://gcalic.v.myalicdn.com/gc/zdxq01_1/index.m3u8?contentid=2820180516001"]},
{"name":"河南-少林寺广场","urls":["https://gcalic.v.myalicdn.com/gc/zsslsgc_1/index.m3u8?contentid=2820180516001"]},
{"name":"河南-云台山小寨沟","urls":["https://gcalic.v.myalicdn.com/gc/ytsxzg_1/index.m3u8?contentid=2820180516001"]},
{"name":"河南-云台山百家岩","urls":["https://gcalic.v.myalicdn.com/gc/ytsbjy_1/index.m3u8?contentid=2820180516001"]},
{"name":"河南-云台山红石峡","urls":["https://gcalic.v.myalicdn.com/gc/ytshsx_1/index.m3u8?contentid=2820180516001"]},
{"name":"河南-云台山茱萸峰","urls":["https://gcalic.v.myalicdn.com/gc/ytszyf_1/index.m3u8?contentid=2820180516001"]},
{"name":"河南-八里沟桃花湾瀑布","urls":["https://gcalic.v.myalicdn.com/gc/blg05_1/index.m3u8?contentid=2820180516001"]},
{"name":"河南-八里沟天界山玻璃栈道","urls":["https://gcalic.v.myalicdn.com/gc/blg03_1/index.m3u8?contentid=2820180516001"]},
{"name":"湖北-武汉黄鹤楼","urls":["https://gcalic.v.myalicdn.com/gc/qdls02_1/index.m3u8?contentid=2820180516001"]},
{"name":"湖北-龙王庙","urls":["https://gcalic.v.myalicdn.com/gc/hnttbdjd_1/index.m3u8?contentid=2820180516001"]},
{"name":"湖北-武汉长江大桥","urls":["https://gcalic.v.myalicdn.com/gc/qdls04_1/index.m3u8?contentid=2820180516001"]},
{"name":"湖北-金丝猴01","urls":["https://gcalic.v.myalicdn.com/gc/jshhd01_1/index.m3u8?contentid=2820180516001"]},
{"name":"湖南-天门山天门洞","urls":["https://gcalic.v.myalicdn.com/gc/tmstmd01_1/index.m3u8?contentid=2820180516001"]},
{"name":"湖南-天门山天空步道","urls":["https://gcalic.v.myalicdn.com/gc/tms02_1/index.m3u8?contentid=2820180516001"]},
{"name":"湖南-天门山西线玻璃栈道","urls":["https://gcalic.v.myalicdn.com/gc/tms05_1/index.m3u8?contentid=2820180516001"]},
{"name":"湖南-天门山云梦仙顶","urls":["https://gcalic.v.myalicdn.com/gc/tms04_1/index.m3u8?contentid=2820180516001"]},
{"name":"湖南-十八洞村","urls":["https://gcalic.v.myalicdn.com/gc/sbd01_1/index.m3u8?contentid=2820180516001"]},
{"name":"湖南-凤凰古城南华山","urls":["https://gcalic.v.myalicdn.com/gc/fhgcdnhs_1/index.m3u8?contentid=2820180516001"]},
{"name":"湖南-凤凰古城东关门","urls":["https://gcalic.v.myalicdn.com/gc/fhgcdgm_1/index.m3u8?contentid=2820180516001"]},
{"name":"湖南-张家界水绕四门","urls":["https://gcalic.v.myalicdn.com/gc/zjjsrsm_1/index.m3u8?contentid=2820180516001"]},
{"name":"湖南-张家界将军列队","urls":["https://gcalic.v.myalicdn.com/gc/zjjjjdl_1/index.m3u8?contentid=2820180516001"]},
{"name":"湖南-阿凡达悬浮山","urls":["https://gcalic.v.myalicdn.com/gc/zjjafdxfs_1/index.m3u8?contentid=2820180516001"]},
{"name":"湖南-张家界迷魂台","urls":["https://gcalic.v.myalicdn.com/gc/zjjmht_1/index.m3u8?contentid=2820180516001"]},
{"name":"湖南-宝峰湖","urls":["https://gcalic.v.myalicdn.com/gc/zjjbfh_1/index.m3u8?contentid=2820180516001"]},
{"name":"广东-东莞中心广场","urls":["https://gcalic.v.myalicdn.com/gc/zsslstpt_1/index.m3u8?contentid=2820180516001"]},
{"name":"广东-深圳世界之窗","urls":["https://gcalic.v.myalicdn.com/gc/sjzc01_1/index.m3u8?contentid=2820180516001"]},
{"name":"广东-丹霞山丹梯铁锁","urls":["https://gcalic.v.myalicdn.com/gc/dxsdtts_1/index.m3u8?contentid=2820180516001"]},
{"name":"都江堰青青","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao20_1/index.m3u8"]},
{"name":"都江堰妃妃","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao13_1/index.m3u8"]},
{"name":"都江堰娅祥","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao15_1/index.m3u8"]},
{"name":"都江堰瑞瑞","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao11_1/index.m3u8"]},
{"name":"都江堰英英","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao16_1/index.m3u8"]},
{"name":"都江堰壹壹玖玖","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao14_1/index.m3u8"]},
{"name":"都江堰水秀","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao12_1/index.m3u8"]},
{"name":"都江堰神树萍①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao25_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao26_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao22_1/index.m3u8"]},
{"name":"怡然②","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao18_1/index.m3u8"]},
{"name":"基地幼年园①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao03_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao04_1/index.m3u8"]},
{"name":"基地母子园①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao07_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao08_1/index.m3u8"]},
{"name":"基地幼儿园①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao05_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao06_1/index.m3u8"]},
{"name":"基地成年园①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao01_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao02_1/index.m3u8"]},
{"name":"基地别墅","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao09_1/index.m3u8","http://gccnchwc.v.cdn20.com/gc/xiongmao09_1.flv","http://gcalic.v.myalicdn.com/gc/xiongmao10_1/index.m3u8"]},
{"name":"核桃坪","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao19_1/index.m3u8"]},
{"name":"卧龙臭水","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao17_1/index.m3u8"]},
{"name":"大丰麋鹿","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao23_1/index.m3u8"]},
{"name":"白马雪山","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao24_1/index.m3u8"]},
{"name":"成都高清","urls":["http://gcalic.v.myalicdn.com/gc/ipanda_1td/index.m3u8"]},
{"name":"都江堰高清","urls":["http://gcalic.v.myalicdn.com/gc/ipanda1000_1td/index.m3u8"]}
]},
{"group": "临时源","channels": [{"name":"中央1台","urls":["http://111.40.196.33/PLTV/88888888/224/3221225769/index.m3u8","http://117.148.179.155:80/PLTV/88888888/224/3221231468/1.m3u8","http://111.40.196.9/PLTV/88888888/224/3221225513/index.m3u8","http://39.135.138.60:18890/PLTV/88888910/224/3221225618/index.m3u8","http://39.134.68.169:6610/PLTV/88888888/224/3221226016/index.m3u8?","http://39.135.138.58:18890/PLTV/88888888/224/3221225630/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225618/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225642/index.m3u8","http://111.40.196.9/PLTV/88888888/224/3221225548/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225762/index.m3u8","http://111.40.196.9/PLTV/88888888/224/3221225769/index.m3u8","http://111.40.196.9/PLTV/88888888/224/3221225727/index.m3u8","http://tlivectfree-cdn.ysp.cctv.cn/ysp/2000210103.m3u8"]},
{"name":"中央2台","urls":["rtsp://183.252.176.54:554/PLTV/88888888/224/3221226655/40417429.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226195/1.m3u8","http://111.63.77.77:80/gitv_live/G_CCTV-2-MD/G_CCTV-2-MD.m3u8","http://60.255.49.202:80/live/CCTV-2H265_4000.m3u8","http://117.148.179.147:80/PLTV/88888888/224/3221231678/1.m3u8"]},
{"name":"中央3台","urls":["http://60.255.49.202:80/live/CCTV-3H265_4000.m3u8","http://111.40.196.29/PLTV/88888888/224/3221225588/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226021/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226397/1.m3u8","http://111.63.117.13:6060/030000001000/CCTV-3/CCTV-3.m3u8","https://jwplay.hebyun.com.cn:443/live/cctv3/1500k/tzwj_video.m3u8","http://223.110.242.133:6610/jsyd/live1/G_CCTV-3-MD/G_CCTV-3-MD/","http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-3hd/1.m3u8","http://117.148.179.183:80/PLTV/88888888/224/3221231682/index.m3u8"]},
{"name":"中央4台","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226191/1.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225621/index.m3u8","http://39.135.32.28:6610/000000001000/1000000002000031664/1.m3u8?","http://117.148.179.183/PLTV/88888888/224/3221231726/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226633/40417241.smil","http://183.207.248.15/PLTV/3/224/3221225534/index.m3u8","http://60.255.49.202:80/live/CCTV-4H265_4000.m3u8"]},
{"name":"中央5台","urls":["http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-5hd/1.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225751/index.m3u8","http://60.255.49.202:80/live/CCTV-5H265_4000.m3u8","http://111.63.117.13:6060/030000001000/CCTV-5/CCTV-5.m3u8","http://180.97.123.180/4403-txt.otvstream.otvcloud.com/otv/skcc/live/channel5/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225837/1.m3u8","rtmp://59.124.75.157/sat/cn021","http://tlivectfree-cdn.ysp.cctv.cn/ysp/2000205103.m3u8"]},
{"name":"中央6台","urls":["http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-6hd/1.m3u8","http://223.110.245.172/PLTV/3/224/3221225548/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226393/1.m3u8","http://39.135.32.28:6610/000000001000/1000000001000016466/1.m3u8?","http://60.255.49.202:80/live/CCTV-6H265_4000.m3u8","https://jwplay.hebyun.com.cn:443/live/cctv6/1500k/tzwj_video.m3u8"]},
{"name":"中央7台","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226645/40426612.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226192/1.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231633/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-7hd/1.m3u8","http://39.135.32.29:6610/000000001000/1000000001000017218/1.m3u8?","http://183.207.248.71/cntv/live1/cctv-7/cctv-7","http://60.255.49.202:80/live/CCTV-7H265_4000.m3u8"]},
{"name":"中央8台","urls":["http://39.135.138.58:18890/PLTV/88888888/224/3221225631/index.m3u8","http://111.40.196.31/PLTV/88888888/224/3221225592/index.m3u8","http://39.134.39.37/PLTV/88888888/224/3221226257/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226008/index.m3u8","http://60.255.49.202:80/live/CCTV-8H265_4000.m3u8","http://117.148.179.160:80/PLTV/88888888/224/3221231694/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-8hd/1.m3u8"]},
{"name":"中央9台","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225734/index.m3u8","http://111.40.196.34/PLTV/88888888/224/3221225502/index.m3u8","http://117.148.179.163/PLTV/88888888/224/3221231697/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226637/40417257.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226197/1.m3u8","http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-9hd/1.m3u8","http://60.255.49.202:80/live/CCTV-9H265_4000.m3u8","http://111.63.77.77:80/gitv_live/G_CCTV-9-HD/G_CCTV-9-HD.m3u8"]},
{"name":"中央10台","urls":["http://60.255.49.202:80/live/CCTV-10H265_4000.m3u8","http://117.148.179.174/PLTV/88888888/224/3221231666/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226718/40417274.smil","http://39.134.66.66/PLTV/88888888/224/3221225677/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-10hd/1.m3u8","http://111.63.77.77:80/gitv_live/G_CCTV-10-HD/G_CCTV-10-HD.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225730/index.m3u8"]},
{"name":"中央11台","urls":["http://39.134.65.162/PLTV/88888888/224/3221225517/index.m3u8","rtsp://183.252.176.54:554/PLTV/88888888/224/3221225996/10000100000000060000000002296743_0.smil","http://117.148.179.165/PLTV/88888888/224/3221231711/index.m3u8"]},
{"name":"中央12台","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226659/40417266.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226190/1.m3u8","http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-12hd/1.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225731/index.m3u8","http://39.134.65.162/PLTV/88888888/224/3221225669/index.m3u8","http://60.255.49.202:80/live/CCTV-12H265_4000.m3u8"]},
{"name":"中央13台","urls":["http://111.40.196.30/PLTV/88888888/224/3221225504/index.m3u8","http://scgctvshow.sctv.com/scgc/cctv13/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226104/10000100000000060000000002298296_0.smil","http://223.110.242.200:6610/gitv/live1/G_CCTV-13-CQ/G_CCTV-13-CQ","http://tlivectfree-cdn.ysp.cctv.cn/ysp/2000204603.m3u8"]},
{"name":"中央14台","urls":["http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-14hd/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226193/1.m3u8","http://117.148.179.183/PLTV/88888888/224/3221231648/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226641/40418077.smil","http://111.63.77.77:80/gitv_live/G_CCTV-14-HD/G_CCTV-14-HD.m3u8","http://60.255.49.202:80/live/CCTV-14H265_4000.m3u8"]},
{"name":"中央15台","urls":["rtsp://183.252.176.54:554/PLTV/88888888/224/3221225998/10000100000000060000000002296745_0.smil","http://111.40.196.31/PLTV/88888888/224/3221225500/index.m3u8","http://117.148.179.169:80/PLTV/88888888/224/3221231693/index.m3u8","http://39.134.65.162/PLTV/88888888/224/3221225513/index.m3u8"]},
{"name":"中央16台","urls":["http://liveop.cctv.cn/hls/CCTV16HD/playlist.m3u8","http://39.135.140.227:6610/PLTV/88888888/224/3221226233/2/index.m3u8?fmt=ts2hls","http://111.63.77.77:80/gitv_live/G_CCTV-16-CQ/G_CCTV-16-CQ.m3u8","http://ott.js.chinamobile.com/PLTV/3/224/3221228144/index.m3u8","http://39.135.129.166:80/PLTV/88888888/224/3221226581/1.m3u8"]},
{"name":"中央17台","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225765/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226198/1.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225907/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-17hd/1.m3u8","http://111.63.77.77:80/gitv_live/G_CCTV-17-CQ/G_CCTV-17-CQ.m3u8","http://223.110.243.224/PLTV/3/224/3221227592/index.m3u8"]},
{"name":"CCTV-怀旧剧场","urls":["http://117.148.179.158/PLTV/88888888/224/3221231544/index.m3u8"]},
{"name":"CCTV-第一剧场","urls":["http://117.148.179.172/PLTV/88888888/224/3221231540/index.m3u8"]},
{"name":"CCTV-风云剧场","urls":["http://117.148.179.162/PLTV/88888888/224/3221231604/index.m3u8"]},
{"name":"CCTV-风云足球","urls":["http://117.148.179.137/PLTV/88888888/224/3221231547/index.m3u8"]},
{"name":"CCTV-风云音乐","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225698/1/index.m3u8?fmt=ts2hls"]},
{"name":"CCTV-世界地理","urls":["http://117.148.179.156/PLTV/88888888/224/3221231537/index.m3u8"]},
{"name":"CCTV-女性时尚","urls":["http://117.148.179.167/PLTV/88888888/224/3221231598/index.m3u8"]},
{"name":"CCTV-央视台球","urls":["http://117.148.179.167/PLTV/88888888/224/3221231616/index.m3u8"]},
{"name":"CCTV-高尔夫网球","urls":["http://117.148.179.160/PLTV/88888888/224/3221231619/index.m3u8"]},
{"name":"CCTV-央视文化精品","urls":["http://117.148.179.147/PLTV/88888888/224/3221231561/index.m3u8"]},
{"name":"CGTN","urls":["http://117.148.179.174/PLTV/88888888/224/3221231592/index.m3u8","http://117.148.179.144/PLTV/88888888/224/3221231492/index.m3u8","http://117.148.179.156/PLTV/88888888/224/3221231550/index.m3u8"]},
{"name":"CETV1","urls":["http://117.148.179.156/PLTV/88888888/224/3221231714/index.m3u8"]},
{"name":"CETV1","urls":["http://117.148.179.149/PLTV/88888888/224/3221231552/index.m3u8"]},
{"name":"CETV2","urls":["http://117.148.179.162/PLTV/88888888/224/3221231607/index.m3u8"]},
{"name":"CETV3","urls":["http://117.148.179.136/PLTV/88888888/224/3221231543/index.m3u8"]},
{"name":"CETV4","urls":["http://112.15.230.48/PLTV/88888888/224/3221230334/index.m3u8"]},
{"name":"CETV4","urls":["http://117.148.179.155/PLTV/88888888/224/3221231613/index.m3u8"]},
{"name":"CHC高清电影","urls":["http://59.49.41.41/live.aishang.ctlcdn.com/00000110240325_1/playlist.m3u8?CONTENTID=00000110240325_1"]},
{"name":"CHC动作电影","urls":["http://117.148.179.138/PLTV/88888888/224/3221231580/index.m3u8"]},
{"name":"CHC家庭影院","urls":["http://117.148.179.151/PLTV/88888888/224/3221231799/index.m3u8"]},
{"name":"·卫视频道·","urls":["","genre",""]},
{"name":"北京卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225728/index.m3u8","https://hsplay-360.v.btime.com/live_btime/btv_sn_20170706_s1/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226092/10000100000000060000000002296930_0.smil","http://coocaa-ynbit-ws.ifengli.com:2386/live/bjws-hd/1.m3u8","http://117.148.179.168:80/PLTV/88888888/224/3221231732/index.m3u8","http://180.97.123.180/4403-txt.otvstream.otvcloud.com/otv/skcc/live/channel24/index.m3u8","http://223.110.242.133:6610/gitv/live1/G_BEIJING-CQ/G_BEIJING-CQ/"]},
{"name":"上海卫视","urls":["http://coocaa-ynbit-ws.ifengli.com:2386/live/shdfws-hd/1.m3u8","http://111.40.196.35/PLTV/88888888/224/3221225509/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226041/10000100000000060000000002296882_0.smil","http://223.110.242.133:6610/gitv/live1/G_DONGFANG-CQ/G_DONGFANG-CQ/","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226261/1.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225735/index.m3u8","http://117.148.179.160:80/PLTV/88888888/224/3221231738/index.m3u8"]},
{"name":"重庆卫视","urls":["http://183.207.248.71/cntv/live1/HD-8000k-1080P-chongqingstv/HD-8000k-1080P-chongqingstv","http://qxlmlive.cbg.cn:1935/app_2/ls_67.stream/chunklist.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226753/45949735.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226202/1.m3u8","http://223.110.242.133:6610/gitv/live1/G_CHONGQING-CQ/G_CHONGQING-CQ/","http://60.255.49.202:80/live/cqwsH265_4000.m3u8","http://219.150.217.41:6610/PLTV1/1340/default.m3u8?ztecid=1340"]},
{"name":"天津卫视","urls":["http://223.110.242.133:6610/gitv/live1/G_TIANJIN-CQ/G_TIANJIN-CQ/","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226204/1.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225698/index.m3u8","http://180.97.123.180/4403-txt.otvstream.otvcloud.com/otv/skcc/live/channel28/index.m3u8","http://117.148.179.146:80/PLTV/88888888/224/3221228905/index.m3u8","http://60.255.49.202:80/live/tjwsH265_4000.m3u8"]},
{"name":"新疆卫视","urls":["http://111.0.27.21/livehyw6.chinamcache.com/hyw/zb01.m3u8"]},
{"name":"浙江卫视","urls":["http://117.148.179.140:80/PLTV/88888888/224/3221229352/index.m3u8","http://111.40.196.25/PLTV/88888888/224/3221225523/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225798/1.m3u8","http://111.63.77.77:80/gitv_live/G_ZHEJIANG-MD/G_ZHEJIANG-MD.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226040/10000100000000060000000002296881_0.smil","http://60.255.49.202:80/live/zjwsH265_4000.m3u8"]},
{"name":"福建卫视","urls":["rtsp://183.252.176.54:554/PLTV/88888888/224/3221226121/10000100000000060000000002358085_0.smil","http://coocaa-ynbit-ws.ifengli.com:2386/live/fjws-hd/1.m3u8","http://39.135.32.29:6610/000000001000/1000000002000009263/1.m3u8?","http://219.150.217.41:6610/PLTV1/1400/default.m3u8?ztecid=1400"]},
{"name":"海峡卫视","urls":["rtsp://183.252.176.54:554/PLTV/88888888/224/3221226128/10000100000000060000000002434539_0.smil","http://39.135.55.7:6610/PLTV/88888888/224/3221227198/index.m3u8?servicetype=1&IASHttpSessionId=OTT"]},
{"name":"厦门卫视","urls":["http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221226996/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226124/10000100000000060000000002358105_0.smil"]},
{"name":"湖南卫视","urls":["http://coocaa-ynbit-ws.ifengli.com:2386/live/hnws-hd/1.m3u8","http://111.63.77.77:80/gitv_live/G_HUNAN-MD/G_HUNAN-MD.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226082/10000100000000060000000002296924_0.smil","http://60.255.49.202:80/live/hnwsH265_4000.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225799/1.m3u8","http://223.110.242.133:6610/gitv/live1/G_HUNAN-CQ/G_HUNAN-CQ/","http://117.148.179.172:80/PLTV/88888888/224/3221231729/index.m3u8","http://180.97.123.180/4403-txt.otvstream.otvcloud.com/otv/skcc/live/channel25/index.m3u8"]},
{"name":"江苏卫视","urls":["http://39.135.32.28:6610/000000001000/1000000001000004684/1.m3u8?","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225800/1.m3u8","http://111.40.196.31/PLTV/88888888/224/3221225515/index.m3u8","http://117.148.179.175:80/PLTV/88888888/224/3221231447/index.m3u8","rtsp://183.252.176.54/PLTV/88888888/224/3221226038/10000100000000060000000002296879_0.smil","http://60.255.49.202:80/live/jswsH265_4000.m3u8","http://223.110.242.133:6610/gitv/live1/G_JIANGSU-CQ/G_JIANGSU-CQ/"]},
{"name":"江西卫视","urls":["http://111.40.196.30/PLTV/88888888/224/3221225560/index.m3u8","http://39.135.140.227:6610/PLTV/88888888/224/3221225492/2/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226687/42186801.smil","http://coocaa-ynbit-ws.ifengli.com:2386/live/jxws-hd/1.m3u8","http://111.63.77.77:80/gitv_live/G_JIANGXI-CQ/G_JIANGXI-CQ.m3u8","http://60.255.49.202:80/live/jxwsH265_4000.m3u8"]},
{"name":"青海卫视","urls":["http://live.geermurmt.com/qhws/sd/live.m3u8"]},
{"name":"云南卫视","urls":["http://39.130.202.62:6610/gitv_live/G_YUNNAN-HD/G_YUNNAN-HD.m3u8","http://219.150.217.41:6610/PLTV1/1320/index.m3u8?icpid=dxrm1","https://hwapi.yunshicloud.com/8xughf/e0bx15.m3u8"]},
{"name":"贵州卫视","urls":["rtsp://183.252.166.199:554/PLTV/88888888/224/3221226126/10000100000000060000000002434541_0.smil","http://60.255.49.202:80/live/gzwsH265_4000.m3u8","http://111.63.77.77:80/gitv_live/G_GUIZHOU-HQ/G_GUIZHOU-HQ.m3u8","http://219.150.217.41:6610/PLTV1/1160/default.m3u8?ztecid=1160"]},
{"name":"四川卫视","urls":["http://60.255.49.202:80/live/scwsH265_4000.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226806/45949301.smil","http://219.150.217.41:6610/PLTV1/1260/index.m3u8?icpid=dxrm1","http://111.63.77.77:80/gitv_live/G_SICHUAN-HQ/G_SICHUAN-HQ.m3u8"]},
{"name":"康巴卫视","urls":["http://scgctvshow.sctv.com/hdlive/kangba/1.m3u8"]},
{"name":"安徽卫视","urls":["http://223.110.242.133:6610/gitv/live1/G_ANHUI-CQ/G_ANHUI-CQ/","http://live1.ahwanyun.cn/wylive/07db2e13-9129-4a79-a059-92d7b400ddf3.m3u8","http://39.135.140.227:6610/PLTV/88888888/224/3221225691/2/index.m3u8","http://117.148.179.177:80/PLTV/88888888/224/3221230215/1.m3u8","http://zbbf2.ahtv.cn/live/749.m3u8","http://180.97.123.180/4403-txt.otvstream.otvcloud.com/otv/skcc/live/channel23/index.m3u8","http://111.40.196.25/PLTV/88888888/224/3221225551/index.m3u8","http://60.255.49.202:80/live/ahwsH265_4000.m3u8"]},
{"name":"山东卫视","urls":["http://coocaa-ynbit-ws.ifengli.com:2386/live/sdws-hd/1.m3u8","http://111.40.196.36/PLTV/88888888/224/3221225545/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226090/10000100000000060000000002296928_0.smil","http://219.150.217.41:6610/PLTV1/1080/default.m3u8?ztecid=1080","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226209/1.m3u8","http://223.110.242.133:6610/gitv/live1/G_SHANDONG-CQ/G_SHANDONG-CQ/"]},
{"name":"山西卫视","urls":["http://liveflash.sxrtv.com:80/live/sxwshd.m3u8","http://player.521fanli.cn/1691/0/tide/tidem3u8.php?id=shanxihd","http://httpdvb.slave.yqdtv.com:13164/playurl?playtype=live&protocol=http&playtoken=31603YEQXREOPEG10&auth=no&verifycode=14183&accesstoken=G79E6023V21307D1TD05FABJB53102ABM786710FEI3282697DK98BDA6&programid=4200000133"]},
{"name":"甘肃卫视","urls":["http://39.134.39.38/PLTV/88888888/224/3221226240/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225754/1.m3u8"]},
{"name":"广东卫视","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226089/10000100000000060000000002296927_0.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225803/1.m3u8","http://coocaa-ynbit-ws.ifengli.com:2386/live/gdws-hd/1.m3u8","http://60.255.49.202:80/live/gdwsH265_4000.m3u8","http://223.110.242.133:6610/gitv/live1/G_GUANGDONG-CQ/G_GUANGDONG-CQ/","http://117.148.179.141:80/PLTV/88888888/224/3221231891/1.m3u8","http://219.150.217.41:6610/PLTV1/1040/default.m3u8?ztecid=1040"]},
{"name":"广西卫视","urls":["https://live-cdn.gxxw.com/tv/gxtvlive/index.m3u8","http://live.scuec.edu.cn:8080/hls/gxhd.m3u8"]},
{"name":"深圳卫视","urls":["http://coocaa-ynbit-ws.ifengli.com:2386/live/szws-hd/1.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225739/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225700/index.m3u8","http://111.63.77.77:80/gitv_live/G_SHENZHEN-MD/G_SHENZHEN-MD.m3u8","http://60.255.49.202:80/live/szwsH265_4000.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225801/1.m3u8","http://219.150.217.41:6610/PLTV1/1240/default.m3u8?ztecid=1240"]},
{"name":"湖北卫视","urls":["http://39.135.32.28:6610/000000001000/6956052407855047826/1.m3u8?","http://111.40.196.27/PLTV/88888888/224/3221225654/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226206/1.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226091/10000100000000060000000002296929_0.smil","http://60.255.49.202:80/live/hbwsH265_4000.m3u8"]},
{"name":"河北卫视","urls":["http://223.110.242.133:6610/gitv/live1/G_HEBEI-CQ/G_HEBEI-CQ/","http://live2.plus.hebtv.com/hbwsx/hd/live.m3u8","http://219.150.217.41:6610/PLTV1/1180/default.m3u8?ztecid=1180","rtsp://183.252.166.199/PLTV/88888888/224/3221226111/10000100000000060000000002310153_0.smil"]},
{"name":"河南卫视","urls":["http://219.150.217.47:6610/PLTV2/2780/index.m3u8?icpid=dxrm1","rtsp://183.252.166.199/PLTV/88888888/224/3221226076/10000100000000060000000002296917_0.smil","http://111.63.77.77:80/gitv_live/G_HENAN-CQ/G_HENAN-CQ.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225767/1.m3u8"]},
{"name":"辽宁卫视","urls":["http://coocaa-ynbit-ws.ifengli.com:2386/live/lnws-hd/1.m3u8","http://39.135.32.28:6610/000000001000/1000000002000024033/1.m3u8?","http://111.40.196.34/PLTV/88888888/224/3221225593/index.m3u8","http://223.110.242.133:6610/gitv/live1/G_LIAONING-CQ/G_LIAONING-CQ/","http://117.148.179.152:80/PLTV/88888888/224/3221231802/1.m3u8","http://219.150.217.41:6610/PLTV1/1120/index.m3u8?icpid=dxrm1"]},
{"name":"吉林卫视","urls":["rtsp://183.252.176.54:554/PLTV/88888888/224/3221226792/48616745.smil","http://coocaa-ynbit-ws.ifengli.com:2386/live/jlws-hd/1.m3u8","http://223.110.242.133:6610/gitv/live1/G_JILIN-CQ/G_JILIN-CQ/","http://219.150.217.41:6610/PLTV1/1360/default.m3u8?ztecid=1360"]},
{"name":"黑龙江卫视","urls":["http://111.40.196.38/PLTV/88888888/224/3221225544/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2386/live/hljws-hd/1.m3u8","http://117.148.179.141:80/PLTV/88888888/224/3221231967/1.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226087/10000100000000060000000002296926_0.smil"]},
{"name":"海南卫视","urls":["rtsp://183.252.166.199:554/PLTV/88888888/224/3221226048/10000100000000060000000002296889_0.smil","http://111.63.77.77:80/gitv_live/G_HAINAN-HQ/G_HAINAN-HQ.m3u8","http://live.scuec.edu.cn:8080/hls/lyhd.m3u8","http://219.150.217.41:6610/PLTV1/1480/default.m3u8?ztecid=1480"]},
{"name":"兵团卫视","urls":["http://test5.btzx.com.cn/live/btxjbtws.stream/playlist.m3u8"]},
{"name":"宁夏卫视","urls":["http://39.134.93.229:6610/000000001000/nxweishi/1.m3u8?IASHttpSessionId=","https://hhylive.ningxiahuangheyun.com/live/nxws1M.m3u8"]},
{"name":"陕西卫视","urls":["http://129.226.107.32:80/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225498/index.m3u8"]},
{"name":"南方卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226218/1.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226788/48356344.smil","http://183.207.248.71/gitv/live1/G_NANFANG/G_NANFANG","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226218/1.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226788/48356344.smil","http://39.135.34.150:8080/000000001000/1000000002000011619/1.m3u8?xtkg","http://183.207.248.71/gitv/live1/G_NANFANG/G_NANFANG"]},
{"name":"三沙卫视","urls":["http://pull2.ssws.tv/live/SswsTV20210803.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226819/57526516.smil","http://pull2.ssws.tv/live/SswsTV20210803.m3u8"]},
{"name":"黑龙江卫视","urls":["http://ott.js.chinamobile.com/TVOD/3/224/3221228233/index.m3u8"]},
{"name":"甘肃卫视","urls":["http://39.134.39.39/PLTV/88888888/224/3221226240/index.m3u8"]},
{"name":"吉林卫视","urls":["http://111.40.196.36/PLTV/88888888/224/3221225589/index.m3u8"]},
{"name":"内蒙古卫视","urls":["http://111.40.196.39/PLTV/88888888/224/3221225574/index.m3u8"]},
{"name":"内蒙古卫视","urls":["http://live9.m2oplus.nmtv.cn/nmgws/playlist.m3u8"]},
{"name":"宁夏卫视","urls":["http://111.40.196.31/PLTV/88888888/224/3221225530/index.m3u8"]},
{"name":"青海卫视","urls":["http://111.40.196.27/PLTV/88888888/224/3221225568/index.m3u8"]},
{"name":"安多卫视","urls":["http://111.40.196.28/PLTV/88888888/224/3221225666/index.m3u8"]},
{"name":"陕西卫视","urls":["http://111.40.196.34/PLTV/88888888/224/3221225582/index.m3u8"]},
{"name":"山西卫视","urls":["http://111.40.196.26/PLTV/88888888/224/3221225520/index.m3u8"]},
{"name":"厦门卫视","urls":["http://111.40.196.34/PLTV/88888888/224/3221225643/index.m3u8"]},
{"name":"广西卫视","urls":["http://111.40.196.35/PLTV/88888888/224/3221225518/index.m3u8"]},
{"name":"云南卫视","urls":["http://111.40.196.36/PLTV/88888888/224/3221225635/index.m3u8"]},
{"name":"贵州卫视","urls":["http://111.40.196.25/PLTV/88888888/224/3221225522/index.m3u8"]},
{"name":"四川卫视","urls":["http://111.40.196.34/PLTV/88888888/224/3221225562/index.m3u8"]},
{"name":"康巴卫视","urls":["http://111.40.196.38/PLTV/88888888/224/3221225648/index.m3u8"]},
{"name":"新疆卫视","urls":["http://111.40.196.26/PLTV/88888888/224/3221225598/index.m3u8"]},
{"name":"兵团卫视","urls":["http://111.40.196.31/PLTV/88888888/224/3221225637/index.m3u8"]},
{"name":"西藏卫视","urls":["http://111.40.196.36/PLTV/88888888/224/3221225646/index.m3u8"]},
{"name":"海南卫视","urls":["http://111.40.196.35/PLTV/88888888/224/3221225623/index.m3u8"]},
{"name":"三沙卫视","urls":["http://183.11.239.36:808/hls/85/index.m3u8"]},
{"name":"兵团卫视","urls":["http://test5.btzx.com.cn/live/btxjbtws.stream/playlist.m3u8"]},
{"name":"宁夏卫视","urls":["http://39.134.93.229:6610/000000001000/nxweishi/1.m3u8?IASHttpSessionId="]},
{"name":"陕西卫视","urls":["http://129.226.107.32:80/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225498/index.m3u8"]},
{"name":"三沙卫视","urls":["http://pull2.ssws.tv/live/SswsTV20210803.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226819/57526516.smil"]},
{"name":"南方卫视","urls":["http://111.63.77.70/gitv_live/G_NANFANG/G_NANFANG.m3u8?p=GITV&area=HBYD"]},
{"name":"海峡卫视","urls":["rtsp://183.252.176.54:554/PLTV/88888888/224/3221226128/10000100000000060000000002434539_0.smil"]},
{"name":"延边卫视","urls":["http://111.63.77.70/gitv_live/G_YANBIAN/G_YANBIAN.m3u8?p=GITV&area=HBYD"]},
{"name":"农林卫视","urls":["http://111.63.77.70/gitv_live/G_NONGLIN/G_NONGLIN.m3u8?p=GITV&area=HBYD"]},
{"name":"山东教育卫视","urls":["http://111.63.77.70/gitv_live/G_SDETV/G_SDETV.m3u8?p=GITV&area=HBYD"]},
{"name":"深圳卫视","urls":["http://tyzb8080.weetai.cn/iptv-cdn/公众号=太阳视界/tyzb13.php?id=szws"]},
{"name":"环球旅游","urls":["http://117.148.179.154/PLTV/88888888/224/3221231712/index.m3u8"]},
{"name":"嘉佳卡通","urls":["http://117.148.179.144/PLTV/88888888/224/3221231483/index.m3u8"]},
{"name":"金鹰纪实","urls":["http://117.148.179.141/PLTV/88888888/224/3221231582/index.m3u8"]},
{"name":"江苏教育","urls":["http://117.148.179.158/PLTV/88888888/224/3221231631/index.m3u8"]},
{"name":"优漫卡通","urls":["http://117.148.179.183/PLTV/88888888/224/3221231574/index.m3u8"]},
{"name":"山东教育卫视","urls":["http://117.148.179.157/PLTV/88888888/224/3221231549/index.m3u8"]},
{"name":"东方影视","urls":["http://117.148.179.166/PLTV/88888888/224/3221231639/index.m3u8"]},
{"name":"上海纪实人文","urls":["http://117.148.179.168/PLTV/88888888/224/3221231612/index.m3u8"]},
{"name":"上海都市","urls":["http://117.148.179.165/PLTV/88888888/224/3221231618/index.m3u8"]},
{"name":"欢笑剧场","urls":["http://117.148.179.168/PLTV/88888888/224/3221230739/index.m3u8"]},
{"name":"幸福彩","urls":["http://117.148.179.156/PLTV/88888888/224/3221231730/index.m3u8"]},
{"name":"东方财经浦东","urls":["http://117.148.179.176/PLTV/88888888/224/3221231646/index.m3u8"]},
{"name":"哈哈炫动","urls":["http://117.148.179.136/PLTV/88888888/224/3221231480/index.m3u8","http://117.148.179.36/PLTV/88888888/224/3221229065/index.m3u8"]},
{"name":"法治天地","urls":["http://117.148.179.182/PLTV/88888888/224/3221231597/index.m3u8"]},
{"name":"BTV文艺-高清","urls":["http://v.mp.haue.edu.cn/hls/btv2hd.m3u8"]},
{"name":"BTV科教-高清","urls":["http://v.mp.haue.edu.cn/hls/btv3hd.m3u8"]},
{"name":"BTV影视-高清","urls":["http://v.mp.haue.edu.cn/hls/btv4hd.m3u8"]},
{"name":"BTV财经-高清","urls":["http://v.mp.haue.edu.cn/hls/btv5hd.m3u8"]},
{"name":"凤凰中文","urls":["http://59.44.10.113:9901/tsfile/live/1079_1.m3u8"]},
{"name":"凤凰资讯","urls":["http://59.44.10.113:9901/tsfile/live/1078_1.m3u8"]},
{"name":"凤凰香港","urls":["http://59.44.10.113:9901/tsfile/live/1080_1.m3u8"]},
{"name":"CCTV1","urls":["http://59.44.10.113:9901/tsfile/live/1018_1.m3u8"]},
{"name":"CCTV2","urls":["http://59.44.10.113:9901/tsfile/live/1001_1.m3u8"]},
{"name":"CCTV3","urls":["http://59.44.10.113:9901/tsfile/live/1050_1.m3u8"]},
{"name":"CCTV4","urls":["http://59.44.10.113:9901/tsfile/live/1045_1.m3u8"]},
{"name":"CCTV5","urls":["http://59.44.10.113:9901/tsfile/live/1051_1.m3u8"]},
{"name":"CCTV6","urls":["http://59.44.10.113:9901/tsfile/live/1052_1.m3u8"]},
{"name":"CCTV7","urls":["http://59.44.10.113:9901/tsfile/live/1070_1.m3u8"]},
{"name":"CCTV8","urls":["http://59.44.10.113:9901/tsfile/live/1053_1.m3u8"]},
{"name":"CCTV9","urls":["http://59.44.10.113:9901/tsfile/live/1002_1.m3u8"]},
{"name":"CCTV10","urls":["http://59.44.10.113:9901/tsfile/live/1004_1.m3u8"]},
{"name":"CCTV11","urls":["http://59.44.10.113:9901/tsfile/live/1043_1.m3u8"]},
{"name":"CCTV12","urls":["http://59.44.10.113:9901/tsfile/live/1007_1.m3u8"]},
{"name":"CCTV13","urls":["http://59.44.10.113:9901/tsfile/live/1083_1.m3u8"]},
{"name":"CCTV14","urls":["http://59.44.10.113:9901/tsfile/live/1008_1.m3u8"]},
{"name":"CCTV15","urls":["http://59.44.10.113:9901/tsfile/live/1044_1.m3u8"]},
{"name":"CCTV17","urls":["http://59.44.10.113:9901/tsfile/live/1000_1.m3u8"]},
{"name":"CCTV5+","urls":["http://59.44.10.113:9901/tsfile/live/1038_1.m3u8"]},
{"name":"安徽卫视","urls":["http://59.44.10.113:9901/tsfile/live/1057_1.m3u8"]},
{"name":"北京卫视","urls":["http://59.44.10.113:9901/tsfile/live/1012_1.m3u8"]},
{"name":"东方卫视","urls":["http://59.44.10.113:9901/tsfile/live/1055_1.m3u8"]},
{"name":"动漫秀场","urls":["http://59.44.10.113:9901/tsfile/live/1086_1.m3u8"]},
{"name":"广东卫视","urls":["http://59.44.10.113:9901/tsfile/live/1022_1.m3u8"]},
{"name":"贵州卫视","urls":["http://59.44.10.113:9901/tsfile/live/1065_1.m3u8"]},
{"name":"河北卫视","urls":["http://59.44.10.113:9901/tsfile/live/1058_1.m3u8"]},
{"name":"黑龙江卫视","urls":["http://59.44.10.113:9901/tsfile/live/1013_1.m3u8"]},
{"name":"湖北卫视","urls":["http://59.44.10.113:9901/tsfile/live/1040_1.m3u8"]},
{"name":"湖南卫视","urls":["http://59.44.10.113:9901/tsfile/live/1059_1.m3u8"]},
{"name":"湖南卫视","urls":["http://59.44.10.113:9901/tsfile/live/1106_1.m3u8"]},
{"name":"吉林卫视","urls":["http://59.44.10.113:9901/tsfile/live/1060_1.m3u8"]},
{"name":"江苏卫视","urls":["http://59.44.10.113:9901/tsfile/live/1010_1.m3u8"]},
{"name":"江西卫视","urls":["http://59.44.10.113:9901/tsfile/live/1056_1.m3u8"]},
{"name":"金鹰卡通","urls":["http://59.44.10.113:9901/tsfile/live/1063_1.m3u8"]},
{"name":"辽宁卫视","urls":["http://59.44.10.113:9901/tsfile/live/1061_1.m3u8"]},
{"name":"山东卫视","urls":["http://59.44.10.113:9901/tsfile/live/1039_1.m3u8"]},
{"name":"深圳卫视","urls":["http://59.44.10.113:9901/tsfile/live/1023_1.m3u8"]},
{"name":"四川卫视","urls":["http://59.44.10.113:9901/tsfile/live/1067_1.m3u8"]},
{"name":"天津卫视","urls":["http://59.44.10.113:9901/tsfile/live/1011_1.m3u8"]},
{"name":"浙江卫视","urls":["http://59.44.10.113:9901/tsfile/live/1021_1.m3u8"]},
{"name":"重庆卫视","urls":["http://59.44.10.113:9901/tsfile/live/1020_1.m3u8"]}
]},
{"group": "临时源一","channels": [{"name":"凤凰中文","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227222/index.m3u8?servicetype=1"]},
{"name":"凤凰资讯","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227226/index.m3u8?servicetype=1"]},
{"name":"中国天气","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227210/index.m3u8?servicetype=1"]},
{"name":"CCTV1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225829/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227014/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226995/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226908/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225922/index.m3u8?servicetype=1"]},
{"name":"CCTV2","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226795/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225800/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225923/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226915/index.m3u8?servicetype=1"]},
{"name":"CCTV3","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227055/index.m3u8?servicetype=1"]},
{"name":"CCTV4","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225802/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226968/index.m3u8?servicetype=1"]},
{"name":"CCTV5","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227170/index.m3u8?servicetype=1"]},
{"name":"CCTV5+","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225821/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225939/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226919/index.m3u8?servicetype=1"]},
{"name":"CCTV6","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227137/index.m3u8?servicetype=1"]},
{"name":"CCTV7","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225805/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225927/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226972/index.m3u8?servicetype=1"]},
{"name":"CCTV8","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227174/index.m3u8?servicetype=1"]},
{"name":"CCTV9","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225820/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225929/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226923/index.m3u8?servicetype=1"]},
{"name":"CCTV10","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225814/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226976/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225931/index.m3u8?servicetype=1"]},
{"name":"CCTV11","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225815/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226927/index.m3u8?servicetype=1"]},
{"name":"CCTV12","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225816/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225932/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226931/index.m3u8?servicetype=1"]},
{"name":"CCTV13","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225817/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226985/index.m3u8?servicetype=1"]},
{"name":"CCTV14","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225819/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227086/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225933/index.m3u8?servicetype=1"]},
{"name":"CCTV15","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225818/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226989/index.m3u8?servicetype=1"]},
{"name":"CCTV16","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227148/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227125/index.m3u8?servicetype=1"]},
{"name":"CCTV17","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226990/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226986/index.m3u8?servicetype=1"]},
{"name":"中国教育1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227067/index.m3u8?servicetype=1"]},
{"name":"湖南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225827/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226924/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227232/index.m3u8?servicetype=1"]},
{"name":"东南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227156/index.m3u8?servicetype=1"]},
{"name":"海峡卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227198/index.m3u8?servicetype=1"]},
{"name":"深圳卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225848/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225938/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227242/index.m3u8?servicetype=1"]},
{"name":"东方卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225828/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226560/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227040/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227059/index.m3u8?servicetype=1"]},
{"name":"云南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227181/index.m3u8?servicetype=1"]},
{"name":"北京卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225826/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225937/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227246/index.m3u8?servicetype=1"]},
{"name":"吉林卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227099/index.m3u8?servicetype=1"]},
{"name":"四川卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227182/index.m3u8?servicetype=1"]},
{"name":"天津卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225830/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225941/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227205/index.m3u8?servicetype=1"]},
{"name":"安徽卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225844/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227178/index.m3u8?servicetype=1"]},
{"name":"山东卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225843/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226928/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227236/index.m3u8?servicetype=1"]},
{"name":"广东卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225824/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226895/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227164/index.m3u8?servicetype=1"]},
{"name":"广西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227250/index.m3u8?servicetype=1"]},
{"name":"江苏卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225847/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227160/index.m3u8?servicetype=1"]},
{"name":"江西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225834/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227022/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227209/index.m3u8?servicetype=1"]},
{"name":"河北卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227063/index.m3u8?servicetype=1"]},
{"name":"河南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227095/index.m3u8?servicetype=1"]},
{"name":"浙江卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225825/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225934/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227193/index.m3u8?servicetype=1"]},
{"name":"海南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227216/index.m3u8?servicetype=1"]},
{"name":"湖北卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225840/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226863/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227111/index.m3u8?servicetype=1"]},
{"name":"甘肃卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227262/index.m3u8?servicetype=1"]},
{"name":"贵州卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226827/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227201/index.m3u8?servicetype=1"]},
{"name":"辽宁卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225832/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227141/index.m3u8?servicetype=1"]},
{"name":"重庆卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225831/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225949/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227240/index.m3u8?servicetype=1"]},
{"name":"黑龙江卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225862/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225940/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227197/index.m3u8?servicetype=1"]},
{"name":"厦门卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226781/index.m3u8?servicetype=1"]},
{"name":"厦门1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227185/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226814/index.m3u8?servicetype=1"]},
{"name":"厦门2","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226777/index.m3u8?servicetype=1"]},
{"name":"厦门3","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226760/index.m3u8?servicetype=1"]},
{"name":"福建乡村振兴公共","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227153/index.m3u8?servicetype=1"]},
{"name":"福建少儿","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227194/index.m3u8?servicetype=1"]},
{"name":"福建教育","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227202/index.m3u8?servicetype=1"]},
{"name":"福建文体","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227188/index.m3u8?servicetype=1"]},
{"name":"福建新闻","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227180/index.m3u8?servicetype=1"]},
{"name":"福建旅游","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227190/index.m3u8?servicetype=1"]},
{"name":"福建电视剧","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227079/index.m3u8?servicetype=1"]},
{"name":"福建经济","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227184/index.m3u8?servicetype=1"]},
{"name":"福建综合","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227149/index.m3u8?servicetype=1"]},
{"name":"南平1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227066/index.m3u8?servicetype=1"]},
{"name":"南平2","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226956/index.m3u8?servicetype=1"]},
{"name":"宁德1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227196/index.m3u8?servicetype=1"]},