forked from li245089595/kid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path直播
9608 lines (9608 loc) · 382 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
[{
"name": "我的收藏",
"psw": "",
"data": []
}, {
"name": "超清电信",
"psw": "",
"data": [{
"num": 1,
"name": "CCTV1",
"source": ["http://124.90.32.171:6610/zjhs/2/10079/index.m3u8?virtualDomain=zjhs.live_hls.zte.com", "http://124.90.32.171:6610/zjhs/2/10078/index.m3u8?virtualDomain=zjhs.live_hls.zte.com&tid=OZV9KG9YBK9O3G1UHMX55U3PY59F&ts=1550812097"]
}, {
"num": 2,
"name": "CCTV2",
"source": ["http://124.90.32.171:6610/zjhs/2/10063/index.m3u8?virtualDomain=zjhs.live_hls.zte.com&tid=L42N74EM2FQWGMRWJR85CEBSEOKB&ts=1550812105"]
}, {
"num": 3,
"name": "CCTV3",
"source": ["http://124.90.32.171:6610/zjhs/2/10069/index.m3u8?virtualDomain=zjhs.live_hls.zte.com", "http://124.90.32.171:6610/zjhs/2/10068/index.m3u8?virtualDomain=zjhs.live_hls.zte.com"]
}, {
"num": 4,
"name": "CCTV4",
"source": ["http://124.90.32.171:6610/zjhs/2/10074/index.m3u8?virtualDomain=zjhs.live_hls.zte.com&tid=3WW0A2ARB28FJ15GXHVG5K8QTMSW&ts=1550812123"]
}, {
"num": 5,
"name": "CCTV5",
"source": ["http://124.90.32.171:6610/zjhs/2/10076/index.m3u8?virtualDomain=zjhs.live_hls.zte.com&tid=M4V6U9F1K5XEQB9LOQL180K3XC5C&ts=1550812131", "http://124.90.32.171:6610/zjhs/2/10075/index.m3u8?virtualDomain=zjhs.live_hls.zte.com"]
}, {
"num": 6,
"name": "CCTV6",
"source": ["http://124.90.32.171:6610/zjhs/2/10066/index.m3u8?virtualDomain=zjhs.live_hls.zte.com&tid=253O8VQGGOYH9ZPV1Q9HUOK0JWBM&ts=1550812138", "http://124.90.32.171:6610/zjhs/2/10065/index.m3u8?virtualDomain=zjhs.live_hls.zte.com"]
}, {
"num": 7,
"name": "CCTV7",
"source": ["http://124.90.32.171:6610/zjhs/2/10067/index.m3u8?virtualDomain=zjhs.live_hls.zte.com&tid=GFH0Y32BPS0G1PQCS8OPTZKNP3MY&ts=1550812148"]
}, {
"num": 8,
"name": "CCTV8",
"source": ["http://124.90.32.171:6610/zjhs/2/10062/index.m3u8?virtualDomain=zjhs.live_hls.zte.com&tid=HVT8F3KL0K503I0GFWI6FVK07KNA&ts=1550812157", "http://124.90.32.171:6610/zjhs/2/10061/index.m3u8?virtualDomain=zjhs.live_hls.zte.com"]
}, {
"num": 9,
"name": "CCTV9",
"source": ["http://124.90.32.171:6610/zjhs/2/10064/index.m3u8?virtualDomain=zjhs.live_hls.zte.com&tid=TWSQ59H5IDF0BYY0F60D6GMVWKLP&ts=1550812165"]
}, {
"num": 10,
"name": "CCTV10",
"source": ["http://124.90.32.171:6610/zjhs/2/10072/index.m3u8?virtualDomain=zjhs.live_hls.zte.com&tid=ZDTDWBR5I3CT26C2REYJQKDFO6CV&ts=1550812172"]
}, {
"num": 11,
"name": "CCTV11",
"source": ["http://124.90.32.171:6610/zjhs/2/10073/index.m3u8?virtualDomain=zjhs.live_hls.zte.com&tid=VKDZ83C0Q2MRF641VQ1WSJ0FJ7JN&ts=1550812179"]
}, {
"num": 12,
"name": "CCTV12",
"source": ["http://124.90.32.171:6610/zjhs/2/10071/index.m3u8?virtualDomain=zjhs.live_hls.zte.com&tid=LRSHACCIYKJD52VWGF8DUZVZWQPR&ts=1550812186"]
}, {
"num": 13,
"name": "CCTV13",
"source": ["http://124.90.32.171:6610/zjhs/2/10077/index.m3u8?virtualDomain=zjhs.live_hls.zte.com"]
}, {
"num": 14,
"name": "CCTV14",
"source": ["http://124.90.32.171:6610/zjhs/2/10070/index.m3u8?virtualDomain=zjhs.live_hls.zte.com&tid=DVY0PTM71L6PBXMHX1AWQ1L7NM2X&ts=1550812205"]
}, {
"num": 15,
"name": "CCTV15",
"source": ["http://124.90.32.171:6610/zjhs/2/10080/index.m3u8?virtualDomain=zjhs.live_hls.zte.com&tid=X69YMK6UYYQONUI1U0A63U6ZY6IH&ts=1550812212"]
}, {
"num": 16,
"name": "CETV1",
"source": ["http://124.90.32.171:6610/zjhs/2/10060/index.m3u8?virtualDomain=zjhs.live_hls.zte.com"]
}
]
}, {
"name": "广电国内",
"psw": "",
"data": [{
"num": 17,
"name": "TVB翡翠台",
"source": ["https://116.77.72.195/streams/d/fct/playlist.m3u8"]
}, {
"num": 18,
"name": "TVB明珠",
"source": ["https://116.77.72.195/streams/d/mzt/playlist.m3u8"]
}, {
"num": 19,
"name": "凤凰电影",
"source": ["https://116.77.72.195/streams/d/fhdy/playlist.m3u8"]
}, {
"num": 20,
"name": "凤凰资讯",
"source": ["https://116.77.72.195/streams/d/fhzx/playlist.m3u8"]
}, {
"num": 21,
"name": "CCTV-1",
"source": ["https://116.77.72.195/streams/d/cctv1a/playlist.m3u8"]
}, {
"num": 22,
"name": "CCTV-2",
"source": ["https://116.77.72.195/streams/d/cctv2/playlist.m3u8"]
}, {
"num": 23,
"name": "CCTV-3",
"source": ["https://116.77.72.195/streams/d/cctv3/playlist.m3u8"]
}, {
"num": 24,
"name": "CCTV-4(亚)",
"source": ["https://116.77.72.195/streams/d/cctv4/playlist.m3u8"]
}, {
"num": 25,
"name": "CCTV-5",
"source": ["https://116.77.72.195/streams/d/cctv5/playlist.m3u8"]
}, {
"num": 26,
"name": "CCTV-6",
"source": ["https://116.77.72.195/streams/d/cctv6/playlist.m3u8"]
}, {
"num": 27,
"name": "CCTV-7",
"source": ["https://116.77.72.195/streams/d/cctv7/playlist.m3u8"]
}, {
"num": 28,
"name": "CCTV-8",
"source": ["https://116.77.72.195/streams/d/cctv8/playlist.m3u8"]
}, {
"num": 29,
"name": "CCTV-9",
"source": ["https://116.77.72.195/streams/d/cctv9/playlist.m3u8"]
}, {
"num": 30,
"name": "CCTV-10",
"source": ["https://116.77.72.195/streams/d/cctv10/playlist.m3u8"]
}, {
"num": 31,
"name": "CCTV-11",
"source": ["https://116.77.72.195/streams/d/cctv11/playlist.m3u8"]
}, {
"num": 32,
"name": "CCTV-12",
"source": ["https://116.77.72.195/streams/d/cctv12/playlist.m3u8"]
}, {
"num": 33,
"name": "CCTV-5+",
"source": ["https://116.77.72.195/streams/d/cctv5a/playlist.m3u8"]
}, {
"num": 34,
"name": "星空卫视",
"source": ["https://116.77.72.195/streams/d/xkws/playlist.m3u8"]
}, {
"num": 35,
"name": "广东体育",
"source": ["https://116.77.72.195/streams/d/gdty/playlist.m3u8"]
}, {
"num": 36,
"name": "湖南卫视",
"source": ["https://116.77.72.195/streams/d/hnws/playlist.m3u8"]
}, {
"num": 37,
"name": "广东卫视",
"source": ["https://116.77.72.195/streams/d/gdws/playlist.m3u8"]
}, {
"num": 38,
"name": "北京卫视",
"source": ["https://116.77.72.195/streams/d/bjws/playlist.m3u8"]
}, {
"num": 39,
"name": "浙江卫视",
"source": ["https://116.77.72.195/streams/d/zjws/playlist.m3u8"]
}, {
"num": 40,
"name": "安徽卫视",
"source": ["https://116.77.72.195/streams/d/ahws/playlist.m3u8"]
}, {
"num": 41,
"name": "江苏卫视",
"source": ["https://116.77.72.195/streams/d/jsws/playlist.m3u8"]
}, {
"num": 42,
"name": "天津卫视",
"source": ["https://116.77.72.195/streams/d/tjws/playlist.m3u8"]
}, {
"num": 43,
"name": "辽宁卫视",
"source": ["https://116.77.72.195/streams/d/lnws/playlist.m3u8"]
}, {
"num": 44,
"name": "江西卫视",
"source": ["https://116.77.72.195/streams/d/jxws/playlist.m3u8"]
}, {
"num": 45,
"name": "山东卫视",
"source": ["https://116.77.72.195/streams/d/sdws/playlist.m3u8"]
}, {
"num": 46,
"name": "东方卫视HD",
"source": ["https://116.77.72.195/streams/d/dfws/playlist.m3u8"]
}, {
"num": 47,
"name": "四川卫视",
"source": ["https://116.77.72.195/streams/d/scws/playlist.m3u8"]
}, {
"num": 48,
"name": "深圳卫视",
"source": ["https://116.77.72.195/streams/d/szws/playlist.m3u8"]
}
]
}, {
"name": "华数国内",
"psw": "",
"data": [{
"num": 49,
"name": "CCTV1",
"source": ["http://125.210.152.18:9090/live/CCTV1HD_H265.m3u8"]
}, {
"num": 50,
"name": "CCTV2",
"source": ["http://125.210.152.18:9090/live/CCTV2HD_H265.m3u8"]
}, {
"num": 51,
"name": "CCTV3",
"source": ["http://125.210.152.18:9090/live/CCTV3HD_H265.m3u8"]
}, {
"num": 52,
"name": "CCTV4",
"source": ["rtsp://113.136.42.39:554/PLTV/88888888/224/3221226080/10000100000000060000000001759086_0.smil", "rtsp://113.136.42.40:554/PLTV/88888888/224/3221226080/10000100000000060000000001759086_0.smil", "rtsp://113.136.42.41:554/PLTV/88888888/224/3221226080/10000100000000060000000001759086_0.smil", "rtsp://113.136.42.42:554/PLTV/88888888/224/3221226080/10000100000000060000000001759086_0.smil"]
}, {
"num": 53,
"name": "CCTV5",
"source": ["http://125.210.152.18:9090/live/CCTV5HD_H265.m3u8"]
}, {
"num": 54,
"name": "CCTV6",
"source": ["http://125.210.152.18:9090/live/CCTV6HD_H265.m3u8"]
}, {
"num": 55,
"name": "CCTV7",
"source": ["http://125.210.152.18:9090/live/CCTV7HD_H265.m3u8"]
}, {
"num": 56,
"name": "CCTV8",
"source": ["http://125.210.152.18:9090/live/CCTV8HD_H265.m3u8"]
}, {
"num": 57,
"name": "CCTV10",
"source": ["http://125.210.152.18:9090/live/CCTV10HD_H265.m3u8"]
}, {
"num": 58,
"name": "CCTV12",
"source": ["http://125.210.152.18:9090/live/CCTV12HD_H265.m3u8"]
}, {
"num": 59,
"name": "CCTV14",
"source": ["http://125.210.152.18:9090/live/CCTV14HD_H265.m3u8"]
}, {
"num": 60,
"name": "凤凰资讯新闻",
"source": ["http://125.210.152.18:9090/live/FHZW_1200.m3u8"]
}, {
"num": 61,
"name": "广东卫视",
"source": ["http://125.210.152.18:9090/live/GDWSHD_H265.m3u8"]
}, {
"num": 62,
"name": "北京卫视",
"source": ["http://125.210.152.18:9090/live/BJWSHD_H265.m3u8"]
}, {
"num": 63,
"name": "天津卫视",
"source": ["http://125.210.152.18:9090/live/TJWSHD_H265.m3u8"]
}, {
"num": 64,
"name": "东方卫视",
"source": ["http://125.210.152.18:9090/live/DFWSHD_H265.m3u8"]
}, {
"num": 65,
"name": "湖南卫视",
"source": ["http://125.210.152.18:9090/live/HNWSHD_H265.m3u8"]
}, {
"num": 66,
"name": "浙江卫视",
"source": ["http://125.210.152.18:9090/live/ZJWSHD_H265.m3u8"]
}, {
"num": 67,
"name": "江苏卫视",
"source": ["http://125.210.152.18:9090/live/JSWSHD_H265.m3u8"]
}, {
"num": 68,
"name": "山东卫视",
"source": ["http://125.210.152.18:9090/live/SDWSHD_H265.m3u8"]
}, {
"num": 69,
"name": "深圳卫视",
"source": ["http://125.210.152.18:9090/live/SZWSHD_H265.m3u8"]
}, {
"num": 70,
"name": "安徽卫视",
"source": ["http://125.210.152.18:9090/live/AHWSHD_H265.m3u8"]
}, {
"num": 71,
"name": "四川卫视",
"source": ["http://125.210.152.18:9090/live/SCWSHD_H265.m3u8"]
}, {
"num": 72,
"name": "河北卫视",
"source": ["http://125.210.152.18:9090/live/HBWSHD_H265.m3u8"]
}, {
"num": 73,
"name": "东南卫视",
"source": ["http://125.210.152.18:9090/live/DNWSHD_H265.m3u8"]
}, {
"num": 74,
"name": "河南卫视",
"source": ["http://125.210.152.18:9090/live/HNWSHD_H265.m3u8"]
}, {
"num": 75,
"name": "江西卫视",
"source": ["http://125.210.152.18:9090/live/JXWSHD_H265.m3u8"]
}, {
"num": 76,
"name": "贵州卫视",
"source": ["http://125.210.152.18:9090/live/GZWSHD_H265.m3u8"]
}, {
"num": 77,
"name": "黑龙江卫视",
"source": ["http://125.210.152.18:9090/live/HLJWSHD_H265.m3u8"]
}, {
"num": 78,
"name": "吉林卫视",
"source": ["http://125.210.152.18:9090/live/JLWSHD_H265.m3u8"]
}, {
"num": 79,
"name": "辽宁卫视",
"source": ["http://125.210.152.18:9090/live/LNWSHD_H265.m3u8"]
}
]
}, {
"name": "电信联通",
"psw": "",
"data": [{
"num": 80,
"name": "CCTV1",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225871/10000100000000060000000000219040_0.smil"]
}, {
"num": 81,
"name": "CCTⅤ2",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226043/10000100000000060000000000286778_0.smil"]
}, {
"num": 82,
"name": "CCTⅤ3",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225790/10000100000000060000000000215615_0.smil"]
}, {
"num": 83,
"name": "CCTV4",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226524/10000100000000060000000001329929_0.smil"]
}, {
"num": 84,
"name": "CCTV5",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225791/10000100000000060000000000215620_0.smil"]
}, {
"num": 85,
"name": "CCTⅤ5+",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225876/10000100000000060000000000215725_0.smil"]
}, {
"num": 86,
"name": "CCTV6",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225876/10000100000000060000000000215725_0.smil"]
}, {
"num": 87,
"name": "CCTV7",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226044/10000100000000060000000000291607_0.smil"]
}, {
"num": 88,
"name": "CCTV8",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225793/10000100000000060000000000215626_0.smil"]
}, {
"num": 89,
"name": "CCTV9",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225867/10000100000000060000000000219049_0.smil"]
}, {
"num": 90,
"name": "CCTⅤ10",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226045/10000100000000060000000000291610_0.smil"]
}, {
"num": 91,
"name": "CCTV11",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225801/10000100000000060000000000215662_0.smil"]
}, {
"num": 92,
"name": "CCTV12",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226046/10000100000000060000000000291609_0.smil"]
}, {
"num": 93,
"name": "CCTV13",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225803/10000100000000060000000000215665_0.smil"]
}, {
"num": 94,
"name": "CCTV14",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226047/10000100000000060000000000291608_0.smil"]
}, {
"num": 95,
"name": "CCTV16",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225805/10000100000000060000000000215669_0.smil"]
}, {
"num": 96,
"name": "IPTV5高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226521/10000100000000060000000001283166_0.smil"]
}, {
"num": 97,
"name": "IPTⅤ3高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226067/10000100000000060000000000323315_0.smil"]
}, {
"num": 98,
"name": "爱上4k",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226315/10000100000000060000000000533024_0.smil"]
}, {
"num": 99,
"name": "广东卫视高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225881/10000100000000060000000000215744_0.smil"]
}, {
"num": 100,
"name": "江苏卫视高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225872/10000100000000060000000000215718_0.smil"]
}, {
"num": 101,
"name": "山东卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225869/10000100000000060000000000219044_0.smil"]
}, {
"num": 102,
"name": "山东齐鲁",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226516/10000100000000060000000001311826_0.smil"]
}, {
"num": 103,
"name": "山东生活",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226689/10000100000000060000000001967168_0.smil"]
}, {
"num": 104,
"name": "山东综艺",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225810/10000100000000060000000000215680_0.smil"]
}, {
"num": 105,
"name": "山东体育",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225811/10000100000000060000000000215681_0.smil"]
}, {
"num": 106,
"name": "山东公共",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225812/10000100000000060000000000215683_0.smil"]
}, {
"num": 107,
"name": "山东农科",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225813/10000100000000060000000000215686_0.smil"]
}, {
"num": 108,
"name": "山东少儿",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225814/10000100000000060000000000215687_0.smil"]
}, {
"num": 109,
"name": "山东国际",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226302/10000100000000060000000000484233_0.smil"]
}, {
"num": 110,
"name": "山东居家购物",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226407/10000100000000060000000001131508_0.smil"]
}, {
"num": 111,
"name": "山东教育",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225941/10000100000000060000000000218833_0.smil"]
}, {
"num": 112,
"name": "湖南卫视高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225870/10000100000000060000000000219041_0.smil"]
}, {
"num": 113,
"name": "浙江卫视高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225866/10000100000000060000000000219050_0.smil"]
}, {
"num": 114,
"name": "东方卫视高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225875/10000100000000060000000000215734_0.smi"]
}, {
"num": 115,
"name": "北京卫视高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225868/10000100000000060000000000219046_0.smil"]
}, {
"num": 116,
"name": "安徽卫视高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225878/10000100000000060000000000215738_0.smil"]
}, {
"num": 117,
"name": "天津卫视高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225880/10000100000000060000000000215743_0.smil"]
}, {
"num": 118,
"name": "辽宁卫视高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225882/10000100000000060000000000215746_0.smil"]
}, {
"num": 119,
"name": "深圳卫视高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225882/10000100000000060000000000215746_0.smil"]
}, {
"num": 120,
"name": "湖北卫视高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225879/10000100000000060000000000215740_0.smil"]
}, {
"num": 121,
"name": "黑龙江卫视高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225874/10000100000000060000000000215723_0.smil"]
}, {
"num": 122,
"name": "贵州卫视高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226547/10000100000000060000000001329927_0.smil"]
}, {
"num": 123,
"name": "河北卫视高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226526/10000100000000060000000001329928_0.smil"]
}, {
"num": 124,
"name": "重庆卫视高清",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225860/10000100000000060000000000218145_0.smil"]
}, {
"num": 125,
"name": "海南卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225863/10000100000000060000000000218139_0.smil"]
}, {
"num": 126,
"name": "四川卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225932/10000100000000060000000000218814_0.smil"]
}, {
"num": 127,
"name": "云南卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225886/10000100000000060000000000219954_0.smil"]
}, {
"num": 128,
"name": "河南卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225857/10000100000000060000000000218150_0.smil"]
}, {
"num": 129,
"name": "江西卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225856/10000100000000060000000000218152_0.smil"]
}, {
"num": 130,
"name": "广西卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225859/10000100000000060000000000218146_0.smil"]
}, {
"num": 131,
"name": "吉林卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225883/10000100000000060000000000219958_0.smil"]
}, {
"num": 132,
"name": "山西卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225855/10000100000000060000000000218155_0.smil"]
}, {
"num": 133,
"name": "陕西卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225854/10000100000000060000000000218161_0.smil"]
}, {
"num": 134,
"name": "内蒙古卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225940/10000100000000060000000000218829_0.smil"]
}, {
"num": 135,
"name": "宁夏卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225935/10000100000000060000000000218820_0.smil"]
}, {
"num": 136,
"name": "新疆卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225942/10000100000000060000000000218836_0.smil"]
}, {
"num": 137,
"name": "甘肃卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225942/10000100000000060000000000218836_0.smil"]
}, {
"num": 138,
"name": "青海卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225936/10000100000000060000000000218822_0.smil"]
}, {
"num": 139,
"name": "西藏卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225938/10000100000000060000000000218826_0.smil"]
}, {
"num": 140,
"name": "兵团卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225939/10000100000000060000000000218828_0.smil"]
}, {
"num": 141,
"name": "农林卫视",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221225952/10000100000000060000000000218954_0.smil"]
}, {
"num": 142,
"name": "金鹰纪实",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226354/10000100000000060000000000912072_0.smil"]
}, {
"num": 143,
"name": "熊猫频道",
"source": ["rtsp://61.156.103.73:554/PLTV/88888888/224/3221226048/10000100000000060000000000291761_0.smil"]
}
]
}, {
"name": "联通秒开",
"psw": "",
"data": [{
"num": 144,
"name": "CCTV-1综合HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv1hd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv1hd/4000000/mnf.m3u8"]
}, {
"num": 145,
"name": "CCTV-2财经",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv2/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv2/1300000/mnf.m3u8"]
}, {
"num": 146,
"name": "CCTV-3综艺HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv3hd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv3hd/4000000/mnf.m3u8"]
}, {
"num": 147,
"name": "CCTV-4中文国际",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv4/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv4/1300000/mnf.m3u8"]
}, {
"num": 148,
"name": "CCTV-5体育HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv5hd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv5hd/4000000/mnf.m3u8"]
}, {
"num": 149,
"name": "CCTV5+体育HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv5phd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv5phd/4000000/mnf.m3u8"]
}, {
"num": 150,
"name": "CCTV-6电影HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv6hd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv6hd/4000000/mnf.m3u8"]
}, {
"num": 151,
"name": "CCTV-7军事农业",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv7/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv7/1300000/mnf.m3u8"]
}, {
"num": 152,
"name": "CCTV-8电视剧HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv8hd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv8hd/4000000/mnf.m3u8"]
}, {
"num": 153,
"name": "CCTV-10科教HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv10hd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv10hd/4000000/mnf.m3u8"]
}, {
"num": 154,
"name": "CCTV-11戏曲",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv11/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv11/1300000/mnf.m3u8"]
}, {
"num": 155,
"name": "CCTV-12社会与法",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv12/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctv12/1300000/mnf.m3u8"]
}, {
"num": 156,
"name": "CCTV-13新闻",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctvxw/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctvxw/1300000/mnf.m3u8"]
}, {
"num": 157,
"name": "CCTV-14少儿",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctvse/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctvse/1300000/mnf.m3u8"]
}, {
"num": 158,
"name": "CCTV-15音乐",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctvyy/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cctvyy/1300000/mnf.m3u8"]
}, {
"num": 159,
"name": "广东卫视HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/gdwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/gdwshd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/gdwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/gdwshd/4000000/mnf.m3u8"]
}, {
"num": 160,
"name": "河北卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hbws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hbws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hbws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hbws/1300000/mnf.m3u8"]
}, {
"num": 161,
"name": "电视剧频道",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dsjpdhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dsjpdhd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dsjpdhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dsjpdhd/4000000/mnf.m3u8"]
}, {
"num": 162,
"name": "五星体育HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ssty/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ssty/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ssty/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ssty/4000000/mnf.m3u8"]
}, {
"num": 163,
"name": "天津卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/tjws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/tjws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/tjws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/tjws/1300000/mnf.m3u8"]
}, {
"num": 164,
"name": "BasTV 5",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba5/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba5/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba5/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba5/4000000/mnf.m3u8"]
}, {
"num": 165,
"name": "黑龙江卫视HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hljwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hljwshd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hljwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hljwshd/4000000/mnf.m3u8"]
}, {
"num": 166,
"name": "中国教育-1",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/zgjy1ott/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/zgjy1ott/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/zgjy1ott/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/zgjy1ott/1300000/mnf.m3u8"]
}, {
"num": 167,
"name": "广西卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/gxws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/gxws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/gxws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/gxws/1300000/mnf.m3u8"]
}, {
"num": 168,
"name": "七彩戏剧",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/qcxj/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/qcxj/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/qcxj/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/qcxj/1300000/mnf.m3u8"]
}, {
"num": 169,
"name": "金色频道",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jingsepd/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jingsepd/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jingsepd/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jingsepd/1300000/mnf.m3u8"]
}, {
"num": 170,
"name": "吉林卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jlws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jlws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jlws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jlws/1300000/mnf.m3u8"]
}, {
"num": 171,
"name": "东南卫视HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dnwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dnwshd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dnwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dnwshd/4000000/mnf.m3u8"]
}, {
"num": 172,
"name": "都市剧场",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dsjchd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dsjchd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dsjchd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dsjchd/4000000/mnf.m3u8"]
}, {
"num": 173,
"name": "北京卫视HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/bjwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/bjwshd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/bjwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/bjwshd/4000000/mnf.m3u8"]
}, {
"num": 174,
"name": "极速汽车",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jsqchd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jsqchd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jsqchd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jsqchd/4000000/mnf.m3u8"]
}, {
"num": 175,
"name": "辽宁卫视HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/lnwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/lnwshd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/lnwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/lnwshd/4000000/mnf.m3u8"]
}, {
"num": 176,
"name": "江西卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jxws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jxws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jxws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jxws/1300000/mnf.m3u8"]
}, {
"num": 177,
"name": "东方卫视HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hddfws/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hddfws/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hddfws/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hddfws/4000000/mnf.m3u8"]
}, {
"num": 178,
"name": "重庆卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cqws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cqws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cqws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/cqws/1300000/mnf.m3u8"]
}, {
"num": 179,
"name": "炫动卡通",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xdkt/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xdkt/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xdkt/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xdkt/1300000/mnf.m3u8"]
}, {
"num": 180,
"name": "BasTV 6",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba6/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba6/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba6/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba6/4000000/mnf.m3u8"]
}, {
"num": 181,
"name": "内蒙古卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/nmgws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/nmgws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/nmgws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/nmgws/1300000/mnf.m3u8"]
}, {
"num": 182,
"name": "欢笑剧场",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hxjchd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hxjchd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hxjchd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hxjchd/4000000/mnf.m3u8"]
}, {
"num": 183,
"name": "动漫秀场",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dmxchd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dmxchd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dmxchd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dmxchd/4000000/mnf.m3u8"]
}, {
"num": 184,
"name": "辽宁卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/lnws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/lnws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/lnws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/lnws/1300000/mnf.m3u8"]
}, {
"num": 185,
"name": "贵州卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/gzws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/gzws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/gzws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/gzws/1300000/mnf.m3u8"]
}, {
"num": 186,
"name": "第一财经",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dycjhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dycjhd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dycjhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dycjhd/4000000/mnf.m3u8"]
}, {
"num": 187,
"name": "安徽卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ahws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ahws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ahws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ahws/1300000/mnf.m3u8"]
}, {
"num": 188,
"name": "兵团卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/btws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/btws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/btws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/btws/1300000/mnf.m3u8"]
}, {
"num": 189,
"name": "新视觉HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xsjhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xsjhd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xsjhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xsjhd/4000000/mnf.m3u8"]
}, {
"num": 190,
"name": "云南卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ynws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ynws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ynws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ynws/1300000/mnf.m3u8"]
}, {
"num": 191,
"name": "BasTV 1",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba1/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba1/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba1/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba1/4000000/mnf.m3u8"]
}, {
"num": 192,
"name": "法治天地",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/fztd/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/fztd/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/fztd/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/fztd/1300000/mnf.m3u8"]
}, {
"num": 193,
"name": "游戏风云",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/yxfyhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/yxfyhd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/yxfyhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/yxfyhd/4000000/mnf.m3u8"]
}, {
"num": 194,
"name": "星尚",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xspdhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xspdhd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xspdhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xspdhd/4000000/mnf.m3u8"]
}, {
"num": 195,
"name": "东方财经",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dfcj/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dfcj/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dfcj/1300000/mnf.m3u8"]
}, {
"num": 196,
"name": "BasTV 3",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba3/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba3/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba3/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba3/4000000/mnf.m3u8"]
}, {
"num": 197,
"name": "天津卫视HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/tjwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/tjwshd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/tjwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/tjwshd/4000000/mnf.m3u8"]
}, {
"num": 198,
"name": "新疆卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xjws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xjws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xjws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xjws/1300000/mnf.m3u8"]
}, {
"num": 199,
"name": "湖北卫视HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hbwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hbwshd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hbwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hbwshd/4000000/mnf.m3u8"]
}, {
"num": 200,
"name": "河南卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hnws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hnws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hnws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hnws/1300000/mnf.m3u8"]
}, {
"num": 201,
"name": "东南卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dnws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dnws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dnws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/dnws/1300000/mnf.m3u8"]
}, {
"num": 202,
"name": "湖南卫视HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hnwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hnwshd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hnwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hnwshd/4000000/mnf.m3u8"]
}, {
"num": 203,
"name": "旅游卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/lyws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/lyws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/lyws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/lyws/1300000/mnf.m3u8"]
}, {
"num": 204,
"name": "江西卫视HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jxwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jxwshd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jxwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jxwshd/4000000/mnf.m3u8"]
}, {
"num": 205,
"name": "四川卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/scws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/scws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/scws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/scws/1300000/mnf.m3u8"]
}, {
"num": 206,
"name": "劲爆体育HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jbtyhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jbtyhd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jbtyhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jbtyhd/4000000/mnf.m3u8"]
}, {
"num": 207,
"name": "安徽卫视HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ahwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ahwshd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ahwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ahwshd/4000000/mnf.m3u8"]
}, {
"num": 208,
"name": "BasTV 7",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba7/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba7/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba7/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba7/4000000/mnf.m3u8"]
}, {
"num": 209,
"name": "陕西卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/sxws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/sxws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/sxws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/sxws/1300000/mnf.m3u8"]
}, {
"num": 210,
"name": "艺术人文",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ysrw/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ysrw/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ysrw/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ysrw/1300000/mnf.m3u8"]
}, {
"num": 211,
"name": "江苏卫视HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jswshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jswshd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jswshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jswshd/4000000/mnf.m3u8"]
}, {
"num": 212,
"name": "宁夏卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/nxws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/nxws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/nxws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/nxws/1300000/mnf.m3u8"]
}, {
"num": 213,
"name": "娱乐频道",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ylpdhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ylpdhd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ylpdhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/ylpdhd/4000000/mnf.m3u8"]
}, {
"num": 214,
"name": "浙江卫视HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/zjwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/zjwshd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/zjwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/zjwshd/4000000/mnf.m3u8"]
}, {
"num": 215,
"name": "外语频道",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/wypdhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/wypdhd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/wypdhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/wypdhd/4000000/mnf.m3u8"]
}, {
"num": 216,
"name": "山东卫视HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/sdwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/sdwshd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/sdwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/sdwshd/4000000/mnf.m3u8"]
}, {
"num": 217,
"name": "生活时尚",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/shsshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/shsshd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/shsshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/shsshd/4000000/mnf.m3u8"]
}, {
"num": 218,
"name": "魅力音乐",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/mlyyhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/mlyyhd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/mlyyhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/mlyyhd/4000000/mnf.m3u8"]
}, {
"num": 219,
"name": "BasTV 2",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba2/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba2/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba2/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba2/4000000/mnf.m3u8"]
}, {
"num": 220,
"name": "全纪实",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/qjshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/qjshd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/qjshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/qjshd/4000000/mnf.m3u8"]
}, {
"num": 221,
"name": "新闻综合",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xwzhhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xwzhhd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xwzhhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xwzhhd/4000000/mnf.m3u8"]
}, {
"num": 222,
"name": "青海卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/qhws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/qhws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/qhws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/qhws/1300000/mnf.m3u8"]
}, {
"num": 223,
"name": "纪实频道",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jspdhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jspdhd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jspdhd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/jspdhd/4000000/mnf.m3u8"]
}, {
"num": 224,
"name": "深圳卫视HD",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/szwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/szwshd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/szwshd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/szwshd/4000000/mnf.m3u8"]
}, {
"num": 225,
"name": "山西卫视",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/shanxiws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/shanxiws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/shanxiws/1300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/shanxiws/1300000/mnf.m3u8"]
}, {
"num": 226,
"name": "BasTV 4",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba4/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba4/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba4/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/hdnba4/4000000/mnf.m3u8"]
}, {
"num": 227,
"name": "幸福彩",
"source": ["http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xfchd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xfchd/4000000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xfchd/2300000/mnf.m3u8", "http://157.255.30.103/aliyun4a-live.bestvcdn.com.cn/live/program/live/xfchd/4000000/mnf.m3u8"]
}
]
}, {
"name": "联通电信",
"psw": "",
"data": [{
"num": 228,
"name": "TVB翡翠",
"source": ["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&_res_tag_=video"]
}, {
"num": 229,
"name": "TVB明珠",
"source": ["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=12"]
}, {
"num": 230,
"name": "广东珠江",
"source": ["http://116.199.5.52:8114/hls/Fsv_chan_hls_se_idx=008&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8"]
}, {
"num": 231,
"name": "珠江电影",
"source": ["http://116.199.5.52:8114/hls/Fsv_chan_hls_se_idx=7&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8"]
}, {
"num": 232,
"name": "广东体育",
"source": ["http://116.199.5.52:8114/hls/Fsv_chan_hls_se_idx=20&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8"]
}, {
"num": 233,
"name": "南方卫视",
"source": ["http://116.199.5.52:8114/hls/Fsv_chan_hls_se_idx=009&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8"]
}, {
"num": 234,
"name": "广东卫视HD",
"source": ["http://116.199.5.52:8114/hls/Fsv_chan_hls_se_idx=043&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8"]
}, {
"num": 235,
"name": "CCTV1HD",
"source": ["http://116.199.5.52:8114/hls/Fsv_chan_hls_se_idx=029&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8"]
}, {
"num": 236,
"name": "CCTV2HD",
"source": ["http://116.199.5.52:8114/hls/Fsv_chan_hls_se_idx=010&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8"]
}, {
"num": 237,
"name": "CCTV3HD",
"source": ["http://116.199.5.52:8114/hls/Fsv_chan_hls_se_idx=021&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8"]
}, {
"num": 238,
"name": "CCTV4HD",
"source": ["http://116.199.5.52:8114/hls/Fsv_chan_hls_se_idx=026&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8"]
}, {
"num": 239,
"name": "CCTV5HD",
"source": ["http://116.199.5.52:8114/hls/Fsv_chan_hls_se_idx=031&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8"]
}, {
"num": 240,
"name": "CCTV5+",
"source": ["http://116.199.5.52:8114/hls/Fsv_chan_hls_se_idx=036&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8"]
}, {
"num": 241,
"name": "CCTV6HD",
"source": ["http://116.199.5.52:8114/hls/Fsv_chan_hls_se_idx=011&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8"]
}, {
"num": 242,
"name": "CCTV7HD",
"source": ["http://116.199.5.52:8114/hls/Fsv_chan_hls_se_idx=028&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8"]