-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathm3.json
More file actions
2401 lines (2393 loc) · 305 KB
/
Copy pathm3.json
File metadata and controls
2401 lines (2393 loc) · 305 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://yangyang1975.coding.net/p/free/d/mao/git/raw/master/spider5.jar",
"spider":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/spriederdd.jar",
//"spider":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/customspider.jar",
//"spider":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/customspider2.jar",
"sites": [
{
"key": "push_agent",
"name": "推送",
"type": 3,
"api": "csp_Ali",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "精工厂",
"name": "精工厂",
"type": 0,
"api": "https://jgczyapi.com/home/cjapi/kld2/mc/vod/xml",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "csp_xpath_xxj",
"name": "新香蕉(XP)",
"type": 3,
"api": "csp_XPathMacFilter",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/2024xxj.json"
},
{
"key": "91md",
"name": "91md",
"type": 1,
"api": "https://91md.me/api.php/provide/vod/from/mdm3u8/",
"tag": "qb,tj,rm",
"categories": []
},{
"key": "影库资源",
"name": "影库资源",
"type": 1,
"api": "https://api.ykapi.net/api.php/provide/vod/from/ykm3u8/",
"tag": "qb,tj",
"categories": []
},
{
"key": "速播",
"name": "速播",
"type": 1,
"api": "https://api.suboapi.com/api.php/provide/vod/",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "美少女",
"name": "美少女",
"type": 0,
"api": "https://www.msnii.com/api/xml.php",
"searchable": 1,
"quickSearch": 1,
"filterable": 1
},
{
"key": "饮水机2",
"name": "饮水机",
"type": 0,
"api": "https://www.xrbsp.com/api/xml.php",
"searchable": 1,
"quickSearch": 1,
"filterable": 1
},
{
"key": "老鸭1",
"name": "老鸭1",
"type": 1,
"api": "https://api.apilyzy.com/api.php/provide/vod/?ac=list",
"playUrl": "json:https://player.77lehuo.com/aliplayer/?url=",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "老鸭2",
"name": "老鸭2",
"type": 1,
"api": "https://lbapi9.com/api.php/provide/vod/",
"playUrl": "json:https://player.77lehuo.com/aliplayer/?url=",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "葡萄",
"name": "葡萄",
"type": 1,
"api": "https://api.putaozy.net/inc/apijson_vod.php",
"searchable": 0,
"quickSearch": 0,
"filterable": 0
},
{
"key": "奶插",
"name": "奶插",
"type": 1,
"api": "https://caiji.naichaapi.com/inc/apijson_vod.php",
"searchable": 1,
"quickSearch": 1,
"filterable": 1
},
{
"key": "点点",
"name": "点点",
"type": 0,
"api": "https://xx55zyapi.com/home/cjapi/ascf/mc/vod/xml",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "小姐1",
"name": "小姐姐",
"type": 0,
"api": "https://xjjzyapi.com/home/cjapi/askl/mc/vod/xml/m3u8",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "屌丝",
"name": "屌丝",
"type": 0,
"api": "https://sdszyapi.com/home/cjapi/asbb/sea/vod/xml",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "色窝",
"name": "色窝",
"type": 1,
"api": "https://sewozyapi.com/api.php/provide/vod/",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "佳丽",
"name": "佳丽",
"type": 1,
"api": "http://www.jializyzapi.com/api.php/provide/vod/",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "小湿妹",
"name": "小湿妹",
"type": 0,
"api": "https://www.afasu.com/api/xml.php",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "香奶儿",
"name": "香奶儿",
"type": 0,
"api": "https://www.gdlsp.com/api/xml.php",
"searchable": 1,
"quickSearch": 1,
"filterable": 1
},
{
"key": "鲍鱼",
"name": "鲍鱼",
"type": 0,
"api": "http://caiji26.com/home/cjapi/p0g8/mc/vod/xml",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "咪咪",
"name": "咪咪",
"type": 0,
"api": "http://www.caiji25.com/home/cjapi/p0as/mc/vod/xml",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "青青草",
"name": "青青草",
"type": 0,
"api": "https://www.caiji05.com/home/cjapi/cfda/mc/vod/xml",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "酷伦",
"name": "酷伦",
"type": 1,
"api": "https://api.kudian70.com/api.php/provide/vod/",
"playUrl": "https://jx.kujiexi.net/m3u8.php?url=",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "环亚",
"name": "环亚",
"type": 0,
"api": "http://wmcj8.com/inc/sapi.php",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "花椒",
"name": "花椒",
"type": 1,
"api": "https://apihjzy.com/api.php/provide/vod/",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "523",
"name": "523",
"type": 0,
"api": "https://caiji.523zyw.com/inc/seacmsapi.php",
"playUrl": "https://api.523zyw.com/?url=",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "探探",
"name": "探探",
"type": 1,
"api": "https://apittzy.com/api.php/provide/vod/?ac=list",
"playUrl": "https://jiexi.ttbfp1.com/m3u8/?url=",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "zmcj88",
"name": "字幕网资源",
"type": 0,
"api": "http://zmcj88.com/sapi?ac=videolist",
"searchable": 1,
"quickSearch": 1,
"filterable": 1
},
{
"key": "乐鱼",
"name": "乐鱼",
"type": 0,
"api": "https://www.leyuzyapi.com/inc/zyapimac.php",
"playUrl": "https://player.leyuzy.net/?url=",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "酷豆",
"name": "酷豆",
"type": 1,
"api": "https://api.kdapi.info/api.php/provide/vod/",
"playUrl": "https://jx.kubohk.com/jx/?url=",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "大MM",
"name": "大MM",
"type": 0,
"api": "https://www.dmmapi.com/home/cjapi/asd2c7/mc/vod/xml",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "白嫖",
"name": "白嫖",
"type": 0,
"api": "https://www.kxgav.com/api/xml.php",
"searchable": 1,
"quickSearch": 1,
"filterable": 1
},
{
"key": "9号资源",
"name": "9号资源",
"type": 0,
"api": "http://fhapi9.com/api.php/provide/vod/at/xml/",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "名优馆",
"name": "名优馆",
"type": 0,
"api": "http://mygzycj.com/sapi.php?ac=videolist",
"playUrl": "",
"categories": []
},
{
"key": "4000",
"name": "4000",
"type": 0,
"api": "http://4000zy.com/inc/api.php",
"playUrl": "",
"categories": []
},
{
"key": "哥哥妹妹",
"name": "哥哥妹妹",
"type": 0,
"api": "http://www.ggmmzy.com:9999/inc/xml",
"searchable": 0,
"quickSearch": 0,
"filterable": 0
},
{
"key": "*99资源",
"name": "*99资源",
"type": 1,
"api": "http://99zy.pw/api.php/provide/vod/"
},
{
"key": "*速度资源",
"name": "*速度资源",
"type": 0,
"api": "http://www.ggmmzy.com:9999/inc/xml"
},
{
"key": "*水蜜桃",
"name": "*水蜜桃",
"type": 1,
"api": "http://51smt4.xyz/api.php/provide/vod/"
},
{
"key": "*1024资源",
"name": "*1024资源",
"type": 0,
"api": "https://www.1024nf.com/api.php/provide/vod/at/xml"
},
{
"key": "*玖玖资源",
"name": "*玖玖资源",
"type": 0,
"api": "http://99zywcj.com/inc/sapi.php?ac=videolist"
},
{
"key": "*大地资源",
"name": "*大地资源",
"type": 0,
"api": "https://dadiapi.com/api.php/"
},
{
"key": "*乐播",
"name": "*乐播",
"type": 0,
"api": "https://lbapi9.com/api.php/provide/vod/at/xml"
},
{
"key": "*狼少年",
"name": "*狼少年",
"type": 0,
"api": "http://cjmygzy.com/inc/sapi.php?ac=videolist"
},
{
"key": "*富二代资源",
"name": "*富二代资源",
"type": 0,
"api": "http://f2dcj6.com/sapi/?ac=videolist"
},
{
"key": "*S猫资源",
"name": "*S猫资源",
"type": 0,
"api": "https://api.maozyapi.com/inc/api.php"
},
{
"key": "*九九资源吧",
"name": "*九九资源吧",
"type": 0,
"api": "http://99zyba.com/api.php/provide/vod/at/xml"
},
{
"key": "*速播资源",
"name": "*速播资源",
"type": 1,
"api": "http://api.suboapi.com/api.php/provide/vod/"
},
{
"key": "*抖阴视频",
"name": "*抖阴视频",
"type": 1,
"api": "https://www.888dav.com/api.php/provide/vod/"
},
{ "key": "AVZY",
"name": "AVZY",
"type": 1,
"api": "http://m.7777688.com/inc/apijson.php",
"searchable": 0,
"quickSearch": 0,
"filterable": 0
},
{"key":"*523资源","name":"*523资源","type":1,"api":"https://caiji.523zyw.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
{"key":"*丝袜资源","name":"*丝袜资源","type":1,"api":"https://siwazyw.cc/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*芒果资源","name":"*芒果资源","type":1,"api":"https://mgzyz1.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*乐鱼资源","name":"*乐鱼资源","type":1,"api":"https://www.leyuzyapi.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
{"key":"*水蜜桃","name":"*水蜜桃","type":1,"api":"http://51smt4.xyz/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*秀色资源","name":"*秀色资源","type":1,"api":"https://api.xiuseapi.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*探探资源","name":"*探探资源","type":1,"api":"https://apittzy.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*色猫资源","name":"*色猫资源","type":1,"api":"https://api.maozyapi.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
{"key":"*草莓资源","name":"*草莓资源","type":1,"api":"https://caiji.caomeiapi.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
{"key":"*爱看资源","name":"*爱看资源","type":1,"api":"http://www.aikanzyz9.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
{"key":"*花魁资源","name":"*花魁资源","type":1,"api":"https://caiji.huakuiapi.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
{"key":"*葡萄资源","name":"*葡萄资源","type":1,"api":"https://api.putaozy.net/inc/apijson_vod.php","searchable":0,"quickSearch":0},
{"key":"*色窝资源","name":"*色窝资源","type":1,"api":"https://sewozyapi.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*淫窝资源","name":"*淫窝资源","type":1,"api":"https://api.yinwoapi.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*4000资源","name":"*4000资源","type":1,"api":"https://www.4000zy.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
{"key":"*大雕资源","name":"*大雕资源","type":1,"api":"http://www.caobi209.vip/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*色屌丝资源","name":"*色屌丝资源","type":0,"api":"http://sdszyapi.com/home/cjapi/asbb/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*小姐姐资源","name":"*小姐姐资源","type":0,"api":"https://xjjzyapi.com/home/cjapi/askl/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*52AVAV","name":"*52AVAV","type":0,"api":"https://52zyapi.com/home/cjapi/asda/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*水帘洞资源","name":"*水帘洞资源","type":1,"api":"https://www.sldcaiji.com/home/cjapi/s6da/mc10/vod/json","searchable":0,"quickSearch":0},
{"key":"*我要啪啪","name":"*我要啪啪","type":0,"api":"http://www.caiji21.com/home/cjapi/klkl/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*AV集中淫","name":"*AV集中淫","type":0,"api":"https://www.caiji22.com/home/cjapi/klp0/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*夜夜撸资源","name":"*夜夜撸资源","type":0,"api":"https://www.caiji23.com/home/cjapi/kls6/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*大屌丝资源","name":"*大屌丝资源","type":0,"api":"http://www.caiji24.com/home/cjapi/p0d2/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*咪咪资源","name":"*咪咪资源","type":0,"api":"http://www.caiji25.com/home/cjapi/p0as/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*鲍鱼AV","name":"*鲍鱼AV","type":0,"api":"http://caiji26.com/home/cjapi/p0g8/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*精工厂资源","name":"*精工厂资源","type":0,"api":"https://jgczyapi.com/home/cjapi/kld2/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*点点娱乐","name":"*点点娱乐","type":0,"api":"https://xx55zyapi.com/home/cjapi/ascf/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*淫人妻资源","name":"*淫人妻资源","type":1,"api":"http://www.yrqcaiji.com/home/cjapi/s6c7/mc10/vod/json","searchable":0,"quickSearch":0},
{"key":"*小处女资源","name":"*小处女资源","type":1,"api":"http://xcncaiji.com/home/cjapi/s6bb/mc10/vod/json","searchable":0,"quickSearch":0},
{"key":"*大MM资源","name":"*大MM资源","type":0,"api":"https://www.dmmapi.com/home/cjapi/asd2c7/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*黄瓜TV资源","name":"*黄瓜TV资源","type":0,"api":"https://www.caiji10.com/home/cjapi/cfs6/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*快播盒子资源","name":"*快播盒子资源","type":0,"api":"https://www.caiji09.com/home/cjapi/cfp0/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*大香蕉资源","name":"*大香蕉资源","type":0,"api":"https://www.caiji08.com/home/cjapi/cfkl/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*日本AV在线","name":"*日本AV在线","type":0,"api":"https://www.caiji07.com/home/cjapi/cfcf/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*久久热在线","name":"*久久热在线","type":0,"api":"https://www.caiji06.com/home/cjapi/cfbb/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*青青草视频","name":"*青青草视频","type":0,"api":"https://www.caiji05.com/home/cjapi/cfda/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*麻豆视频","name":"*麻豆视频","type":0,"api":"https://www.caiji04.com/home/cjapi/cfc7/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*一本道资源","name":"*一本道资源","type":0,"api":"https://www.caiji03.com/home/cjapi/cfg8/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*草榴视频","name":"*草榴视频","type":0,"api":"https://www.caiji02.com/home/cjapi/cfas/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*亚洲成人在线","name":"*亚洲成人在线","type":0,"api":"https://www.caiji01.com/home/cjapi/cfd2/mc10/vod/xml","searchable":0,"quickSearch":0},
{"key":"*天噜啦资源","name":"*天噜啦资源","type":0,"api":"http://www.987caiji.com/api/max.php","searchable":0,"quickSearch":0},
{"key":"*99资源","name":"*99资源","type":1,"api":"http://99zy.pw/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*010爱资源","name":"*010爱资源","type":0,"api":"http://www.010aizy.com/API/macs.php","searchable":0,"quickSearch":0},
{"key":"*痴汉队长","name":"*痴汉队长","type":1,"api":"https://javcaptain.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*抖阴视频","name":"*抖阴视频","type":1,"api":"https://www.888dav.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*麻豆视频2","name":"*麻豆视频2","type":1,"api":"https://madouse.la/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*91麻豆","name":"*91麻豆","type":1,"api":"https://91md.me/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*99资源吧","name":"*99资源吧","type":1,"api":"http://99zyba.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*爱操资源","name":"*爱操资源","type":1,"api":"https://aicaozy.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*浪潮资源","name":"*浪潮资源","type":1,"api":"http://langchaozy6.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*速播资源","name":"*速播资源","type":1,"api":"https://api.suboapi.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*酷豆资源","name":"*酷豆资源","type":1,"api":"https://kudouzy.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*酷豆2","name":"*酷豆2","type":1,"api":"https://api.kdapi.info/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*酷伦理","name":"*酷伦理","type":1,"api":"https://api.kudian70.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*影库资源","name":"*影库资源","type":1,"api":"https://api.ykapi.net/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*万影色","name":"*万影色","type":1,"api":"https://wanying4.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*银龙资源","name":"*银龙资源","type":1,"api":"https://yinlong.tv/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*奶茶资源","name":"*奶茶资源","type":1,"api":"https://caiji.naichaapi.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
{"key":"*爱播资源","name":"*爱播资源","type":1,"api":"https://cj.apiabzy.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*美少女资源","name":"*美少女资源","type":0,"api":"https://www.msnii.com/api/xml.php","searchable":0,"quickSearch":0},
{"key":"*淫水机资源","name":"*淫水机资源","type":0,"api":"https://www.xrbsp.com/api/xml.php","searchable":0,"quickSearch":0},
{"key":"*香奶儿资源","name":"*香奶儿资源","type":0,"api":"https://www.gdlsp.com/api/xml.php","searchable":0,"quickSearch":0},
{"key":"*白嫖资源","name":"*白嫖资源","type":0,"api":"https://www.kxgav.com/api/xml.php","searchable":0,"quickSearch":0},
{"key":"*小湿妹资源","name":"*小湿妹资源","type":0,"api":"https://www.afasu.com/api/xml.php","searchable":0,"quickSearch":0},
{"key":"*黄AV资源","name":"*黄AV资源","type":1,"api":"https://www.pgxdy.com/api/json.php","searchable":0,"quickSearch":0},
{"key":"*大地资源","name":"*大地资源","type":0,"api":"https://dadiapi.com/api.php","searchable":0,"quickSearch":0},
{"key":"*CK资源","name":"*CK资源","type":1,"api":"http://www.feifei67.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*老鸭资源","name":"*老鸭资源","type":1,"api":"https://api.apilyzy.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*花椒资源","name":"*花椒资源","type":1,"api":"https://apihjzy.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*辣椒资源","name":"*辣椒资源","type":1,"api":"https://apilj.com/api.php/provide/vod/at/json/","searchable":0,"quickSearch":0},
{"key":"*乐播资源","name":"*乐播资源","type":1,"api":"https://lbapi9.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*博天堂","name":"*博天堂","type":0,"api":"http://bttcj.com/inc/sapi.php","searchable":0,"quickSearch":0},
{"key":"*环亚资源","name":"*环亚资源","type":0,"api":"http://wmcj8.com/inc/sapi.php","searchable":0,"quickSearch":0},
{"key":"*JAV名优馆","name":"*JAV名优馆","type":0,"api":"http://mygzycj.com/api.php?ac=videolist","searchable":0,"quickSearch":0},
{"key":"*AVZY6888资源","name":"*AVZY6888资源","type":1,"api":"http://m.7777688.com/inc/apijson.php","searchable":0,"quickSearch":0},
{"key":"*色色资源","name":"*色色资源","type":0,"api":"http://secj8.com/inc/sapi.php?ac=videolist","searchable":0,"quickSearch":0},
{"key":"*玖玖资源","name":"*玖玖资源","type":0,"api":"http://99zywcj.com/inc/sapi.php?ac=videolist","searchable":0,"quickSearch":0},
{"key":"*久草资源","name":"*久草资源","type":0,"api":"http://jcspcj8.com/api?ac=videolist","searchable":0,"quickSearch":0},
{"key":"*狼少年","name":"*狼少年","type":0,"api":"http://cjmygzy.com/inc/sapi.php?ac=videolist","searchable":0,"quickSearch":0},
{"key":"*富二代资源","name":"*富二代资源","type":0,"api":"http://f2dcj6.com/sapi?ac=videolist","searchable":0,"quickSearch":0},
{"key":"*字幕网","name":"*字幕网","type":0,"api":"http://zmcj88.com/sapi?ac=videolist","searchable":0,"quickSearch":0},
{"key":"*利来资源","name":"*利来资源","type":0,"api":"http://llzxcj.com/inc/sck.php?ac=videolist","searchable":0,"quickSearch":0},
{"key":"*佳丽资源","name":"*佳丽资源","type":1,"api":"http://www.jializyzapi.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*番号资源","name":"*番号资源","type":1,"api":"http://fhapi9.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*鲨鱼资源","name":"*鲨鱼资源","type":1,"api":"https://shayuapi.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"*速度资源","name":"*速度资源","type":0,"api":"http://www.ggmmzy.com:9999/inc/xml","searchable":0,"quickSearch":0},
{"key":"*KK写真资源","name":"*KK写真资源","type":1,"api":"https://kkzy.me/api.php/provide/vod/","searchable":0,"quickSearch":0},
{"key":"push_agent","name":"推送","type":3,"api":"csp_PushAgent","searchable":0,"quickSearch":0,"filterable":0}
],
"lives": [ {
"group": "CCTV",
"channels": [{
"name": "CCTV-1",
"urls": [
"http://39.134.66.110/PLTV/88888888/224/3221225816/index.m3u8",
"http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225918/index.m3u8",
"http://117.148.179.160/PLTV/88888888/224/3221231468/index.m3u8", "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"
]
}, {
"name": "CCTV-2",
"urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225619/index.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://111.13.42.43/PLTV/88888888/224/3221226230/1.m3u8"]
}, {
"name": "CCTV-3","urls": ["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226021/index.m3u8", "http://111.63.117.13:6060/030000001000/CCTV-3/CCTV-3.m3u8"]},
{"name": "CCTV-4","urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225621/index.m3u8"]},
{"name": "CCTV-5","urls": ["http://111.63.117.13:6060/030000001000/CCTV-5/CCTV-5.m3u8", "http://39.134.66.110/PLTV/88888888/224/3221225818/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231702/index.m3u8"]},
{"name": "CCTV-5+","urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225649/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225761/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231459/index.m3u8"]},
{"name": "CCTV-6","urls": ["http://117.148.179.153/PLTV/88888888/224/3221231724/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221226027/index.m3u8"]},
{"name": "CCTV-7","urls": ["http://39.135.138.60:18890/PLTV/88888910/224/3221225624/index.m3u8", "http://39.134.66.110/PLTV/88888888/224/3221225671/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231633/index.m3u8" ]},
{"name": "CCTV-8","urls": ["http://39.134.24.24/PLTV/88888888/224/3221226029/index.m3u8", "http://117.148.179.55/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230737/index.m3u8"]},
{"name":"CCTV-9","urls":["http://39.134.115.163:8080/PLTV/88888910/224/3221225626/index.m3u8","http://117.148.179.162/PLTV/88888888/224/3221231697/index.m3u8","http://39.134.66.110/PLTV/88888888/224/3221225676/index.m3u8"]},
{"name": "CCTV-10","urls": ["http://39.134.66.110/PLTV/88888888/224/3221225677/index.m3u8"]},
{"name": "CCTV-11","urls": ["http://117.148.179.164/PLTV/88888888/224/3221231711/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225597/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225869/1.m3u8"]},
{"name": "CCTV-12","urls": ["http://117.148.179.150/PLTV/88888888/224/3221231660/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225669/index.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226228/1.m3u8"]},
{"name": "CCTV-13","urls": ["rtsp://183.252.176.54:554/PLTV/88888888/224/3221226104/10000100000000060000000002298296_0.smil","http://39.135.138.60:18890/PLTV/88888910/224/3221225638/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225638/index.m3u8", "http://111.13.42.8/PLTV/88888888/224/3221226568/1.m3u8"]},
{"name": "CCTV-14","urls": ["http://117.148.179.182/PLTV/88888888/224/3221231648/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225857/index.m3u8"]},
{"name": "CCTV-15","urls": ["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225601/index.m3u8"]},
{"name": "CCTV-16","urls": ["http://liveop.cctv.cn/hls/CCTV16HD/playlist.m3u8"]},
{"name": "CCTV-17","urls": ["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225765/index.m3u8","http://39.134.66.110/PLTV/88888888/224/3221225708/index.m3u8"]}]},
{"group": "卫视","channels": [
{"name": "湖南卫视","urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225745/index.m3u8","http://39.134.66.2/PLTV/88888888/224/3221225506/index.m3u8"]},
{"name": "东南卫视","urls": ["http://39.135.55.105:6610/PLTV/88888888/224/3221227156/index.m3u8?servicetype=1"]},
{"name":"海峡卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227198/index.m3u8?servicetype=1"]},
{"name":"深圳卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225848/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227242/index.m3u8?servicetype=1"]},
{"name":"广东卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225824/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227164/index.m3u8?servicetype=1"]},
{"name":"广东南方卫视上星","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227214/index.m3u8?servicetype=1"]},
{"name":"江苏卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225847/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227160/index.m3u8?servicetype=1"]},
{"name":"东方卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225828/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226560/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226603/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227059/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226895/index.m3u8?servicetype=1"]},
{"name":"云南卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227181/index.m3u8?servicetype=1"]},
{"name":"北京卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225826/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225937/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227246/index.m3u8?servicetype=1"]},
{"name":"厦门卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226781/index.m3u8?servicetype=1"]},
{"name":"吉林卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227099/index.m3u8?servicetype=1"]},
{"name":"四川卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227182/index.m3u8?servicetype=1"]},
{"name":"天津卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225830/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225941/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227205/index.m3u8?servicetype=1"]},
{"name":"安徽卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225844/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227178/index.m3u8?servicetype=1"]},
{"name":"山东卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225843/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226928/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227236/index.m3u8?servicetype=1"]},
{"name":"江西卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225834/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227022/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227209/index.m3u8?servicetype=1"]},
{"name":"河北卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227063/index.m3u8?servicetype=1"]},
{"name":"河南卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227095/index.m3u8?servicetype=1"]},
{"name":"浙江卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225825/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225870/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225934/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227193/index.m3u8?servicetype=1"]},
{"name":"海南卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227216/index.m3u8?servicetype=1"]},
{"name":"湖北卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225840/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226863/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227111/index.m3u8?servicetype=1"]},
{"name":"贵州卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226827/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227201/index.m3u8?servicetype=1"]},
{"name":"辽宁卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225832/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227141/index.m3u8?servicetype=1"]},
{"name":"重庆卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225831/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225949/index.m3u8?servicetype=1"]},
{"name":"重庆卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227240/index.m3u8?servicetype=1"]},
{"name":"黑龙江卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225862/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225940/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227197/index.m3u8?servicetype=1"]},
{"name":"上海纪实人文","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225946/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227213/index.m3u8?servicetype=1"]},
{"name":"北京冬奥纪实","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225944/index.m3u8?servicetype=1"]},
{"name":"江西陶瓷","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227234/index.m3u8?servicetype=1"]},
{"name":"湖南快乐垂钓","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226940/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227028/index.m3u8?servicetype=1"]},
{"name":"湖南金鹰纪实","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226937/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226975/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227018/index.m3u8?servicetype=1"]},
{"name":"熊猫频道","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226715/index.m3u8?servicetype=1"]},
{"name":"SiTV全纪实","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227083/index.m3u8?servicetype=1"]},
{"name":"SiTV动漫秀场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227071/index.m3u8?servicetype=1"]},
{"name":"SiTV极速汽车","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227186/index.m3u8?servicetype=1"]},
{"name":"SiTV欢笑剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227145/index.m3u8?servicetype=1"]},
{"name":"SiTV游戏风云","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227075/index.m3u8?servicetype=1"]},
{"name":"SiTV生活时尚","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227091/index.m3u8?servicetype=1"]},
{"name":"SiTV都市剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227204/index.m3u8?servicetype=1"]},
{"name":"NewTV中国功夫","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225896/index.m3u8?servicetype=1"]},
{"name":"NewTV军事评论","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225890/index.m3u8?servicetype=1"]},
{"name":"NewTV军旅剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225887/index.m3u8?servicetype=1"]},
{"name":"NewTV动作电影","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225879/index.m3u8?servicetype=1"]},
{"name":"NewTV古装剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225880/index.m3u8?servicetype=1"]},
{"name":"NewTV家庭剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225882/index.m3u8?servicetype=1"]},
{"name":"NewTV怡伴健康","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225883/index.m3u8?servicetype=1"]},
{"name":"NewTV惊悚悬疑","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225885/index.m3u8?servicetype=1"]},
{"name":"NewTV明星大片","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225893/index.m3u8?servicetype=1"]},
{"name":"NewTV武搏世界","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225895/index.m3u8?servicetype=1"]},
{"name":"NewTV潮妈辣婆","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226107/index.m3u8?servicetype=1"]},
{"name":"NewTV爱情喜剧","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225877/index.m3u8?servicetype=1"]},
{"name":"NewTV精品体育","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225886/index.m3u8?servicetype=1"]},
{"name":"NewTV精品大剧","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225889/index.m3u8?servicetype=1"]},
{"name":"NewTV精品纪录","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225888/index.m3u8?servicetype=1"]},
{"name":"NewTV金牌综艺","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225884/index.m3u8?servicetype=1"]},
{"name":"哒啵赛事","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225894/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226676/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226680/index.m3u8?servicetype=1"]},
{"name":"上海哈哈炫动","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225872/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227177/index.m3u8?servicetype=1"]},
{"name":"北京卡酷少儿","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225871/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226963/index.m3u8?servicetype=1"]},
{"name":"广东嘉佳卡通","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227230/index.m3u8?servicetype=1"]},
{"name":"江苏优漫卡通","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225874/index.m3u8?servicetype=1"]},
{"name":"湖南金鹰卡通","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226959/index.m3u8?servicetype=1"]},
{"name":"黑莓动画","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225878/index.m3u8?servicetype=1"]},
{"name":"黑莓电影","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225891/index.m3u8?servicetype=1"]},
{"name":"百视通剧集1","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226692/index.m3u8?servicetype=1"]},
{"name":"百视通剧集2","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226754/index.m3u8?servicetype=1"]},
{"name":"百视通剧集3","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227045/index.m3u8?servicetype=1"]},
{"name":"百视通剧集4","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227134/index.m3u8?servicetype=1"]},
{"name":"百视通动画1","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226732/index.m3u8?servicetype=1"]},
{"name":"百视通动画2","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226736/index.m3u8?servicetype=1"]},
{"name":"百视通动画3","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226741/index.m3u8?servicetype=1"]},
{"name":"百视通动画4","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226743/index.m3u8?servicetype=1"]},
{"name":"百视通动画5","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227036/index.m3u8?servicetype=1"]},
{"name":"百视通电影1","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226708/index.m3u8?servicetype=1"]},
{"name":"百视通电影2","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226712/index.m3u8?servicetype=1"]},
{"name":"百视通电影3","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227130/index.m3u8?servicetype=1"]},
{"name":"百视通电影4 8M720","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227037/index.m3u8?servicetype=1"]},
{"name":"百视通电竞","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227033/index.m3u8?servicetype=1"]}]},
{"group": "港澳","channels": [
{"name": "凤凰中文","urls": ["http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8", "rtmp://45.88.148.178/channel/60c2f331961593122ebaf8c7?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "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://zb.ios.ifeng.com/live/05QGDA0CIRK/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://playtv-live.ifeng.com:80/live/06OLEGEGM4G.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"]},
{"name": "凤凰资讯","urls": ["http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8", "rtmp://45.88.148.178/channel/60c2f46e961593122ebaf8cb?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "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"]},
{"name": "凤凰香港","urls": ["http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8", "rtmp://45.88.148.178/channel/60c2f428961593122ebaf8c9?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "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$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.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"]},
{"name": "凤凰电影台","urls": ["http://218.202.220.2:5000/nn_live.ts?id=NEWSASIA"]},
{"name": "翡翠台","urls": ["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=188&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=188&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=188&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&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=188&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&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=188&Fsv_rate_id=1&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1&lv=1&c=0&s=4&v=100&wh=16:9&p=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=188", "http://host496323.us.ooqr.com/pltv/gz.php?id=tvbfc"]},
{"name": "明珠台","urls": ["http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=12&FvSeid=1&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=12&Fsv_rate_id=2&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=.m3u8&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=12&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=12&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_chan_hls_se_idx=12&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=&Pcontent_id=.m3u8", "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=12&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1"]},
{"name": "TVB星河","urls": ["rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d7a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://50.7.161.82:8278/streams/d/Xinhe/./playlist.m3u8", "http://43.128.9.168/jjtv.php?id=4"]},
{"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://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"]},
{"name": "香港HKS","urls": ["http://zhibo.hkstv.tv/livestream/mutfysrq.flv","http://zhibo.hkstv.tv/livestream/mutfysrq/playlist.m3u8","http://zhibo.hkstv.tv/livestream/mutfysrq.flv","http://zhibo.hkstv.tv:80/livestream/mutfysrq"]},
{"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"]},
{name": "澳视澳门","urls": ["http://61.244.22.4/ch1/ch1.live/playelist.m3u8"]},
{"name": "澳门资讯","urls": ["http://61.244.22.5/ch5/info_ch5.live/master.m3u8","http://61.244.22.4/ch2/ch2.live/playelist.m3u8"]},
{"name": "民视","urls": ["rtmp://9wv7.mine.nu/sat/tv051","rtmp://45.92.126.226/channel/60c317bd961593122ebaf90a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","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", "rtmp://45.92.126.226/channel/60c317bd961593122ebaf90a", "http://50.7.61.148:30080/Entry/ftv", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv002", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv001"]},
{"name": "台视","urls": ["rtmp://59.124.75.138/sat/tv071","rtmp://9wv7.mine.nu/sat/tv071","rtmp://59.124.75.157/sat/tv071", "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://59.124.75.138/sat/tv091","rtmp://9wv7.mine.nu/sat/tv091","rtmp://59.124.75.157/sat/tv091","rtmp://45.92.126.114/channel/60c3166c961593122ebaf8fe?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","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://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv040"]},
{"name": "华视","urls": ["rtmp://59.124.75.157/sat/tv111","rtmp://9wv7.mine.nu/sat/tv111","rtmp://59.124.75.157/sat/tv111","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://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://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://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226463/index.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://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/index.m3u8", "http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/index.m3u8"]},
{"name": "CHC家庭影院","urls": ["http://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226462/index.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"]},
{"name": "卫视电影","urls": ["http://211.23.114.106:8553/http/116.50.42.19:8081/hls/62/804/ch07.m3u8","rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910cc6?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://50.7.61.147:30080/Entry/starmovie", "http://sytv.xtvants.fun/mytv.php?id=wsdy&token=free&user=free"]},
{"name": "美亚电影","urls": ["http://v3948069e.live.126.net/live/hodtv4003.flv","http://iptv5.phoves.com.cn/mytv/mitv.php?id=2"]},
{"name": "好莱坞","urls": ["http://211.23.114.106:8554/http/116.50.42.19:8081/hls/74/816/ch55.m3u8","rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910c92?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
{"name": "龙华洋片","urls": ["http://211.23.114.106:8556/http/116.50.42.19:8066/hls/210/10014/cstv14.m3u8","rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d40?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
{"name": "邵氏电影","urls": ["http://106.53.212.251/dl/tv.php?id=213"]},
{"name": "龙华电影","urls": ["rtmp://45.88.148.114/channel/60b4e50239e1b02e8b910d4c?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn03"]},
{"name": "东森电影","urls": ["http://host496323.us.ooqr.com/pltv/gz.php?id=dsdy","rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d8a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
{"name": "东森洋片","urls": ["http://host496323.us.ooqr.com/pltv/gz.php?id=dsyp","rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d8c?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]}]},
{"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://121.51.249.99/txdirect.hls.huya.com/src/1394575534-1394575534-5989656310331736064-2789274524-10057-A-0-1.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1199563481163-1199563481163-5444324506032144384-2399127085782-10057-A-0-1.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1199561277724-1199561277724-5434860807588413440-2399122678904-10057-A-0-1.m3u8", "http://121.51.249.99/txdirect.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"]},
{"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"]},
{"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"]},
{"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"]},
{"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://121.51.249.99/txdirect.hls.huya.com/src/1394565192-1394565192-5989611891779960832-2789253840-10057-A-0-1-imgplus.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1199561240999-1199561240999-5434703074914467840-2399122605454-10057-A-0-1.m3u8", "http://121.51.249.99/txdirect.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": "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"]}]},
{"group": "斗鱼","channels": [
{"name":"牛叔说电影","urls":["http://epg.112114.xyz/douyu/2758565"]},
{"name":"小片说电影","urls":["http://epg.112114.xyz/douyu/4258555"]},
{"name":"侃片大师兄","urls":["http://epg.112114.xyz/douyu/9338839"]},
{"name":"特辑影院","urls":["http://epg.112114.xyz/douyu/3637778"]},
{"name":"女神金","urls":["http://epg.112114.xyz/douyu/747764"]},
{"name":"周末恐怖","urls":["http://epg.112114.xyz/douyu/3637726"]},
{"name":"周末经典","urls":["http://epg.112114.xyz/douyu/3637765"]},
{"name":"林正英僵尸","urls":["http://epg.112114.xyz/douyu/218859"]},
{"name":"小鸽陪看","urls":["http://epg.112114.xyz/douyu/3928"]},
{"name":"欧美恐怖","urls":["http://epg.112114.xyz/douyu/96577"]},
{"name":"动漫","urls":["http://epg.112114.xyz/douyu/206858"]},
{"name":"恐怖电影","urls":["http://epg.112114.xyz/douyu/310926"]},
{"name":"香港赌片","urls":["http://epg.112114.xyz/douyu/315457"]},
{"name":"米娅陪看","urls":["http://epg.112114.xyz/douyu/6537888"]},
{"name":"黎黎来了","urls":["http://epg.112114.xyz/douyu/7116591"]},
{"name":"漫威科幻","urls":["http://epg.112114.xyz/douyu/6140589"]},
{"name":"欧美科幻","urls":["http://epg.112114.xyz/douyu/9651304"]},
{"name":"经典喜剧","urls":["http://epg.112114.xyz/douyu/9650887"]},
{"name":"国产大片","urls":["http://epg.112114.xyz/douyu/8986148"]},
{"name":"刘德华","urls":["http://epg.112114.xyz/douyu/2516864"]},
{"name":"神乐华语","urls":["http://epg.112114.xyz/douyu/85894"]},
{"name":"神乐经典","urls":["http://epg.112114.xyz/douyu/122402"]},
{"name":"神乐欧美","urls":["http://epg.112114.xyz/douyu/20415"]},
{"name":"神乐粤语","urls":["http://epg.112114.xyz/douyu/6566671"]},
{"name":"贝爷MAX","urls":["http://epg.112114.xyz/douyu/4332"]},
{"name":"贝爷影厅","urls":["http://epg.112114.xyz/douyu/252802","http://epg.112114.xyz/douyu/36337","http://epg.112114.xyz/douyu/925724"]}]},
{"group": "CCTV","channels": [{"name":"022/5/29更新接口--反馈蜗牛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://39.135.32.7:6610/000000001000/HD-4000k-1080P-cctv1/1.m3u8?IASHttpSessionId=OTT?zzhongd","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://39.135.138.58:18890/PLTV/88888888/224/3221225762/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221226221/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221226225/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225918/index.m3u8","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.135.32.7:6610/000000001000/HD-4000k-1080P-cctv2/1.m3u8?IASHttpSessionId=OTT?zzhongd","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://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.135.32.7:6610/000000001000/HD-4000k-1080P-cctv3/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.134.115.163:8080/PLTV/88888910/224/3221225647/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225634/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225647/index.m3u8","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.135.32.7:6610/000000001000/HD-8000k-1080P-cctv4/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225621/index.m3u8","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.135.32.7:6610/000000001000/HD-4000k-1080P-cctv5/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225633/index.m3u8","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.135.32.7:6610/000000001000/HD-4000k-1080P-cctv05plus/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225649/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225706/index.m3u8","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.135.32.7:6610/000000001000/HD-4000k-1080P-cctv6/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225632/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225650/index.m3u8","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.135.32.7:6610/000000001000/cctv-7/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225624/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225644/index.m3u8","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.135.32.7:6610/000000001000/HD-8000k-1080P-cctv8/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225631/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225635/index.m3u8","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.135.32.7:6610/000000001000/HD-4000k-1080P-cctv9/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225626/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225646/index.m3u8","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.135.32.7:6610/000000001000/cctv-10/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225627/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225636/index.m3u8","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.135.32.7:6610/000000001000/HD-8000k-1080P-cctv11/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225628/index.m3u8","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.135.32.7:6610/000000001000/cctv-12/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225629/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225637/index.m3u8","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.135.32.7:6610/000000001000/HD-8000k-1080P-cctv13/1.m3u8?IASHttpSessionId=OTT?zzhongd","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://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.135.32.7:6610/000000001000/cctv-14/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225639/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225640/index.m3u8","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.135.32.7:6610/000000001000/HD-8000k-1080P-cctv15/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225641/index.m3u8","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://39.135.32.7:6610/000000001000/HD-8000k-1080P-cctv16/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221226230/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221226233/index.m3u8","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.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.135.32.7:6610/000000001000/HD-4000k-1080P-cctv17/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225907/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225908/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225909/index.m3u8","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://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://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://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://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://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.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://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://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://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://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://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.25/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.25/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.25/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.25/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"]},