-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlist.json
10770 lines (10762 loc) · 310 KB
/
list.json
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
{
"uuid":"64350b50-a810-4901-b86b-7a5106bdef2c",
"title": "有效",
"channels": [
{
"name":"星空卫视",
"url": "rtmp://ivi.bupt.edu.cn:1935/livetv/startv"
},
{
"name":"BBC",
"url": "http://bbcwshdlive01-lh.akamaihd.net/i/atv_1@61433/master.m3u8"
},
{
"name":"KCTV | SD",
"url": "http://122.202.129.136:1935/live/ch5/playlist.m3u8"
},
{
"name":"TV CHOSUN | HD",
"url": "http://live.chosun.gscdn.com/live/_definst_/tvchosun1.stream/playlist.m3u8"
},
{
"name":"EBS | SD",
"url": "http://ebsonair.ebs.co.kr:1935/groundwavefamilypc/familypc1m/playlist.m3u8"
},
{
"name":"EBS plus 1 | SD",
"url": "http://ebsonair.ebs.co.kr:1935/plus1tablet500k/tablet500k/playlist.m3u8"
},
{
"name":"mbc",
"url": "http://www.pickcom.co.kr:1935/sjp/live07/chunklist_w2107750490.m3u8?site=speedtv&ch=live07&pm=P"
},
{
"name":"EBS e | SD",
"url": "http://ebsonair.ebs.co.kr:1935/plus3familypc/familypc1m/playlist.m3u8"
},
{
"name":"EBS Kids | SD",
"url": "http://ebsonair.ebs.co.kr:1935/ebsutablet500k/tablet500k/playlist.m3u8"
},
{
"name":"科教纪录片",
"url": "http://fms.cntv.lxdns.com/live/flv/channel178.flv"
},
{
"name":"网络放映厅11",
"url": "http://chyd-wsvod.wasu.tv/data13/ott/344/2015-06/01/1433146056644_381163/playlist.m3u8"
},
{
"name":"晋江侨乡",
"url": "http://stream.jinjiang.tv/1/sd/live.m3u8"
},
{
"name":"永年民生频道",
"url": "http://hbyn.chinashadt.com:1936/live/stream:ynms.stream_360p/playlist.m3u8"
},
{
"name":"宜章新闻综合",
"url": "http://hnyz.chinashadt.com:2036/live/stream:tv1.stream_360p/playlist.m3u8"
},
{
"name":"句容生活频道",
"url": "http://218.3.92.100:1937/live/shenghuo/playlist.m3u8"
},
{
"name":"枣庄新闻综合",
"url": "http://210.14.139.210/gMlJ23r/1000/live.m3u8"
},
{
"name":"枣庄教育频道",
"url": "http://tv-hls.juyun.tv/cmhGjaZ/1000/live.m3u8"
},
{
"name":"枣庄公共频道",
"url": "http://stream.zzgd.tv/3/sd/live.m3u8"
},
{
"name":"阳泉科教",
"url": "http://124.166.252.222:6505/live/ch2.m3u8"
},
{
"name":"陕西体育休闲",
"url": "http://stream.snrtv.com/sxtvs-7.m3u8"
},
{
"name":"成都新闻综合",
"url": "http://live.mudu.tv/watch/gv5h85.m3u8"
},
{
"name":"龙泉新闻综合",
"url": "http://119.5.155.148:1935/live/live03gd/live03.m3u8"
},
{
"name":"屏边综合",
"url": "http://live.hhtv.cc:9098/pbtv/pbtv.m3u8"
},
{
"name":"东阳影视生活",
"url": "http://stream.dybtv.com/yssh/GQ/live.m3u8"
},
{
"name":"战旗影视 39",
"url": "http://alhls.cdn.zhanqi.tv/zqlive/154733_xcVyM.m3u8"
},
{
"name":"阿拉伯Alyawm",
"url": "http://live.paltoday.tv:1935/paltv/live/gmswf.m3u8"
},
{
"name":"希臘OMEGA",
"url": "http://stream2.omegatv.net/hls-live/livepkgr/_definst_/liveevent/omegatv.m3u8"
},
{
"name":"韓國-MBC",
"url": "http://123.108.164.71/etv2/phd847/chunklist_w505134090.m3u8"
},
{
"name":"韓國-National Geographic",
"url": "http://edge1.everyon.tv/etv1sb/phd1297/chunklist_w1802493452.m3u8"
},
{
"name":"江苏卫视高清",
"url": "http://ott.js.chinamobile.com/PLTV/3/224/3221227255/index.m3u8"
},
{
"name":"天津卫视高清",
"url": "http://ott.js.chinamobile.com/PLTV/3/224/3221227212/index.m3u8"
},
{
"name":"财富天下",
"url": "http://117.156.28.119/270000001111/1110000114/index.m3u8"
},
{
"name":"国内电影",
"url": "http://3954.liveplay.myqcloud.com/live/3954_336052518.flv?bizid=3954&start=0"
},
{
"name":"国外电影",
"url": "http://3954.liveplay.myqcloud.com/live/3954_344201418.flv?bizid=3954&start=0"
},
{
"name":"1电影轮播",
"url": "http://alhls.cdn.zhanqi.tv/zqlive/102444_ZGmRp.m3u8"
},
{
"name":"12电影轮播",
"url": "http://alhls.cdn.zhanqi.tv/zqlive/80918_cr4oy.m3u8"
},
{
"name":"54电影轮播",
"url": "http://alhls.cdn.zhanqi.tv/zqlive/199301_y2bWG.m3u8"
},
{
"name":"日-CINEMA 洋片",
"url": "http://192.240.127.34:1935/live/cs27.stream/playlist.m3u8"
},
{
"name":"日-ファミリー劇場",
"url": "http://192.240.127.34:1935/live/cs11.stream/playlist.m3u8"
},
{
"name":"日-History channel",
"url": "http://192.240.127.34:1935/live/cs14.stream/playlist.m3u8"
},
{
"name":"日-BS日本映画",
"url": "http://192.240.127.34:1935/live/cs19.stream/play.m3u8"
},
{
"name":"日-NTV NEWS24",
"url": "http://n24-cdn-live.ntv.co.jp/ch01/High.m3u8"
},
{
"name":"2战旗TV直播",
"url": "http://dlhls.cdn.zhanqi.tv/zqlive/44509_4oiYY.m3u8"
},
{
"name":"mv直播",
"url": "http://dlhls.cdn.zhanqi.tv/zqlive/246422_GSpB2.m3u8"
},
{
"name":"Newtv动作电影 ",
"url": "http://183.207.249.10/PLTV/3/224/3221225529/index.m3u8"
},
{
"name":"Newtv农业致富 ",
"url": "http://183.207.249.14/PLTV/3/224/3221225537/index.m3u8"
},
{
"name":"河源综合",
"url": "http://tmpstream.hyrtv.cn/xwzh/sd/live.m3u8"
},
{
"name":"清新公共",
"url": "http://hls.qxtv0763.com/live/qxgg.m3u8"
},
{
"name":"潮安综合",
"url": "http://chaoan.chaoantv.com:8278/zongyi_1028/playlist.m3u8"
},
{
"name":"河北经济",
"url": "http://hbfc.chinashadt.com:2036/live/6.stream/playlist.m3u8"
},
{
"name":"河北影视",
"url": "http://hbry.chinashadt.com:1938/live/1012.stream_360p/playlist.m3u8"
},
{
"name":"河北农民",
"url": "http://weblive.hebtv.com/live/nmpd_lc/index.m3u8"
},
{
"name":"滦南新闻综合",
"url": "http://tv.lnshw.com.cn:3000/hls/pegdvlxq/index.m3u8"
},
{
"name":"滦县综艺频道",
"url": "http://hblxx.chinashadt.com:2036/live/stream:lx2.stream/playlist.m3u8"
},
{
"name":"双滦公共频道",
"url": "http://r.gslb.lecloud.com/live/hls/2018052130000003q13/desc.m3u8"
},
{
"name":"乐亭新闻综合",
"url": "http://tv.lnshw.com.cn:3100/hls/cfyxlgdz/index.m3u8"
},
{
"name":"梨园频道",
"url": "http://117.158.206.60:9080/live/lypd.m3u8"
},
{
"name":"安阳新闻综合",
"url": "http://221.176.205.102:9600/live/xwzhpd/tzwj_main.m3u8"
},
{
"name":"南阳新闻频道",
"url": "http://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_142.m3u8"
},
{
"name":"荆州新闻",
"url": "http://33058.hlsplay.aodianyun.com/guangdianyun_33058/tv_channel_216.m3u8"
},
{
"name":"仙桃新闻综合",
"url": "http://36979.hlsplay.aodianyun.com/guangdianyun_36979/tv_channel_509.m3u8"
},
{
"name":"金鹰卡通",
"url": "http://117.169.72.6:8080/ysten-businessmobile/live/jinyingkaton/1.m3u8"
},
{
"name":"永州新闻频道",
"url": "http://live.hn0746.com/xw/sd/live.m3u8"
},
{
"name":"优漫卡通1",
"url": "http://m-tvlmedia.public.bcs.ysten.com/ysten-business/live/youmankaton/1.m3u8"
},
{
"name":"优漫卡通2",
"url": "http://117.169.72.6:8080/ysten-businessmobile/live/youmankaton/1.m3u8"
},
{
"name":"张家港社会生活",
"url": "http://3gvod.zjgonline.com.cn:1935/live/shehuishenghuo2/playlist.m3u8"
},
{
"name":"章贡综合频道",
"url": "http://117.169.72.6:8080/ysten-businessmobile/live/zgtv/1.m3u8"
},
{
"name":"余干综合频道",
"url": "http://36941.hlsplay.aodianyun.com/guangdianyun_36941/tv_channel_489.m3u8"
},
{
"name":"吉州新闻综合",
"url": "http://117.169.72.6:8080/ysten-businessmobile/live/JAJZTV/1.m3u8"
},
{
"name":"山东综艺",
"url": "http://ksdlive.gwpd.iqilu.com/zypd.m3u8"
},
{
"name":"山东教育",
"url": "http://117.169.72.6:8080/ysten-businessmobile/live/shandongjy/1.m3u8"
},
{
"name":"枣庄教育频道",
"url": "http://210.14.139.210/cmhGjaZ/1000/live.m3u8"
},
{
"name":"德州新闻频道",
"url": "http://video.dztv.tv:1935/live/xwzh_gq/playlist.m3u8"
},
{
"name":"都市剧场HD",
"url": "http://huaweicdn.hb.chinamobile.com/PLTV/88888888/224/3221225754/1.m3u8"
},
{
"name":"幸福彩HD",
"url": "http://huaweicdn.hb.chinamobile.com/PLTV/88888888/224/3221225753/1.m3u8"
},
{
"name":"东方财经",
"url": "http://huaweicdn.hb.chinamobile.com/PLTV/88888888/224/3221225840/1.m3u8"
},
{
"name":"上海教育",
"url": "http://live.setv.sh.cn/slive/shedu02_1200k.m3u8"
},
{
"name":"炫动卡通",
"url": "http://117.169.72.6:8080/ysten-businessmobile/live/xuandongkaton/1.m3u8"
},
{
"name":"东方购物",
"url": "http://huaweicdn.hb.chinamobile.com/PLTV/88888888/224/3221225793/1.m3u8"
},
{
"name":"保山二套",
"url": "http://onairzb.onairsaas.com/b7jx9t/vd6812.m3u8"
},
{
"name":"绿春综合",
"url": "http://live.hhtv.cc:9098/lctv/lctv.m3u8"
},
{
"name":"剑川新闻综合",
"url": "http://r.gslb.lecloud.com/live/hls/2018032730000002n99/desc.m3u8"
},
{
"name":"港台電視31",
"url": "http://rthklive1-lh.akamaihd.net/i/rthk31_1@167495/index_1296_av-b.m3u8"
},
{
"name":"壹新聞",
"url": "http://d2e6xlgy8sg8ji.cloudfront.net/liveedge/eratv1/playlist_w.m3u8"
},
{
"name":"韓國-MBC",
"url": "http://edge2.everyon.tv/etv2/phd847/chunklist_w505134090.m3u8"
},
{
"name":"湖南卫视高清",
"url": "http://ott.js.chinamobile.com/PLTV/3/224/3221227220/index.m3u8"
},
{
"name":"黑龙江卫视高清",
"url": "http://ott.js.chinamobile.com/PLTV/3/224/3221227252/index.m3u8"
},
{
"name":"湖北卫视高清",
"url": "http://ott.js.chinamobile.com/PLTV/3/224/3221227211/index.m3u8"
},
{
"name":"宿松影视文艺",
"url": "http://31022.hlsplay.aodianyun.com/lms_31022/tv_channel_126.m3u8"
},
{
"name":"铜梁综合",
"url": "http://183.64.174.171:40123/ch1.m3u8"
},
{
"name":"铜梁文旅",
"url": "http://183.64.174.171:50123/ch2.m3u8"
},
{
"name":"大足综合频道",
"url": "http://183.230.1.208:3170/hls1.m3u8"
},
{
"name":"大足文化频道",
"url": "http://183.230.1.208:3170/hls5.m3u8"
},
{
"name":"南川旅游经济",
"url": "http://221.5.213.4:30000/2222.m3u8"
},
{
"name":"彭水文化旅游",
"url": "http://125.62.25.129/pengshui02.m3u8"
},
{
"name":"垫江综合频道",
"url": "http://dianjianglive.cbg.cn:8010/hls/stream/dxxwp33w.m3u8"
},
{
"name":"垫江丹乡文化",
"url": "http://dianjianglive.cbg.cn:8010/hls/stream/qcx9dxe6.m3u8"
},
{
"name":"城口综合频道",
"url": "http://123.146.140.86:1935/chengkou01.m3u8"
},
{
"name":"渝北综合频道",
"url": "http://yubeilive.cbg.cn/ch1-3.m3u8"
},
{
"name":"福州综合",
"url": "http://live.zohi.tv/video/s10001-FZTV-1/index.m3u8"
},
{
"name":"福州影视",
"url": "http://live.zohi.tv/video/s10001-yspd-2/index.m3u8"
},
{
"name":"福州生活",
"url": "http://live.zohi.tv/video/s10001-shpd-3/index.m3u8"
},
{
"name":"福州少儿",
"url": "http://live.zohi.tv/video/s10001-sepd-4/index.m3u8"
},
{
"name":"厦门一套",
"url": "http://cstvpull.live.wscdns.com/live/xiamen1.flv"
},
{
"name":"厦门二套",
"url": "http://cstvpull.live.wscdns.com/live/xiamen2.flv"
},
{
"name":"厦门三套",
"url": "http://cstvpull.live.wscdns.com/live/xiamen3.flv"
},
{
"name":"厦门四套",
"url": "http://cstvpull.live.wscdns.com/live/xiamen4.flv"
},
{
"name":"厦门移动电视",
"url": "http://cstvpull.live.wscdns.com/live/xiamenyidong.flv"
},
{
"name":"漳州新闻综合",
"url": "http://31182.hlsplay.aodianyun.com/lms_31182/tv_channel_175.m3u8"
},
{
"name":"福安综合",
"url": "http://r.gslb.lecloud.com/live/hls/2017102030000008116/desc.m3u8"
},
{
"name":"吉林卫视",
"url": "http://111.48.34.172/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225844/1.m3u8?icpid=88888888&from=1&hms_devid=1383"
},
{
"name":"华视咨讯台",
"url": "http://live.italkdd.com/cds160/hls/channel005/channel005_2000.m3u8#http://live.italkdd.com/cds160/hls/channel005/channel005_2000.m3u8"
},
{
"name":"tvb8,",
"url": "http://ftach8.akamaized.net/out/v1/e6c84096fa424e7eaab636021b2b86ec/index_5.m3u8"
},
{
"name":"战旗武装据",
"url": "http://dlhls.cdn.zhanqi.tv/zqlive/199301_y2bWG.m3u8"
},
{
"name":"广州新闻频道",
"url": "http://23436.liveplay.myqcloud.com/live/23436_e2fd8e1e7e7111e892905cb9018cf0d4.m3u8"
},
{
"name":"TVS4广东影视",
"url": "http://gdlive.grtn.cn/newtvs4/sd/live.m3u8"
},
{
"name":"香港耀才财经",
"url": "http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8#http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8"
},
{
"name":"MBC MAX",
"url": "http://63.237.48.3/ios/MBC_MAX/MBC_MAX.m3u8#http://63.237.48.3/ios/MBC_MAX/MBC_MAX.m3u8"
},
{
"name":"马来西亚BERNAMA",
"url": "http://stream2.1malaysiaiptv.com/mylive/smil:bernama2_all.smil/playlist.m3u8"
},
{
"name":"音乐m20tv",
"url": "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-b.m3u8"
},
{
"name":"德国BBW",
"url": "rtmp://62.113.210.250/medienasa-live/rbw_low"
},
{
"name":"EBS1",
"url": "http://ebs.co.kr/common/swf/onair_player.swf#http://ebs.co.kr/common/swf/onair_player.swf?A=true&V=rtmp://ebsonair.ebs.co.kr/groundwavefamilypc/familypc1m"
},
{
"name":"KCTV",
"url": "rtmp://122.202.129.136:1935/live/ch5"
},
{
"name":"SBS CNBC",
"url": "http://sbsplayer.sbs.co.kr/OnAir/NeTVOnAir_1_1_0_0.swf#http://sbsplayer.sbs.co.kr/OnAir/NeTVOnAir_1_1_0_0.swf?url=http://sbsplayer.sbs.co.kr/OnAir/env/CNBC.xml&controlS"
},
{
"name":"SBS MTV",
"url": "http://sbsplayer.sbs.co.kr/OnAir/NeTVOnAir_1_1_0_0.swf#http://sbsplayer.sbs.co.kr/OnAir/NeTVOnAir_1_1_0_0.swf?url=http://sbsplayer.sbs.co.kr/OnAir/env/MTV.xml&controlSet"
},
{
"name":"日本8",
"url": "rtsp://c.itvitv.com/wowow.ghfyenxdhfdscz"
},
{
"name":"CCTV1移动",
"url": "http://111.48.34.199/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225829/1.m3u8?icpid=88888888&from=1&ocs=2_111.48.34.225_80&hms_devid=143"
},
{
"name":"CCTV4标清移动",
"url": "http://111.48.34.230/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225830/1.m3u8?icpid=88888888&from=1&hms_devid=1283"
},
{
"name":"CCTV10标清",
"url": "http://111.48.34.218/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225832/1.m3u8?icpid=88888888&from=1&hms_devid=1383"
},
{
"name":"CCTV11标清",
"url": "http://111.48.34.219/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225833/1.m3u8?icpid=88888888&from=1&hms_devid=1363"
},
{
"name":"CCTV12标清",
"url": "http://111.48.34.174/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225834/1.m3u8?icpid=88888888&from=1&hms_devid=1423"
},
{
"name":"CCTV13",
"url": "http://111.48.34.176/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225835/1.m3u8?icpid=88888888&from=1&hms_devid=1203"
},
{
"name":"CCTV14",
"url": "http://111.48.34.216/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225837/1.m3u8?icpid=88888888&from=1&hms_devid=1343"
},
{
"name":"CCTV15",
"url": "http://111.48.34.191/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225836/1.m3u8?icpid=88888888&from=1&hms_devid=1163"
},
{
"name":"东方卫视",
"url": "http://111.48.34.228/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225810/3.m3u8?icpid=88888888&from=1&hms_devid=1143"
},
{
"name":"甘肃卫视标清",
"url": "http://111.48.34.184/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225856/1.m3u8?icpid=88888888&from=1&hms_devid=1283"
},
{
"name":"广东卫视",
"url": "http://111.48.34.182/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225811/1.m3u8?icpid=88888888&from=1&hms_devid=1143"
},
{
"name":"广西卫视标清",
"url": "http://111.48.34.191/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225846/1.m3u8?icpid=88888888&from=1&hms_devid=1163"
},
{
"name":"广西卫视",
"url": "http://111.48.34.237/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225846/1.m3u8?icpid=88888888&from=1&hms_devid=1163"
},
{
"name":"贵州标清",
"url": "http://111.48.34.226/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225843/1.m3u8?icpid=88888888&from=1&hms_devid=1063"
},
{
"name":"贵州卫视",
"url": "http://111.48.34.179/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225843/1.m3u8?icpid=88888888&from=1&hms_devid=1123"
},
{
"name":"河北卫视标清",
"url": "http://111.48.34.174/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225850/1.m3u8?icpid=88888888&from=1&hms_devid=1423"
},
{
"name":"河北卫视",
"url": "http://111.48.34.220/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225850/1.m3u8?icpid=88888888&from=1&hms_devid=1423"
},
{
"name":"河南卫视",
"url": "http://111.48.34.184/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225847/1.m3u8?icpid=88888888&from=1&hms_devid=1283"
},
{
"name":"湖北卫视",
"url": "http://111.48.34.236/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225764/1.m3u8?icpid=88888888&from=1&hms_devid=1263"
},
{
"name":"吉林卫视",
"url": "http://218.207.213.133/PLTV/88888888/224/3221225851/index.m3u8"
},
{
"name":"江苏卫视",
"url": "http://111.48.34.151/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225819/3.m3u8?icpid=88888888&from=1&hms_devid=223"
},
{
"name":"北京卡酷少儿",
"url": "http://223.82.250.72/live/kakukaton/1.m3u8"
},
{
"name":"旅游卫视",
"url": "http://111.48.34.187/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225848/1.m3u8?icpid=88888888&from=1&hms_devid=1223"
},
{
"name":"内蒙古卫视",
"url": "http://111.48.34.176/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225851/1.m3u8?icpid=88888888&from=1&hms_devid=1203"
},
{
"name":"宁夏卫视",
"url": "http://111.48.34.233/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225857/1.m3u8?icpid=88888888&from=1&hms_devid=1223"
},
{
"name":"青海卫视",
"url": "http://111.48.34.234/huaweicdn.hb.chinamobile.com/PLTV/2510088/224/3221225849/1.m3u8?icpid=88888888&from=1&hms_devid=1243"
},
{
"name":"山东教育",
"url": "http://223.82.250.72/live/shandongjy/1.m3u8"
},
{
"name":"凤凰中文HD",
"url": "http://111.13.42.13/PLTV/88888888/224/3221225942/1.m3u8#http://111.13.42.13/PLTV/88888888/224/3221225942/1.m3u8#http://111.13.42.13/PLTV/88888888/224/3221225942/1.m3u8#http://117.169.120.217:8080/live/fhchinese/.m3u8"
},
{
"name":"凤凰资讯HD",
"url": "http://117.169.120.138:8080/live/fhzixun/.m3u8#http://183.207.249.35/PLTV/3/224/3221226923/index.m3u8#http://14.29.60.40/live/5/30/08f9ed0afa5a40eab9f325ac8416a941.m3u8?type=web.cloudplay"
},
{
"name":"耀才财经台",
"url": "http://202.69.67.66:443/webcast/bshdlive-pc/playlist.m3u8#http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8#http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8#http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8#http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8#http://202.69.67.66:443/webcast/bshdlive-pc/playlist.m3u8#rtmp://fc_video.bsgroup.com.hk:443/webcast/bshdlive-pc"
},
{
"name":"八大综合台,",
"url": "http://pili-live-hls.xiandantv.com/xdtv-live/87707f45c16b4208acc9401cdb0b5112.m3u8"
},
{
"name":"凤凰香港HD",
"url": "http://223.110.243.146/PLTV/3/224/3221226975/index.m3u8#http://zhibo.hkstv.tv/livestream/zb2yhapo/playlist.m3u8h#ttp://223.110.243.146/PLTV/3/224/3221226975/index.m3u8"
},
{
"name":"星卫电影台HD",
"url": "http://dlhls.cdn.zhanqi.tv/zqlive/35349_iXsXw.m3u8#http://dlhls.cdn.zhanqi.tv/zqlive/35349_iXsXw.m3u8#http://dlhls.cdn.zhanqi.tv/zqlive/35349_iXsXw.m3u8#http://dlhls.cdn.zhanqi.tv/zqlive/7032_0s2qn_1024/index.m3u8"
},
{
"name":"民视HD",
"url": "http://125.227.35.176:18080/ftv/index.m3u8#http://125.227.35.176:18080/ftv/index.m3u8"
},
{
"name":"民时新闻台,",
"url": "http://live.italkdd.com/cds160/hls/channel012/channel012_2000.m3u8#http://live.italkdd.com/cds160/hls/channel012/channel012_2000.m3u8"
},
{
"name":"幼幼,",
"url": "http://live.italkdd.com/cds160/hls/channel025/channel025_2000.m3u8#http://live.italkdd.com/cds160/hls/channel025/channel025_2000.m3u8"
},
{
"name":"电 影 阁",
"url": "http://dlhls.cdn.zhanqi.tv/zqlive/102444_ZGmRp.m3u8#http://dlhls.cdn.zhanqi.tv/zqlive/102444_ZGmRp.m3u8"
},
{
"name":"红心柚子",
"url": "http://dlhls.cdn.zhanqi.tv/zqlive/35349_iXsXw.m3u8#http://dlhls.cdn.zhanqi.tv/zqlive/35349_iXsXw.m3u8"
},
{
"name":"澳亚卫视",
"url": "http://stream.mastvnet.com/MASTV/sd/live.m3u8#http://stream.mastvnet.com/MASTV/sd/live.m3u8"
},
{
"name":"广东珠江频道",
"url": "http://nclive.grtn.cn/zjpd/sd/live.m3u8#http://nclive.grtn.cn/zjpd/sd/live.m3u8"
},
{
"name":"天狼TV,",
"url": "http://61.216.177.73/sta/ch1865001.m3u8#http://61.216.177.73/sta/ch1865001.m3u8"
},
{
"name":"壹新闻",
"url": "http://d2e6xlgy8sg8ji.cloudfront.net/liveedge/eratv3/chunklist.m3u8#http://d2e6xlgy8sg8ji.cloudfront.net/liveedge/eratv3/playlist_w.m3u8#http://d2e6xlgy8sg8ji.cloudfront.net/liveedge/eratv3/chunklist.m3u8#http://d2e6xlgy8sg8ji.cloudfront.net/liveedge/eratv2/chunklist.m3u8#http://d2e6xlgy8sg8ji.cloudfront.net/liveedge/eratv3/playlist.m3u8http://d2e6xlgy8sg8ji.cloudfront.net/liveedge/eratv1/chunklist.m3u8#http://d2e6xlgy8sg8ji.cloudfront.net/liveedge/eratv3/playlist_w.m3u8"
},
{
"name":"广州综合频道",
"url": "http://23436.liveplay.myqcloud.com/live/23436_dc2089877e7111e892905cb9018cf0d4.flv"
},
{
"name":"广州综合频道",
"url": "http://23436.liveplay.myqcloud.com/live/23436_dc2089877e7111e892905cb9018cf0d4.m3u8"
},
{
"name":"广州新闻频道",
"url": "http://23436.liveplay.myqcloud.com/live/23436_e2fd8e1e7e7111e892905cb9018cf0d4.flv"
},
{
"name":"广州经济频道",
"url": "http://23436.liveplay.myqcloud.com/live/23436_9a1e9e7a84b211e892905cb9018cf0d4.flv"
},
{
"name":"广州经济频道",
"url": "http://23436.liveplay.myqcloud.com/live/23436_9a1e9e7a84b211e892905cb9018cf0d4.m3u8"
},
{
"name":"广州影视频道",
"url": "http://23436.liveplay.myqcloud.com/live/23436_8a1764ff84b211e892905cb9018cf0d4.flv"
},
{
"name":"广州影视频道",
"url": "http://23436.liveplay.myqcloud.com/live/23436_8a1764ff84b211e892905cb9018cf0d4.m3u8"
},
{
"name":"广州生活频道",
"url": "http://23436.liveplay.myqcloud.com/live/23436_5fe853ef84b211e892905cb9018cf0d4.flv"
},
{
"name":"广州生活频道",
"url": "http://23436.liveplay.myqcloud.com/live/23436_5fe853ef84b211e892905cb9018cf0d4.m3u8"
},
{
"name":"广州少儿频道",
"url": "http://23436.liveplay.myqcloud.com/live/23436_b2eb109d84b211e892905cb9018cf0d4.flv"
},
{
"name":"广州少儿频道",
"url": "http://23436.liveplay.myqcloud.com/live/23436_b2eb109d84b211e892905cb9018cf0d4.m3u8"
},
{
"name":"广州购物频道",
"url": "http://23436.liveplay.myqcloud.com/live/23436_741b268384b211e892905cb9018cf0d4.flv"
},
{
"name":"广州购物频道",
"url": "http://23436.liveplay.myqcloud.com/live/23436_741b268384b211e892905cb9018cf0d4.m3u8"
},
{
"name":"广东卫视频道",
"url": "http://gdlive.grtn.cn/gdws1/sd/live.m3u8"
},
{
"name":"广东珠江频道",
"url": "http://gdlive.grtn.cn/zjpd1/sd/live.m3u8"
},
{
"name":"广东体育频道",
"url": "http://gdlive.grtn.cn/typd1/sd/live.m3u8"
},
{
"name":"广东公共频道",
"url": "http://gdlive.grtn.cn/ggpd1/sd/live.m3u8"
},
{
"name":"广东新闻频道",
"url": "http://gdlive.grtn.cn/xwpd1/sd/live.m3u8"
},
{
"name":"广东嘉佳卡通",
"url": "http://gdlive.grtn.cn/jjkt1/sd/live.m3u8"
},
{
"name":"TVS1经济科教",
"url": "http://gdlive.grtn.cn/newtvs1/hd/live.m3u8"
},
{
"name":"TVS2南方卫视",
"url": "http://gdlive.grtn.cn/newtvs2/sd/live.m3u8"
},
{
"name":"TVS5广东少儿",
"url": "http://gdlive.grtn.cn/newtvs5/sd/live.m3u8"
},
{
"name":"广东国际频道",
"url": "http://gdlive.grtn.cn/gjpd1/sd/live.m3u8"
},
{
"name":"包头生活服务",
"url": "http://live.btgdt.com/channels/btgd/shfw/flv:500k/live?1543815704509"
},
{
"name":"三佳购物频道",
"url": "http://weblive.hebtv.com/live/sjgw_bq/index.m3u8"
},
{
"name":"湖北经视频道",
"url": "http://live.cjyun.org/video/s10008-hbjs2018/index.m3u8"
},
{
"name":"长春商业频道",
"url": "http://stream.chinactv.com/ctv4/sd/live.m3u8"
},
{
"name":"甘肃品质生活",
"url": "http://stream.gstv.com.cn/pzsh/sd/live.m3u8"
},
{
"name":"张家界2台",
"url": "http://stream.zjjrtv.com/zjjtv2/hd/live.m3u8"
},
{
"name":"江苏徐州1频道",
"url": "http://stream.huaihai.tv/xwzh/sd/live.m3u8"
},
{
"name":"江苏徐州2频道",
"url": "http://stream.huaihai.tv/jjsh/sd/live.m3u8"
},
{
"name":"江苏徐州3频道",
"url": "http://stream.huaihai.tv/wyys/sd/live.m3u8"
},
{
"name":"江苏徐州4频道",
"url": "http://stream.huaihai.tv/ggpd/sd/live.m3u8"
},
{
"name":"山东临沂综合",
"url": "http://112.17.39.138/guangdianyun_34253/tv_channel_253__redirect__34253.m3u8"
},
{
"name":"星河频道,",
"url": "http://tvbilive14-i.akamaihd.net/hls/live/496347/CXHMovie/CXHMovie-03.m3u8"
},
{
"name":"BloombergTVEurope",
"url": "http://cdn-videos.akamaized.net/btv/desktop/akamai/europe/live/primary.m3u8"
},
{
"name":"DEPORTESSevillaFC",
"url": "http://sevillafc_live-lh.akamaihd.net/i/video_0@354142/index_0300_av-b.m3u8?iptvgratis?chile.m3u8"
},
{
"name":"EBS1",
"url": "http://ebs.co.kr/common/swf/onair_player.swf#http://ebs.co.kr/common/swf/onair_player.swf?A=true&V=rtmp://ebsonair.ebs.co.kr/groundwavefamilypc/familypc1m"
},
{
"name":"GOODTV",
"url": "http://mobliestream.c3tv.com:554/live/goodtv.sdp/playlist.m3u8#http://mobliestream.c3tv.com:554/live/goodtv.sdp/playlist.m3u8"
},
{
"name":"JapanetChannelDX",
"url": "http://bcsecurelivehls-i.akamaihd.net/hls/live/265320/5043843989001/140130JTDX/index_1200.m3u8"
},
{
"name":"jinchaotuoqiao2",
"url": "http://youku.cdn-163.com/20180616/7530_7432dd0c/index.m3u8"
},
{
"name":"LATINOSTvMarti",
"url": "http://ocb-lh.akamaihd.net/i/ocb_mpls_tvmc1@383606/index_0540_av-b.m3u8?sd=10&rebase=on"
},
{
"name":"MBC MAX",
"url": "http://63.237.48.3/ios/MBC_MAX/MBC_MAX.m3u8#http://63.237.48.3/ios/MBC_MAX/MBC_MAX.m3u8"
},
{
"name":"N/A",
"url": "http://b2everyrai-lh.akamaihd.net:80/i/raimovie_1@67348/master.m3u8"
},
{
"name":"NOTICIASMilenioTV",
"url": "http://bcoveliveios-i.akamaihd.net/hls/live/201661/57828478001/[email protected]"
},
{
"name":"RAI4",
"url": "http://b2everyrai-lh.akamaihd.net/i/rai4_1@181951/master.m3u8"
},
{
"name":"RaiMovie",
"url": "http://b2everyrai-lh.akamaihd.net/i/raimovie_1@67348/master.m3u8"
},
{
"name":"SBS CNBC",
"url": "http://sbsplayer.sbs.co.kr/OnAir/NeTVOnAir_1_1_0_0.swf#http://sbsplayer.sbs.co.kr/OnAir/NeTVOnAir_1_1_0_0.swf?url=http://sbsplayer.sbs.co.kr/OnAir/env/CNBC.xml&controlS"
},
{
"name":"SBS MTV",
"url": "http://sbsplayer.sbs.co.kr/OnAir/NeTVOnAir_1_1_0_0.swf#http://sbsplayer.sbs.co.kr/OnAir/NeTVOnAir_1_1_0_0.swf?url=http://sbsplayer.sbs.co.kr/OnAir/env/MTV.xml&controlSet"
},
{
"name":"shenhaiyueyu",
"url": "http://youku.cdn-tudou.com/20180529/6163_d5abe341/index.m3u8"
},
{
"name":"SKYTG24",
"url": "http://skyianywhere2-i.akamaihd.net:80/hls/live/200275/tg24/playlist.m3u8"
},
{
"name":"wobushiyaoshen",
"url": "http://fuli.zuida-youku-le.com/20180709/29707_033618d8/index.m3u8"
},
{
"name":"爱情公寓24小时循环播放",
"url": "http://dlhls.cdn.zhanqi.tv/zqlive/34338_PVMT5.m3u8"
},
{
"name":"车视界",
"url": "http://dlhls.live.cnlive.com:1935/cdn/cheshijie/playlist.m3u8?k=a96eca0d06c1f4929bb1d42af9b11c94&t=1453173747"
},
{
"name":"大片直播",
"url": "http://dlhls.cdn.zhanqi.tv/zqlive/7032_0s2qn.m3u8"
},
{
"name":"第1财经",
"url": "http://w1.livecache.yicai.com/hls/live/CBN_sd/live.m3u8#http://w1.livecache.yicai.com/hls/live/CBN_hd/live.m3u8"
},
{
"name":"凤凰HD",
"url": "http://223.82.250.72/live/fhchinese/1.m3u8"
},
{
"name":"凤凰卫视香港台",
"url": "http://v.znds.com/a8c513fb0aff806867a4613ae509101ef"
},
{
"name":"凤-凰-中-文",
"url": "http://live.fengshows.com/live/PCC_500k/index.m3u8?ts=1526841084049&token=d754aa8774f70c578ffe9ed09aba6e41"
},
{
"name":"凤-凰-中-文",
"url": "http://223.82.250.72/ysten-bussiness/live/fhchinese/1.m3u8"
},
{
"name":"凤凰中文HD-1",
"url": "http://live.fengshows.com/live/PCC_500k/index.m3u8"
},
{
"name":"凤-凰-资-讯",
"url": "http://223.82.250.72/ysten-bussiness/live/fhzixun/1.m3u8"
},
{
"name":"凤-凰-资-讯",
"url": "http://live.fengshows.com/live/PIN_500k/index.m3u8?ts=1526841084049&token=d754aa8774f70c578ffe9ed09aba6e41"
},
{
"name":"港台RTHK31",
"url": "http://rthklive1-lh.akamaihd.net/i/rthk31_1@167495/index_810_av-b.m3u8?sd=10&rebase=on"
},
{
"name":"加拿大CTV-NEWS16",
"url": "http://ams-lp10.9c9media.com/hls-live/livepkgr/_definst_/liveNews/News18.m3u8"
},
{
"name":"加拿大CTV-NEWS48",
"url": "http://ams-lp5.9c9media.com/hls-live/livepkgr/_definst_/liveNews/News48.m3u8"
},
{
"name":"欧美MTV",
"url": "http://m2otv-lh.akamaihd.net/i/m2oTv_1@186074/index_600_av-b.m3u8"
},
{
"name":"日本卫星电影台",
"url": "rtsp://c.itvitv.com/mega"
},
{
"name":"生命电视",
"url": "http://211.73.19.201/live/E6290DC0-BE6A-B7C4-79F5-114BDB417F9E?fmt=x264_500K_ts&cpid=admin&size=1280X720&toflv=15"
},
{
"name":"台湾生命台",
"url": "http://211.73.19.201/live/E6290DC0-BE6A-B7C4-79F5-114BDB417F9E?fmt=x264_500K_ts&cpid=admin&size=1280X720&toflv=1"
},
{
"name":"希望电视台",
"url": "http://bcliveuniv-lh.akamaihd.net/i/Live_1@384161/index_1800_av-p.m3u8"
},
{
"name":"喜与忧",
"url": "http://dlhls.cdn.zhanqi.tv/zqlive/69410_SgVxl.m3u8"
},
{
"name":"香菜怪人",
"url": "http://dlhls.cdn.zhanqi.tv/zqlive/115384_jC7nR.m3u8"
},
{
"name":"香港耀才财经",
"url": "http://202.69.67.66:443/webcast/bshdlive-pc/playlist.m3u8#http://202.69.67.66:443/webcast/bshdlive-pc/playlist.m3u8"
},
{
"name":"野外频道",
"url": "rtsp://c.itvitv.com/wild"
},
{
"name":"壹新闻",
"url": "http://d2e6xlgy8sg8ji.cloudfront.net/liveedge/eratv1/chunklist.m3u8"
},
{
"name":"壹新闻",
"url": "http://d2e6xlgy8sg8ji.cloudfront.net/liveedge/eratv2/chunklist.m3u8"
},
{
"name":"壹新闻",
"url": "http://d2e6xlgy8sg8ji.cloudfront.net/liveedge/eratv2/playlist_w.m3u8"
},
{
"name":"壹新闻",
"url": "http://d2e6xlgy8sg8ji.cloudfront.net/liveedge/eratv3/playlist.m3u8"
},
{
"name":"印度 india TV",
"url": "http://indiatvnews-lh.akamaihd.net/i/ITV_1@199237//master.m3u8#http://indiatvnews-lh.akamaihd.net/i/ITV_1@199237//master.m3u8"