forked from github2017luo/CMP4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmbak.txt
More file actions
1268 lines (1214 loc) · 123 KB
/
mbak.txt
File metadata and controls
1268 lines (1214 loc) · 123 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": "斗鱼电影1",
"urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=925724"]
}, {
"name": "斗鱼电影2",
"urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=122402"]
}, {
"name": "斗鱼电影3",
"urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=85894"]
}, {
"name": "斗鱼电影4",
"urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=310926"]
}, {
"name": "斗鱼电影5",
"urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=263824"]
}, {
"name": "斗鱼电影6",
"urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=747764"]
}, {
"name": "斗鱼动漫",
"urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=206858"]
}, {
"name": "斗鱼4K",
"urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=9249162"]
}, {
"name": "国语动漫",
"urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=6449849"]
}, {
"name": "鬼吹灯",
"urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=7701735"]
}, {
"name": "BesTv影院1",
"urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226757/45949783.smil"]
}, {
"name": "Bestv影院2",
"urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226816/48629572.smil"]
}, {
"name": "Bestv影院3",
"urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226748/45950069.smil"]
}, {
"name": "Bestv影院4",
"urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226797/47878049.smil"]
}, {
"name": "Bestv电视剧1",
"urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226761/45973212.smil"]
}, {
"name": "Bestv电视剧2",
"urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226022/10000100000000060000000002296864_0.smil"]
}, {
"name": "Bestv电视剧3",
"urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226752/45973624.smil"]
}, {
"name": "Bestv动画1",
"urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226756/45973923.smil"]
}, {
"name": "Bestv动画2",
"urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226917/57526342.smil"]
}, {
"name": "埋堆堆01",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561226091-1199561226091-5434639045542019072-2399122575638-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆03",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561219773-1199561219773-5434611909938642944-2399122563002-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆04",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563459241-1199563459241-5444230351759081472-2399127041938-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆05",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563478941-1199563478941-5444314962614812672-2399127081338-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆06",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561223711-1199561223711-5434628823519854592-2399122570878-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆07",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199564000752-1199564000752-5446556123794505728-2399128124960-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆08",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563995848-1199563995848-5446535061274886144-2399128115152-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆09",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563493628-1199563493628-5444378042799489024-2399127110712-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆10",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563478721-1199563478721-5444314017722007552-2399127080898-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆11",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561463578-1199561463578-5435659044440244224-2399123050612-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆12",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561245453-1199561245453-5434722204698804224-2399122614362-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆13",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199564003640-1199564003640-5446568527660056576-2399128130736-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆14",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561153241-1199561153241-5434326157174505472-2399122429938-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆17",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561179116-1199561179116-5434437289453289472-2399122481688-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆18",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561185543-1199561185543-5434464893208100864-2399122494542-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆19",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563478867-1199563478867-5444314644787232768-2399127081190-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆20",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199564060588-1199564060588-5446813117457629184-2399128244632-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆21",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563481280-1199563481280-5444325008543318016-2399127086016-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆22",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561185548-1199561185548-5434464914682937344-2399122494552-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆23",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563492830-1199563492830-5444374615415586816-2399127109116-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆24",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563484986-1199563484986-5444340925692116992-2399127093428-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆25",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561217760-1199561217760-5434603264169476096-2399122558976-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆26",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563486009-1199563486009-5444345319443660800-2399127095474-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆27",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563491091-1199563491091-5444367146467459072-2399127105638-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆28",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563478540-1199563478540-5444313240332926976-2399127080536-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆29",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561235975-1199561235975-5434681496998772736-2399122595406-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆30",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561240999-1199561240999-5434703074914467840-2399122605454-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆31",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563461114-1199563461114-5444238396232826880-2399127045684-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆32",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563489752-1199563489752-5444361395506249728-2399127102960-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆33",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561181108-1199561181108-5434445845028143104-2399122485672-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆34",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561277675-1199561277675-5434860597135015936-2399122678806-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆35",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561176240-1199561176240-5434424937127346176-2399122475936-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆37",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561277694-1199561277694-5434860678739394560-2399122678844-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆38",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561179151-1199561179151-5434437439777144832-2399122481758-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆39",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563483195-1199563483195-5444333233405689856-2399127089846-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆40",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563452505-1199563452505-5444201420859375616-2399127028466-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆41",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563479483-1199563479483-5444317290487087104-2399127082422-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆42",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561278783-1199561278783-5434865355958779904-2399122681022-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆43",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561277724-1199561277724-5434860807588413440-2399122678904-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆44",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563491137-1199563491137-5444367344035954688-2399127105730-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆46",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561223732-1199561223732-5434628913714167808-2399122570920-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆48",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563489431-1199563489431-5444360016821747712-2399127102318-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆49",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561277677-1199561277677-5434860605724950528-2399122678810-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆50",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561240090-1199561240090-5434699170789195776-2399122603636-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆51",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561178473-1199561178473-5434434527789318144-2399122480402-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆53",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199564067003-1199564067003-5446840669672833024-2399128257462-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆54",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563551865-1199563551865-5444628168809906176-2399127227186-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆56",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561152145-1199561152145-5434321449890349056-2399122427746-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆57",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563452337-1199563452337-5444200699304869888-2399127028130-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆58",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561176260-1199561176260-5434425023026692096-2399122475976-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆59",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561462555-1199561462555-5435654650688700416-2399123048566-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆60",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563479466-1199563479466-5444317217472643072-2399127082388-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆61",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561153167-1199561153167-5434325839346925568-2399122429790-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆63",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561182641-1199561182641-5434452429213007872-2399122488738-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆64",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561177177-1199561177177-5434428961511702528-2399122477810-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆65",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563564801-1199563564801-5444683728506847232-2399127253058-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆66",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563488528-1199563488528-5444356138466279424-2399127100512-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆67",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561181026-1199561181026-5434445492840824832-2399122485508-10057-A-0-1.m3u8"]
}, {
"name": "埋堆堆68",
"urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561158071-1199561158071-5434346901866545152-2399122439598-10057-A-0-1.m3u8"]
}
{"group": "教育网源","channels": [{"name":"CCTV-1高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv1hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv1.m3u8"]},
{"name":"CCTV-2高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv2hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv2.m3u8"]},
{"name":"CCTV-3高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv3hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv3.m3u8"]},
{"name":"CCTV-4高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv4hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv4.m3u8"]},
{"name":"CCTV-5高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv5hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv5.m3u8"]},
{"name":"CCTV-5+高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv5phd.m3u8"]},
{"name":"CCTV-6高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv6hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv6.m3u8"]},
{"name":"CCTV-7高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv7hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv7.m3u8"]},
{"name":"CCTV-8高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv8hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv8.m3u8"]},
{"name":"CCTV-9高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv9hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv9.m3u8"]},
{"name":"CCTV-10高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv10hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv10.m3u8"]},
{"name":"CCTV-11戏曲","urls":["http://live.scuec.edu.cn:8080/hls/cctv11.m3u8"]},
{"name":"CCTV-12高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv12hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv12.m3u8"]},
{"name":"CCTV-13高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv13hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv13.m3u8"]},
{"name":"CCTV-15音乐","urls":["http://live.scuec.edu.cn:8080/hls/cctv15.m3u8"]},
{"name":"CCTV-14高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv14hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv14.m3u8"]},
{"name":"CCTV-17高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv17hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv17.m3u8"]},
{"name":"CHC高清电影","urls":["http://live.scuec.edu.cn:8080/hls/chchd.m3u8"]},
{"name":"CHC家庭影院","urls":["http://live.scuec.edu.cn:8080/hls/chctv.m3u8"]},
{"name":"CHC动作电影","urls":["http://live.scuec.edu.cn:8080/hls/chcatv.m3u8"]},
{"name":"凤凰资讯高清","urls":["http://live.scuec.edu.cn:8080/hls/fhzxhd.m3u8"]},
{"name":"凤凰中文高清","urls":["http://live.scuec.edu.cn:8080/hls/fhzwhd.m3u8"]},
{"name":"凤凰中文","urls":["http://live.scuec.edu.cn:8080/hls/fhzw.m3u8"]},
{"name":"凤凰资讯","urls":["http://live.scuec.edu.cn:8080/hls/fhzx.m3u8"]},
{"name":"凤凰电影","urls":["http://live.scuec.edu.cn:8080/hls/fhdy.m3u8"]},
{"name":"Discovery","urls":["http://live.scuec.edu.cn:8080/hls/discovery.m3u8"]},
{"name":"国家地理","urls":["http://live.scuec.edu.cn:8080/hls/natlgeo.m3u8"]},
{"name":"Channel V","urls":["http://live.scuec.edu.cn:8080/hls/channelv.m3u8"]},
{"name":"星空卫视","urls":["http://live.scuec.edu.cn:8080/hls/startv.m3u8"]},
{"name":"Star Sports","urls":["http://live.scuec.edu.cn:8080/hls/starsports.m3u8"]},
{"name":"湖南卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/hunanhd.m3u8","http://live.scuec.edu.cn:8080/hls/hunantv.m3u8"]},
{"name":"浙江卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/zjhd.m3u8","http://live.scuec.edu.cn:8080/hls/zjtv.m3u8"]},
{"name":"江苏卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/jshd.m3u8","http://live.scuec.edu.cn:8080/hls/jstv.m3u8"]},
{"name":"东方卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/dfhd.m3u8","http://live.scuec.edu.cn:8080/hls/dftv.m3u8"]},
{"name":"安徽卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/ahhd.m3u8","http://live.scuec.edu.cn:8080/hls/ahtv.m3u8"]},
{"name":"黑龙江卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/hljhd.m3u8","http://live.scuec.edu.cn:8080/hls/hljtv.m3u8"]},
{"name":"辽宁卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/lnhd.m3u8","http://live.scuec.edu.cn:8080/hls/lntv.m3u8"]},
{"name":"深圳卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/szhd.m3u8","http://live.scuec.edu.cn:8080/hls/sztv.m3u8"]},
{"name":"广东卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/gdhd.m3u8","http://live.scuec.edu.cn:8080/hls/gdtv.m3u8"]},
{"name":"天津卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/tjhd.m3u8","http://live.scuec.edu.cn:8080/hls/tjtv.m3u8"]},
{"name":"湖北卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/hbhd.m3u8","http://live.scuec.edu.cn:8080/hls/hbtv.m3u8"]},
{"name":"山东卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/sdhd.m3u8","http://live.scuec.edu.cn:8080/hls/sdtv.m3u8"]},
{"name":"重庆卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/cqhd.m3u8","http://live.scuec.edu.cn:8080/hls/cqtv.m3u8"]},
{"name":"福建东南卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/dnhd.m3u8","http://live.scuec.edu.cn:8080/hls/dntv.m3u8"]},
{"name":"四川卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/schd.m3u8","http://live.scuec.edu.cn:8080/hls/sctv.m3u8"]},
{"name":"河北卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/hebhd.m3u8","http://live.scuec.edu.cn:8080/hls/hebtv.m3u8"]},
{"name":"江西卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/jxhd.m3u8"]},
{"name":"河南卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/hnhd.m3u8","http://live.scuec.edu.cn:8080/hls/hntv.m3u8"]},
{"name":"广西卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/gxhd.m3u8","http://live.scuec.edu.cn:8080/hls/gxtv.m3u8"]},
{"name":"吉林卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/jlhd.m3u8"]},
{"name":"中国教育电视台1高清","urls":["http://live.scuec.edu.cn:8080/hls/cetv1hd.m3u8"]},
{"name":"海南卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/lyhd.m3u8","http://live.scuec.edu.cn:8080/hls/lytv.m3u8"]},
{"name":"贵州卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/gzhd.m3u8","http://live.scuec.edu.cn:8080/hls/gztv.m3u8"]},
{"name":"陕西卫视","urls":["http://live.scuec.edu.cn:8080/hls/sxtv.m3u8"]},
{"name":"吉林卫视","urls":["http://live.scuec.edu.cn:8080/hls/jltv.m3u8"]},
{"name":"西藏卫视","urls":["http://live.scuec.edu.cn:8080/hls/xztv.m3u8"]},
{"name":"内蒙古卫视","urls":["http://live.scuec.edu.cn:8080/hls/nmtv.m3u8"]},
{"name":"青海卫视","urls":["http://live.scuec.edu.cn:8080/hls/qhtv.m3u8"]},
{"name":"山西卫视","urls":["http://live.scuec.edu.cn:8080/hls/sxrtv.m3u8"]},
{"name":"新疆卫视","urls":["http://live.scuec.edu.cn:8080/hls/xjtv.m3u8"]},
{"name":"云南卫视","urls":["http://live.scuec.edu.cn:8080/hls/yntv.m3u8"]},
{"name":"江西卫视","urls":["http://live.scuec.edu.cn:8080/hls/jxtv.m3u8"]},
{"name":"厦门卫视","urls":["http://live.scuec.edu.cn:8080/hls/xmtv.m3u8"]},
{"name":"宁夏卫视","urls":["http://live.scuec.edu.cn:8080/hls/nxtv.m3u8"]},
{"name":"甘肃卫视","urls":["http://live.scuec.edu.cn:8080/hls/gstv.m3u8"]},
{"name":"兵团卫视","urls":["http://live.scuec.edu.cn:8080/hls/bttv.m3u8"]},
{"name":"延边卫视","urls":["http://live.scuec.edu.cn:8080/hls/ybtv.m3u8"]},
{"name":"三沙卫视","urls":["http://live.scuec.edu.cn:8080/hls/sstv.m3u8"]},
{"name":"金鹰卡通","urls":["http://live.scuec.edu.cn:8080/hls/jykttv.m3u8"]},
{"name":"优漫卡通","urls":["http://live.scuec.edu.cn:8080/hls/ymkttv.m3u8"]},
{"name":"新动漫","urls":["http://live.scuec.edu.cn:8080/hls/xdmtv.m3u8"]},
{"name":"探案剧场","urls":["http://live.scuec.edu.cn:8080/hls/tajctv.m3u8"]},
{"name":"卡通剧场高清","urls":["http://live.scuec.edu.cn:8080/hls/ktjchd.m3u8"]},
{"name":"大众影视高清","urls":["http://live.scuec.edu.cn:8080/hls/dzyshd.m3u8"]},
{"name":"家庭影院高清","urls":["http://live.scuec.edu.cn:8080/hls/jtyyhd.m3u8"]},
{"name":"家庭剧场高清","urls":["http://live.scuec.edu.cn:8080/hls/jtjchd.m3u8"]},
{"name":"CGTN纪实高清","urls":["http://live.scuec.edu.cn:8080/hls/cgtndochd.m3u8"]},
{"name":"足球频道","urls":["http://live.scuec.edu.cn:8080/hls/zqhd.m3u8"]},
{"name":"CGTN","urls":["http://live.scuec.edu.cn:8080/hls/cctv16.m3u8"]},
{"name":"文化精品","urls":["http://live.scuec.edu.cn:8080/hls/whjptv.m3u8"]},
{"name":"老故事","urls":["http://live.scuec.edu.cn:8080/hls/lgstv.m3u8"]},
{"name":"纪实人文高清","urls":["http://live.scuec.edu.cn:8080/hls/docuchina.m3u8"]},
{"name":"金鹰纪实高清","urls":["http://live.scuec.edu.cn:8080/hls/gedocu.m3u8"]},
{"name":"北京卫视","urls":["http://live.scuec.edu.cn:8080/hls/btv1.m3u8"]},
{"name":"北京文艺","urls":["http://live.scuec.edu.cn:8080/hls/btv2.m3u8"]},
{"name":"北京科教","urls":["http://live.scuec.edu.cn:8080/hls/btv3.m3u8"]},
{"name":"北京影视","urls":["http://live.scuec.edu.cn:8080/hls/btv4.m3u8"]},
{"name":"北京财经","urls":["http://live.scuec.edu.cn:8080/hls/btv5.m3u8"]},
{"name":"北京生活","urls":["http://live.scuec.edu.cn:8080/hls/btv7.m3u8"]},
{"name":"北京青年","urls":["http://live.scuec.edu.cn:8080/hls/btv8.m3u8"]},
{"name":"北京新闻","urls":["http://live.scuec.edu.cn:8080/hls/btv9.m3u8"]},
{"name":"北京卡酷少儿","urls":["http://live.scuec.edu.cn:8080/hls/btv10.m3u8"]},
{"name":"北京冬奥纪实","urls":["http://live.scuec.edu.cn:8080/hls/btv11.m3u8"]},
{"name":"北京卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/btv1hd.m3u8"]},
{"name":"北京文艺高清","urls":["http://live.scuec.edu.cn:8080/hls/btv2hd.m3u8"]},
{"name":"Kaku少儿高清","urls":["http://live.scuec.edu.cn:8080/hls/btv10hd.m3u8"]},
{"name":"北京冬奥纪实高清","urls":["http://live.scuec.edu.cn:8080/hls/btv11hd.m3u8"]},
{"name":"北京影视高清","urls":["http://live.scuec.edu.cn:8080/hls/btv4hd.m3u8"]},
{"name":"北京新闻高清","urls":["http://live.scuec.edu.cn:8080/hls/btv9hd.m3u8"]},
{"name":"辽宁影视剧","urls":["http://live.scuec.edu.cn:8080/hls/lnysjtv.m3u8"]},
{"name":"辽宁体育","urls":["http://live.scuec.edu.cn:8080/hls/lntytv.m3u8"]},
{"name":"中国教育电视台1","urls":["http://live.scuec.edu.cn:8080/hls/cetv1.m3u8"]},
{"name":"中国教育电视台3","urls":["http://live.scuec.edu.cn:8080/hls/cetv3.m3u8"]},
{"name":"中国教育电视台4","urls":["http://live.scuec.edu.cn:8080/hls/cetv4.m3u8"]},
{"name":"山东教育电视台","urls":["http://live.scuec.edu.cn:8080/hls/sdetv.m3u8"]}
]},
{"key":"rrm_spider","name":"人人迷(免解)","type":3,"api":"csp_Rrm","searchable":1,"quickSearch":1,"filterable":0,"ext":"B9C8093A210EADA1"},
{"key":"nfzjm_spider","name":"南府追剧(AT)","type":3,"api":"csp_Nfzjm","searchable":1,"quickSearch":1,"filterable":1},
{"key":"ysgc_spider","name":"影视工厂(V0)","type":3,"api":"csp_Ysgc","searchable":1,"quickSearch":1,"filterable":1},
{"key":"zjdr_spider","name":"追剧达人(V0)","type":3,"api":"csp_Zjdr","searchable":1,"quickSearch":1,"filterable":1},
{"key":"enlienli_spider","name":"嗯哩嗯哩(SP)","type":3,"api":"csp_Enlienli","searchable":1,"quickSearch":1,"filterable":1},
{"key":"2345_spider_li","name":"2345影视(官源)","type":3,"api":"csp_YS2345","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/ext/2345.json"},
{"key":"auete_spider_li","name":"Auete影视(SP)","type":3,"api":"csp_Auete","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/ext/auete.json"},
{"key":"n0ys_spider_li","name":"90影视(SP)","type":3,"api":"csp_N0ys","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/ext/90ys.json"},
{"key":"cokemv_spider_li","name":"Cokemv(SP)","type":3,"api":"csp_Cokemv","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/ext/cokemv.json"},
{"key":"adys_spider_li","name":"爱迪影视(SP)","type":3,"api":"csp_Aidi","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/ext/aidi.json"},
{"key":"jpys_spider_li","name":"极品影视(SP)","type":3,"api":"csp_Jpys","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/ext/jipin.json"},
{"key":"9ekk_spider_li","name":"9亿看看(SP)","type":3,"api":"csp_Nekk","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/ext/9ekk.json"},
{"key":"csp_xpath_cjt_li","name":"CJT影视(XP)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/xpath/cjtys.json"},
{"key":"csp_xpath_saohuotv_li","name":"骚火电影(XP)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/xpath/saohuotv2.json"},
{"key":"csp_xpath_subb_li","name":"素白白影视(XP)","type":3,"api":"csp_XPathSubb","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/xpath/subaibai.json"},
{"key":"csp_xpath_dm84_li","name":"动漫巴士(XP)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/xpath/dm84.json"},
{"key":"csp_xpath_age_li","name":"AGE动漫(XP)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/xpath/agefans.json"},
{"key":"csp_xpath_meiju56_yo","name":"美剧网(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/meiju56.json" },
{"key":"csp_xpath_waipian2_yo","name":"歪片星球(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/waipian2.json" },
{"key":"csp_xpath_vipmv_yo","name":"追剧(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/vipmv.json"},
{"key":"csp_xpath_xkys_yo","name":"星空(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/xkys.json"},
{"key":"csp_xpath_4kyu_yo","name":"一只鱼4K(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/4kyu.json"},
{"key":"csp_xpath_555_yo","name":"555电影(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/555.json"},
{"key":"csp_xpath_cjt_yo","name":"CJT影视(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/cjtys.json"},
{"key":"csp_xpath_gimytv_yo","name":"GimyTV(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/gimytv.json"},
{"key":"csp_xpath_jpyszl_yo","name":"极品(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/jpys.json"},
{"key":"csp_xpath_jumi_yo","name":"剧迷(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/jumi.json"},
{"key":"csp_xpath_lezhutv_yo","name":"lezhu(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/lezhutv.json"},
{"key":"csp_xpath_miniku_yo","name":"迷你库(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/miniku.json"},
{"key":"csp_xpath_Ole_yo","name":"欧乐(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/onedianshi.json"},
{"key":"csp_xpath_Onedian_yo","name":"ONE蓝光(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/olevod.json"},
{"key":"csp_xpath_pianba_yo","name":"片库(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/pianba.json"},
{"key":"csp_xpath_sky4k_yo","name":"天空4K(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/sky4k.json"},
{"key":"csp_xpath_tvci_yo","name":"大师兄(XPMac)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/tvci.json"},
{"key":"csp_xpath_duboku_yo","name":"独播库(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/duboku.json" },
{"key":"csp_xpath_duboku2_yo","name":"独播库2(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/duboku2.json" },
{"key":"csp_xpath_1010dy_yo","name":"双十(XPMac)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/1010dy.json" },
{"key":"csp_xpath_cctv68_yo","name":"狐狸影视(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/cctv68.json" },
{"key":"csp_xpath_smdyy_yo","name":"神马影院(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/smdyy.json" },
{"key":"csp_xpath_dd520_yo","name":"多多(XPath)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/dd520.json"},
{"key":"csp_xpath_fantuan_yo","name":"饭团(XPath)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/fantuan.json"},
{"key":"csp_xpath_axx_yo","name":"爱西西(XPath)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/aixixi.json"},
{"key":"csp_xpath_jpys_yo","name":"极品(XPath)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/jpys.json"},
{"key":"csp_xpath_94sm_yo","name":"94神马(XPath)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/94sm.json"},
{"key":"csp_xpath_age_yo","name":"AGE动漫(XPath)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/agefans.json"},
{"key":"csp_xpath_dm84_yo","name":"动漫巴士(XPath)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/dm84.json"},
{"key":"csp_xpath_newfli_yo","name":"newfli(XPath)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/newfli.json"},
{"key":"csp_xpath_saohuotv_yo","name":"骚火电影(XPath)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/saohuotv2.json"},
{"key":"csp_xpath_egg_yo","name":"蛋蛋影院(XPath)","type":3,"api":"csp_XPathEgg","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/egg.json"},
{"key":"csp_yysdali_yo","name":"YYDS影视(XPath)","type":3,"api":"csp_YydsAli","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/yyds.json"},
{"key":"csp_yinghua_yo","name":"樱花动漫(XPath)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://youmostfear.coding.net/p/Fan/d/mao/git/raw/master/xpath/yinghua.json"},
{"key":"csp_appys_xiaogui_007影视", "name":"007影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_007影视"},
{"key":"csp_appys_xiaogui_555电影", "name":"555电影", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_555电影"},
{"key":"csp_appys_xiaogui_5060影院", "name":"5060影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_5060影院"},
{"key":"csp_appys_xiaogui_913e影视", "name":"913e影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_913e影视"},
{"key":"csp_appys_xiaogui_F7影视", "name":"F7影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_F7影视"},
{"key":"csp_appys_xiaogui_one影视", "name":"one影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_one影视"},
{"key":"csp_appys_xiaogui_vip影院", "name":"vip影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_vip影院"},
{"key":"csp_appys_xiaogui_爱尚影视", "name":"爱尚影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_爱尚影视"},
{"key":"csp_appys_xiaogui_爱影吧", "name":"爱影吧", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_爱影吧"},
{"key":"csp_appys_xiaogui_播放呀", "name":"播放呀", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_播放呀"},
{"key":"csp_appys_xiaogui_畅视影视", "name":"畅视影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_畅视影视"},
{"key":"csp_appys_xiaogui_迪迪影院", "name":"迪迪影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_迪迪影院"},
{"key":"csp_appys_xiaogui_嘀哩嘀哩", "name":"嘀哩嘀哩", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_嘀哩嘀哩"},
{"key":"csp_appys_xiaogui_大师兄", "name":"大师兄", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_大师兄"},
{"key":"csp_appys_xiaogui_段友影视", "name":"段友影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_段友影视"},
{"key":"csp_appys_xiaogui_飞英视频", "name":"飞英视频", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_飞英视频"},
{"key":"csp_appys_xiaogui_瓜皮TV", "name":"瓜皮TV", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_瓜皮TV"},
{"key":"csp_appys_xiaogui_海胆影视", "name":"海胆影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_海胆影视"},
{"key":"csp_appys_xiaogui_火箭影视", "name":"火箭影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_火箭影视"},
{"key":"csp_appys_xiaogui_海绵影视", "name":"海绵影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_海绵影视"},
{"key":"csp_appys_xiaogui_海棠视频", "name":"海棠视频", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_海棠视频"},
{"key":"csp_appys_xiaogui_京广航", "name":"京广航", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_京广航"},
{"key":"csp_appys_xiaogui_九合视频", "name":"九合视频", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_九合视频"},
{"key":"csp_appys_xiaogui_久九影视", "name":"久九影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_久九影视"},
{"key":"csp_appys_xiaogui_灵狐影视", "name":"灵狐影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_灵狐影视"},
{"key":"csp_appys_xiaogui_琳琅影视", "name":"琳琅影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_琳琅影视"},
{"key":"csp_appys_xiaogui_极乐阁", "name":"极乐阁", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_极乐阁"},
{"key":"csp_appys_xiaogui_抹茶猪", "name":"抹茶猪", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_抹茶猪"},
{"key":"csp_appys_xiaogui_萌蛋蛋", "name":"萌蛋蛋", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_萌蛋蛋"},
{"key":"csp_appys_xiaogui_迷你库", "name":"迷你库", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_迷你库"},
{"key":"csp_appys_xiaogui_皮皮影视", "name":"皮皮影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_皮皮影视"},
{"key":"csp_appys_xiaogui_氢视频", "name":"氢视频", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_氢视频"},
{"key":"csp_appys_xiaogui_思古影视", "name":"思古影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_思古影视"},
{"key":"csp_appys_xiaogui_神马影院", "name":"神马影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_神马影院"},
{"key":"csp_appys_xiaogui_双十电影", "name":"双十电影", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_双十电影"},
{"key":"csp_appys_xiaogui_糖果影视", "name":"糖果影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_糖果影视"},
{"key":"csp_appys_xiaogui_天空影视", "name":"天空影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_天空影视"},
{"key":"csp_appys_xiaogui_污妖动漫", "name":"污妖动漫", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_污妖动漫"},
{"key":"csp_appys_xiaogui_星空影视", "name":"星空影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_星空影视"},
{"key":"csp_appys_xiaogui_小强TV", "name":"小强TV", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_小强TV"},
{"key":"csp_appys_xiaogui_雪人影视", "name":"雪人影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_雪人影视"},
{"key":"csp_appys_xiaogui_小易影视", "name":"小易影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_小易影视"},
{"key":"csp_appys_xiaogui_影视工场", "name":"影视工场", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_影视工场"},
{"key":"csp_appys_xiaogui_追剧达人", "name":"追剧达人", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"xiaogui_追剧达人"},
{"key":"csp_appys_v1_4K影院", "name":"4K影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_4K影院"},
{"key":"csp_appys_v1_720看片", "name":"720看片", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_720看片"},
{"key":"csp_appys_v1_80影视", "name":"80影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_80影视"},
{"key":"csp_appys_v1_80K影视", "name":"80K影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_80K影视"},
{"key":"csp_appys_v1_CJT影院", "name":"CJT影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_CJT影院"},
{"key":"csp_appys_v1_HG影视", "name":"HG影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_HG影视"},
{"key":"csp_appys_v1_U5影视", "name":"U5影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_U5影视"},
{"key":"csp_appys_v1_VIP影视", "name":"VIP影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_VIP影视"},
{"key":"csp_appys_v1_yoyo", "name":"yoyo", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_yoyo"},
{"key":"csp_appys_v1_爱影视", "name":"爱影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_爱影视"},
{"key":"csp_appys_v1_爱看美剧", "name":"爱看美剧", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_爱看美剧"},
{"key":"csp_appys_v1_艾特影视", "name":"艾特影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_艾特影视"},
{"key":"csp_appys_v1_爱西西", "name":"爱西西", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_爱西西"},
{"key":"csp_appys_v1_阿姨追剧", "name":"阿姨追剧", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_阿姨追剧"},
{"key":"csp_appys_v1_白菜追剧", "name":"白菜追剧", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_白菜追剧"},
{"key":"csp_appys_v1_比邻影视", "name":"比邻影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_比邻影视"},
{"key":"csp_appys_v1_百讯视频", "name":"百讯视频", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_百讯视频"},
{"key":"csp_appys_v1_菜鸟动漫", "name":"菜鸟动漫", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_菜鸟动漫"},
{"key":"csp_appys_v1_畅优视界", "name":"畅优视界", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_畅优视界"},
{"key":"csp_appys_v1_初心影视", "name":"初心影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_初心影视"},
{"key":"csp_appys_v1_锤子追剧", "name":"锤子追剧", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_锤子追剧"},
{"key":"csp_appys_v1_多多影视", "name":"多多影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_多多影视"},
{"key":"csp_appys_v1_大海影视", "name":"大海影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_大海影视"},
{"key":"csp_appys_v1_东南影院", "name":"东南影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_东南影院"},
{"key":"csp_appys_v1_大熊影视", "name":"大熊影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_大熊影视"},
{"key":"csp_appys_v1_段友影视", "name":"段友影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_段友影视"},
{"key":"csp_appys_v1_段友影视", "name":"段友影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_段友影视"},
{"key":"csp_appys_v1_二狗电影", "name":"二狗电影", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_二狗电影"},
{"key":"csp_appys_v1_风车影视", "name":"风车影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_风车影视"},
{"key":"csp_appys_v1_飞捷影视", "name":"飞捷影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_飞捷影视"},
{"key":"csp_appys_v1_疯狂看", "name":"疯狂看", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_疯狂看"},
{"key":"csp_appys_v1_公主影视", "name":"公主影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_公主影视"},
{"key":"csp_appys_v1_辉哥影视", "name":"辉哥影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_辉哥影视"},
{"key":"csp_appys_v1_黄河影视", "name":"黄河影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_黄河影视"},
{"key":"csp_appys_v1_黑马动漫", "name":"黑马动漫", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_黑马动漫"},
{"key":"csp_appys_v1_黑马影视", "name":"黑马影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_黑马影视"},
{"key":"csp_appys_v1_盒子影院", "name":"盒子影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_盒子影院"},
{"key":"csp_appys_v1_筋斗云", "name":"筋斗云", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_筋斗云"},
{"key":"csp_appys_v1_极简影视", "name":"极简影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_极简影视"},
{"key":"csp_appys_v1_久久追剧", "name":"久久追剧", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_久久追剧"},
{"key":"csp_appys_v1_剧迷视频", "name":"剧迷视频", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_剧迷视频"},
{"key":"csp_appys_v1_橘子影视", "name":"橘子影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_橘子影视"},
{"key":"csp_appys_v1_看剧吧", "name":"看剧吧", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_看剧吧"},
{"key":"csp_appys_v1_可米影视", "name":"可米影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_可米影视"},
{"key":"csp_appys_v1_阔贼影院", "name":"阔贼影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_阔贼影院"},
{"key":"csp_appys_v1_快云影音", "name":"快云影音", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_快云影音"},
{"key":"csp_appys_v1_蓝光视频", "name":"蓝光视频", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_蓝光视频"},
{"key":"csp_appys_v1_林谷影视", "name":"林谷影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_林谷影视"},
{"key":"csp_appys_v1_绿箭影视", "name":"绿箭影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_绿箭影视"},
{"key":"csp_appys_v1_乐看视频", "name":"乐看视频", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_乐看视频"},
{"key":"csp_appys_v1_冷视TV", "name":"冷视TV", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_冷视TV"},
{"key":"csp_appys_v1_木白影视", "name":"木白影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_木白影视"},
{"key":"csp_appys_v1_美剧虫", "name":"美剧虫", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_美剧虫"},
{"key":"csp_appys_v1_喵乐影视", "name":"喵乐影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_喵乐影视"},
{"key":"csp_appys_v1_麻腾TV", "name":"麻腾TV", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_麻腾TV"},
{"key":"csp_appys_v1_喵影影视", "name":"喵影影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_喵影影视"},
{"key":"csp_appys_v1_木子电影", "name":"木子电影", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_木子电影"},
{"key":"csp_appys_v1_麻子追剧", "name":"麻子追剧", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_麻子追剧"},
{"key":"csp_appys_v1_奈非迷", "name":"奈非迷", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_奈非迷"},
{"key":"csp_appys_v1_南府影视", "name":"南府影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_南府影视"},
{"key":"csp_appys_v1_暖光影视", "name":"暖光影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_暖光影视"},
{"key":"csp_appys_v1_内涵影视", "name":"内涵影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_内涵影视"},
{"key":"csp_appys_v1_皮皮动漫", "name":"皮皮动漫", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_皮皮动漫"},
{"key":"csp_appys_v1_皮影视", "name":"皮影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_皮影视"},
{"key":"csp_appys_v1_全能影视", "name":"全能影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_全能影视"},
{"key":"csp_appys_v1_奇趣影视", "name":"奇趣影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_奇趣影视"},
{"key":"csp_appys_v1_骑士影院", "name":"骑士影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_骑士影院"},
{"key":"csp_appys_v1_人人动漫", "name":"人人动漫", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_人人动漫"},
{"key":"csp_appys_v1_神马影视", "name":"神马影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_神马影视"},
{"key":"csp_appys_v1_思奇影视", "name":"思奇影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_思奇影视"},
{"key":"csp_appys_v1_视听星球", "name":"视听星球", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_视听星球"},
{"key":"csp_appys_v1_手指影视", "name":"手指影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_手指影视"},
{"key":"csp_appys_v1_土豆TV", "name":"土豆TV", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_土豆TV"},
{"key":"csp_appys_v1_淘剧社", "name":"淘剧社", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_淘剧社"},
{"key":"csp_appys_v1_天空影视", "name":"天空影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_天空影视"},
{"key":"csp_appys_v1_天天影视", "name":"天天影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_天天影视"},
{"key":"csp_appys_v1_天天视频", "name":"天天视频", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_天天视频"},
{"key":"csp_appys_v1_团夕影院", "name":"团夕影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_团夕影院"},
{"key":"csp_appys_v1_兔子窝", "name":"兔子窝", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_兔子窝"},
{"key":"csp_appys_v1_我爱跟剧", "name":"我爱跟剧", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_我爱跟剧"},
{"key":"csp_appys_v1_吾爱影视", "name":"吾爱影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_吾爱影视"},
{"key":"csp_appys_v1_蜗牛看鸭", "name":"蜗牛看鸭", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_蜗牛看鸭"},
{"key":"csp_appys_v1_蜗牛动漫", "name":"蜗牛动漫", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_蜗牛动漫"},
{"key":"csp_appys_v1_小城影视", "name":"小城影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_小城影视"},
{"key":"csp_appys_v1_先锋视频", "name":"先锋视频", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_先锋视频"},
{"key":"csp_appys_v1_小极影视", "name":"小极影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_小极影视"},
{"key":"csp_appys_v1_星空影视", "name":"星空影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_星空影视"},
{"key":"csp_appys_v1_熊猫动漫", "name":"熊猫动漫", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_熊猫动漫"},
{"key":"csp_appys_v1_玺娜影视", "name":"玺娜影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_玺娜影视"},
{"key":"csp_appys_v1_小蜻蜓", "name":"小蜻蜓", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_小蜻蜓"},
{"key":"csp_appys_v1_雪人资源", "name":"雪人资源", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_雪人资源"},
{"key":"csp_appys_v1_玺心影视", "name":"玺心影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_玺心影视"},
{"key":"csp_appys_v1_星影相随", "name":"星影相随", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_星影相随"},
{"key":"csp_appys_v1_小易影视", "name":"小易影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_小易影视"},
{"key":"csp_appys_v1_星月追剧", "name":"星月追剧", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_星月追剧"},
{"key":"csp_appys_v1_益达影院", "name":"益达影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_益达影院"},
{"key":"csp_appys_v1_元芳影视", "name":"元芳影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_元芳影视"},
{"key":"csp_appys_v1_雨果影视", "name":"雨果影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_雨果影视"},
{"key":"csp_appys_v1_樱花动漫", "name":"樱花动漫", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_樱花动漫"},
{"key":"csp_appys_v1_颖家影院", "name":"颖家影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_颖家影院"},
{"key":"csp_appys_v1_月亮影视", "name":"月亮影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_月亮影视"},
{"key":"csp_appys_v1_影视大全", "name":"影视大全", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_影视大全"},
{"key":"csp_appys_v1_影视热剧", "name":"影视热剧", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_影视热剧"},
{"key":"csp_appys_v1_月色影视", "name":"月色影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_月色影视"},
{"key":"csp_appys_v1_杨桃影视", "name":"杨桃影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_杨桃影视"},
{"key":"csp_appys_v1_影阅阁", "name":"影阅阁", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_影阅阁"},
{"key":"csp_appys_v1_渔渔影视", "name":"渔渔影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_渔渔影视"},
{"key":"csp_appys_v1_优优影院", "name":"优优影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_优优影院"},
{"key":"csp_appys_v1_一只鱼", "name":"一只鱼", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_一只鱼"},
{"key":"csp_appys_v1_追番猫", "name":"追番猫", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_追番猫"},
{"key":"csp_appys_v1_宅男影院", "name":"宅男影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_宅男影院"},
{"key":"csp_appys_v1_宅男影院", "name":"宅男影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_宅男影院"},
{"key":"csp_appys_v1_侦探影视", "name":"侦探影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_侦探影视"},
{"key":"csp_appys_v1_追影兔", "name":"追影兔", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_追影兔"},
{"key":"csp_appys_v1_猪猪影院", "name":"猪猪影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"v1_猪猪影院"},
{"key":"csp_appys_gctv_555TV", "name":"555TV", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"gctv_555TV"},
{"key":"csp_appys_gctv_720看片", "name":"720看片", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"gctv_720看片"},
{"key":"csp_appys_gctv_段友影视", "name":"段友影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"gctv_段友影视"},
{"key":"csp_appys_gctv_可米影视", "name":"可米影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"gctv_可米影视"},
{"key":"csp_appys_gctv_奈非迷TV", "name":"奈非迷TV", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"gctv_奈非迷TV"},
{"key":"csp_appys_iptv_2号币", "name":"2号币", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_2号币"},
{"key":"csp_appys_iptv_F7影院", "name":"F7影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_F7影院"},
{"key":"csp_appys_iptv_HG影视", "name":"HG影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_HG影视"},
{"key":"csp_appys_iptv_傲视影院", "name":"傲视影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_傲视影院"},
{"key":"csp_appys_iptv_爱西西TV", "name":"爱西西TV", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_爱西西TV"},
{"key":"csp_appys_iptv_尘梓TV", "name":"尘梓TV", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_尘梓TV"},
{"key":"csp_appys_iptv_稻草人TV", "name":"稻草人TV", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_稻草人TV"},
{"key":"csp_appys_iptv_嘀哩嘀哩", "name":"嘀哩嘀哩", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_嘀哩嘀哩"},
{"key":"csp_appys_iptv_动力影视", "name":"动力影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_动力影视"},
{"key":"csp_appys_iptv_大师兄", "name":"大师兄", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_大师兄"},
{"key":"csp_appys_iptv_风车影视", "name":"风车影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_风车影视"},
{"key":"csp_appys_iptv_疯狂看TV", "name":"疯狂看TV", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_疯狂看TV"},
{"key":"csp_appys_iptv_火箭影视", "name":"火箭影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_火箭影视"},
{"key":"csp_appys_iptv_黑龙影视", "name":"黑龙影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_黑龙影视"},
{"key":"csp_appys_iptv_红牛TV", "name":"红牛TV", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_红牛TV"},
{"key":"csp_appys_iptv_核桃影视", "name":"核桃影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_核桃影视"},
{"key":"csp_appys_iptv_聚多影视", "name":"聚多影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_聚多影视"},
{"key":"csp_appys_iptv_久久影院", "name":"久久影院", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_久久影院"},
{"key":"csp_appys_iptv_乐酷TV", "name":"乐酷TV", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_乐酷TV"},
{"key":"csp_appys_iptv_流星雨", "name":"流星雨", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_流星雨"},
{"key":"csp_appys_iptv_凌雪影视", "name":"凌雪影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_凌雪影视"},
{"key":"csp_appys_iptv_冷月TV", "name":"冷月TV", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_冷月TV"},
{"key":"csp_appys_iptv_米来影视", "name":"米来影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_米来影视"},
{"key":"csp_appys_iptv_思奇TV", "name":"思奇TV", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_思奇TV"},
{"key":"csp_appys_iptv_双子星", "name":"双子星", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_双子星"},
{"key":"csp_appys_iptv_若惜影视", "name":"若惜影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_若惜影视"},
{"key":"csp_appys_iptv_小极TV", "name":"小极TV", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_小极TV"},
{"key":"csp_appys_iptv_云播影视", "name":"云播影视", "type":3, "api":"csp_AppYs","searchable":1,"quickSearch":0,"filterable":1,"ext":"iptv_云播影视"},
{"key":"唐人街","name":"唐人街","type":0,"api":"https://www.tangrenjie.tv/api.php/provide/vod/at/xml","playUrl":""},
{"key":"mbomovie","name":"mbomovie","type":0,"api":"https://www.mbomovie.com/api.php/provide/vod/at/xml","playUrl":"","categories":[]},
{"key":"OmoFun动漫","name":"OmoFun动漫","type":1,"api":"https://www.omofun.com/api.php/provide/vod/","playUrl":"","categories":["动漫","剧场版","国产","欧美"]},
{"key":"w7tv","name":"w7tv","type":1,"api":"http://w7tv.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"小蜻蜓APP","name":"小蜻蜓APP","type":1,"api":"http://3ketv.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"番茄资源","name":"番茄资源","type":0,"api":"http://api.fqzy.cc/api.php/provide/vod/at/xml/","playUrl":"https://jx.fqzy.cc/jx.php?url=","categories":[]},
{"key":"畅视影视","name":"畅视影视","type":1,"api":"http://app.reboju.net/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"追剧吧APP","name":"追剧吧APP","type":1,"api":"http://data.zju8.cc:1234/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"真不卡","name":"真不卡","type":1,"api":"http://db.taijuwang.cc/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"饭团影视","name":"饭团影视","type":1,"api":"http://fantuan.wkfile.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"竹嘎(蓝光解析)","name":"竹嘎(蓝光解析)","type":1,"api":"http://m.ycccyk.cn/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"爱看啦","name":"爱看啦","type":1,"api":"http://v.aik.la/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"侦探APP","name":"侦探APP","type":1,"api":"http://ys.huangguay.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"BL视频","name":"BL视频","type":1,"api":"https://bljiex.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"淘片资源","name":"淘片资源","type":0,"api":"https://taopianzy.com/home/cjapi/c4ca4238a0b923820dcc509a6f75849b/vod/xml","playUrl":"","categories":[]},
{"key":"北斗星资源备","name":"北斗星资源备","type":0,"api":"https://v8.bdxzyapi.com/inc/api.php","playUrl":"","categories":[]},
{"key":"九九美剧","name":"九九美剧","type":1,"api":"https://www.999meiju.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"YT影视","name":"YT影视","type":1,"api":"http://ytys.cc/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"火星2048","name":"火星2048","type":1,"api":"https://www.hx2048.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"游艺资源","name":"游艺资源","type":1,"api":"http://360.hexh.ink/api.php/provide/vod/","playUrl":"http://api.u1o.net/?url=","categories":[]},
{"key":"三零资源","name":"三零资源","type":1,"api":"http://api.000zy.com/provide/vod/","playUrl":"https://jx.3jx.net/?url=","categories":[]},
{"key":"萌果资源","name":"萌果资源","type":1,"api":"http://api.appearoo.top/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"艾特","name":"艾特","type":0,"api":"http://tv.aitesucai.xyz/api.php/provide/vod/at/xml","playUrl":"","categories":[]},
{"key":"天堂资源","name":"天堂资源","type":1,"api":"http://vipmv.cc/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"M3U8.TV资源","name":"M3U8.TV资源","type":0,"api":"http://www.zycaiji.net:7788/api.php/provide/vod/at/xml","playUrl":"","categories":[]},
{"key":"8090资源","name":"8090资源","type":1,"api":"http://zy.yilans.net:8090/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"2A资源","name":"2A资源","type":0,"api":"http://zy.zcocc.com/api.php/provide/vod/at/xml/","playUrl":"https://www.2ajx.com/vip.php?url=","categories":[]},
{"key":"清欢Free资源","name":"清欢Free资源","type":1,"api":"https://free.qinghuanzy.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"任我云","name":"任我云","type":1,"api":"https://www.renwoyun.cn/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"7K(虾米)资源","name":"7K(虾米)资源","type":1,"api":"https://zy.xmflv.vip/api.php/provide/vod/","playUrl":"https://jx.xmflv.vip/?url=","categories":["电影","连续剧","综艺","动漫","动作片","喜剧片","爱情片","科幻片","恐怖片","剧情片","战争片","国产剧","港台剧","日韩剧","欧美剧","其他片"]},
{"key":"融兴资源","name":"融兴资源","type":1,"api":"https://www.rongxingvr.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"无极影院","name":"无极影院","type":1,"api":"http://wujiys.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"爱看1080","name":"爱看1080","type":0,"api":"http://www.ik1080.com/api.php/provide/vod/at/xml/","playUrl":"","categories":[]},
{"key":"KK看剧","name":"KK看剧","type":0,"api":"http://www.kkkanju.com/api.php/provide/vod/at/xml","playUrl":"","categories":[]},
{"key":"蓝果APP","name":"蓝果APP","type":1,"api":"http://www.languotv.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"飞鱼影视","name":"飞鱼影视","type":1,"api":"https://app.feiyu5.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"39影视","name":"39影视","type":0,"api":"https://www.39kan.com/api.php/provide/vod/at/xml/","playUrl":"","categories":[]},
{"key":"白熊影院","name":"白熊影院","type":1,"api":"https://www.bxyy5.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"嗨哆咪影视","name":"嗨哆咪影视","type":1,"api":"http://hdmys1.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"蜂鸟视频","name":"蜂鸟视频","type":1,"api":"https://v.fnsp0.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"随便看电影","name":"随便看电影","type":0,"api":"https://www.sbkdy.com/inc/api.php","playUrl":"","categories":[]},
{"key":"乐多资源1","name":"乐多资源1","type":0,"api":"http://cj.leduocaiji.com/inc/seacmsapi.php","playUrl":"https://ldy.jx.cn/wp-api/ifr.php?vid=","categories":[]},
{"key":"豆瓣资源","name":"豆瓣资源","type":1,"api":"http://api.dbyunzy.com/api.php/provide/vod?ac=list","playUrl":"","categories":[]},
{"key":"乐多资源2","name":"乐多资源2","type":0,"api":"http://api.leduosj.com/inc/api.php","playUrl":"https://ldy.jx.cn/wp-api/ifr.php?vid=","categories":[]},
{"key":"天空资源","name":"天空资源","type":1,"api":"http://api.tiankongapi.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"穿梭资源","name":"穿梭资源","type":1,"api":"http://ok.888hyk.com/api.php/provide/vod?ac=list","playUrl":"","categories":[]},
{"key":"U酷资源","name":"U酷资源","type":1,"api":"http://ukuzy.com/api.php/provide/vod?ac=list","playUrl":"","categories":[]},
{"key":"605资源","name":"605资源","type":0,"api":"http://www.605zy.co/inc/api.php","playUrl":"","categories":[]},
{"key":"88资源","name":"88资源","type":0,"api":"http://www.88zy.live/inc/api.php","playUrl":"","categories":[]},
{"key":"韩剧资源","name":"韩剧资源","type":0,"api":"http://www.hanjuzy.com/inc/api.php","playUrl":"","categories":[]},
{"key":"快播资源","name":"快播资源","type":1,"api":"http://www.kuaibozy.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"百度资源","name":"百度资源","type":1,"api":"https://api.apibdzy.com/api.php/provide/vod?ac=list","playUrl":"","categories":[]},
{"key":"酷点资源","name":"酷点资源","type":1,"api":"https://kudian8.com/api.php/provide/vod?ac=list","playUrl":"","categories":[]},
{"key":"北斗星资源","name":"北斗星资源","type":1,"api":"https://api.bdxzyapi.com/api.php/provide/vod?ac=list","playUrl":"","categories":[]},
{"key":"红牛资源","name":"红牛资源","type":1,"api":"https://www.hongniuzy.com/inc/apijson_vod.php","playUrl":"https://www.tutukiki.com/m3u8/?url=","categories":[],"searchable":0},
{"key":"奇乐(优剧)资源","name":"奇乐(优剧)资源","type":1,"api":"https://zy.ujuba.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"无尽资源","name":"无尽资源","type":1,"api":"https://wuzy9.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"测试","name":"以下为1-8限--测试","type":1,"api":"http://107.150.5.146:39000/maccms10-main/api.php/provide/vod/","playUrl":"","categories":[]},
//{"key":"csp_Cokemv","name":"Cokemv(爬蟲)","type":3,"api":"csp_Cokemv","searchable":1,"quickSearch":0,"filterable":1},
//{"key":"csp_Nekk","name":"9E看看(爬蟲)","type":3,"api":"csp_Nekk","searchable":1,"quickSearch":0,"filterable":1},
//{"key":"csp_Buka","name":"真不卡(爬蟲)","type":3,"api":"csp_Buka","searchable":0,"quickSearch":0,"filterable":1},
{"key":"飘花电影","name":"飘花电影","type":1,"api":"http://www.zzrhgg.com/api.php/provide/vod/","playUrl":"","categories":[]},
{"key":"热映网","name":"热映网","type":1,"api":"http://hl.reying.vip/api.php/provide/vod/","playUrl":"","categories":[]},
//{"key":"csp_Aidi","name":"愛迪(爬蟲)","type":3,"api":"csp_Aidi","searchable":1,"quickSearch":0,"filterable":1},
//{"key":"csp_Auete","name":"Auete(爬蟲)","type":3,"api":"csp_Auete","searchable":1,"quickSearch":0,"filterable":1},
//{"key":"csp_N0ys","name":"90影視(爬蟲)","type":3,"api":"csp_N0ys","searchable":1,"quickSearch":0,"filterable":0},
//{"key":"csp_Djx","name":"瓜皮TV(爬蟲)","type":3,"api":"csp_Djx","searchable":1,"quickSearch":0,"filterable":1},
//{"key":"csp_Imaple","name":"楓林網(爬蟲)","type":3,"api":"csp_Imaple","searchable":1,"quickSearch":0,"filterable":1},
//{"key":"csp_Jumi","name":"劇迷(爬蟲)","type":3,"api":"csp_Jumi","searchable":1,"quickSearch":0,"filterable":1},
//{"key":"人人迷","name":"人人迷","type":1,"api":"https://kuu.renrenmi.cc/api.php/provide/vod/?ac=list","playUrl":"https://jx.renrenmi.cc/?url=","categories":["動作片","喜劇片","愛情片","科幻片","劇情片","戰爭片","恐怖片","國產劇","港臺劇","日韓劇","歐美劇","其他劇","綜藝","動漫"]},
//{"key":"csp_Juhi","name":"剧嗨(爬虫)","type":3,"api":"csp_Juhi","searchable":1,"quickSearch":0,"filterable":1},
{"name": "龍祥時代電影","urls": ["rtmp://45.88.148.122/channel/60c2474a961593122ebaf7b5?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
{"name": "靖天電影","urls": ["rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d58?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
{"name": "星衛電影","urls": ["rtmp://45.88.148.114/channel/60b4e50239e1b02e8b910d36?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
{"name": "福克斯電影","urls": ["rtmp://45.88.148.122/channel/60c2d575961593122ebaf8bf?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
{"name": "壹電影台","urls": ["rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910cf6?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
{"name": "華納電影","urls": ["rtmp://45.88.148.122/channel/60b4e50239e1b02e8b910d68?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
{"name": "福斯動作","urls": ["rtmp://45.92.126.226/channel/60c2f6ca961593122ebaf8dc?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
{"name": "天映電影","urls": ["rtmp://45.88.148.178/channel/61002e1ff0618408855f3711", "rtmp://45.88.148.178/channel/61002e1ff0618408855f3711?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://50.7.161.82:8278/streams/d/Celestial/playlist.m3u8", "http://50.7.161.82:8278/streams/d/Celestial2/playlist.m3u8", "http://50.7.161.82:8278/streams/d/celestial_pye/playlist.m3u8", "http://50.7.161.82:8278/streams/d/Celestial2/playlist.m3u8"]},
{
"name": "DiscoveryHD",
"urls": ["https://feed.play.mv/live/10005200/2Lkn0sCJBz/master.m3u8"]
}, {
"name": "Star Movies",
"urls": ["rtmp://45.88.148.114/channel/60b4e50239e1b02e8b910d20?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
}, {
"name": "CatchPlay電影台",
"urls": ["rtmp://45.88.148.178/channel/60b4e50239e1b02e8b910d2a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
}, {
"name": "影迷數位電影",
"urls": ["rtmp://45.88.148.178/channel/60b4e50239e1b02e8b910ce8?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
}, {
"name": "有線18台",
"urls": ["rtmp://45.88.148.122/channel/60c2d2f9961593122ebaf8b9?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
}, {
"name": "探索頻道",
"urls": ["rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d6e","http://211.23.114.106:8510/http/61.221.81.94:8088/hls/71/813/ch44.m3u8", "rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d6e?sign=epgg4bkSF4hx%2BZ5WNsuYKsEplghWqWFa%2FRw3tGNF7vys%2FTXdBAnc%2BYbrUpogDq3MZnOL"]
}, {
"name": "星衛娛樂",
"urls": ["rtmp://45.88.148.178/channel/60b4e50239e1b02e8b910d3c", "rtmp://45.88.148.178/channel/60b4e50239e1b02e8b910d3c?sign=epgg4bkSF4hx%2BZ5WNsuYKsEplghWqWFa%2FRw3tGNF7vys%2FTXdBAnc%2BYbrUpogDq3MZnOL"]
}, {
"name": "美食星球",
"urls": ["rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d4a", "rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d4a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEplghWqWFa%2FRw3tGNF7vys%2FTXdBAnc%2BYbrUpogDq3MZnOL"]
}, {
"name": "動物星球",
"urls": ["rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d6c","http://211.23.114.106:8512/http/61.221.81.94:8088/hls/70/812/ch37.m3u8", "rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d6c?sign=epgg4bkSF4hx%2BZ5WNsuYKsEplghWqWFa%2FRw3tGNF7vys%2FTXdBAnc%2BYbrUpogDq3MZnOL", "http://39.134.134.85/000000001000/6000000002000010046/1.m3u8"]
}, {
"name": "探索科學",
"urls": ["rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d72?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d72", "http://39.134.134.85/000000001000/6000000002000032344/1.m3u8"]
}, {
"name": "MTV音樂台",
"urls": ["rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d82?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
}, {
"name": "民視第一台",
"urls": ["rtmp://104.149.141.122/channel/60c317e8961593122ebaf90c?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
}, {
"name": "民視台灣台",
"urls": ["rtmp://45.92.126.114/channel/60c31843961593122ebaf910?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
}, {
"name": "香港衛視文旅",
"urls": ["https://myun-hw-s3.myun.tv/melj80jz/lxx27bol/1551285536499984128.m3u8"]
}, {
"name": "香港衛視",
"urls": ["http://zhibo.hkstv.tv/livestream/mutfysrq.flv"]
}, {
"name": "霹靂台灣台",
"urls": ["rtmp://45.88.148.122/channel/60b4e50239e1b02e8b910c72?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
}, {
"name": "國興衛視",
"urls": ["rtmp://104.149.130.142/channel/60c31c32961593122ebaf929?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
}, {
"name": "公視戲劇台",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv042", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv042"]
}, {
"name": "中視經典台",
"urls": ["rtmp://45.88.148.178/channel/60c31708961593122ebaf902?sign=epgg4bkSF4hx%2BZ5WNsuYKsEplghWqWFa%2FRw3tGNF7vys%2FTXdBAnc%2BYbrUpogDq3MZnOL", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv080"]
}, {
"name": "中視菁采台",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv064", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv064"]
},{
"name": "彭博財經台",
"urls": ["http://liveproduseast.akamaized.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-1000-1_live.m3u8"]
}, {
"name": "FashionOne",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn19", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn19"]
}, {
"name": "ELTV英語學習台",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn20"]
}, {
"name": "中台灣生活網",
"urls": ["http://58.99.33.16:1935/liveedge17/live_852_3.stream/chunklist.m3u8", "http://58.99.33.16:1935/liveedge17/live_020_3.stream/chunklist.m3u8"]
}, {
"name": "CTN",
"urls": ["http://58.99.33.16:1935/liveedge17/live_853_3.stream/chunklist.m3u8", "http://58.99.33.16:1935/liveedge17/live_854_3.stream/chunklist.m3u8"]
}, {
"name": "TLC旅遊生活頻道",
"urls": ["http://50.7.61.147:30080/Entry/tlc"]
}, {
"name": "亞洲旅遊台",
"urls": ["http://211.23.114.106:8513/http/61.221.81.94:8088/hls/76/818/ch61.m3u8","http://58.99.33.16:1935/liveedge17/live_172_3.stream/chunklist.m3u8", "http://58.99.33.16:1935/liveedge17/live_172_3.stream/chunklist.m3u8"]
}, {
"name": "NHKWorldJapan",
"urls": ["https://nhkworld.webcdn.stream.ne.jp/www11/nhkworld-tv/zh/725580/livecom_zh.m3u8", "http://58.99.33.16:1935/liveedge17/live_108_3.stream/chunklist.m3u8", "https://nhkw-zh-hlscomp.akamaized.net/ixxemlzk1vqvy44o/playlist.m3u8", "http://nhkw-zh-hlscomp.akamaized.net/8thz5iufork8wjip/playlist.m3u8"]
}, {
"name": "原住民電視",
"urls": ["rtmp://45.92.126.226/channel/61003b23f0618408855f3748", "http://streamipcf.akamaized.net/live/_definst_/live_720/key_b1500.m3u8"]
}, {
"name": "唯心電視",
"urls": ["http://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/chunklist_w1177047531.m3u8"]
}, {
"name": "亞美衛視",
"urls": ["http://dcunilive30-lh.akamaihd.net/i/dclive_1@535522/master.m3u8"]
}, {
"name": "亞旅衛視",
"urls": ["https://jc-qlive-play.jingchangkan.cn/live/3473_200508855_xR9m.m3u8", "http://dcunilive30-lh.akamaihd.net/i/dclive_1@535522/master.m3u8"]
}, {
"name": "時尚運動",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv014"]
}, {
"name": "Astro愛奇藝",
"urls": ["http://50.7.161.82:8278/streams/d/iqiyi_pye/playlist.m3u8"]
}, {
"name": "ANTV",
"urls": ["http://antvlive.ab5c6921.cdnviet.com/antv/playlist.m3u8"]
}, {
"name": "愛爾達體育1",
"urls": ["rtmp://59.124.75.138/sat/md041"]
}, {
"name": "愛爾達體育2",
"urls": ["rtmp://59.124.75.138/sat/md051"]
}, {
"name": "愛爾達體育3",
"urls": ["rtmp://59.124.75.138/sat/md031"]
}, {
"name": "ELEVEN體育一台",
"urls": ["rtmp://59.124.75.138/sat/tv731"]
}, {
"name": "ELEVEN體育二台",
"urls": ["rtmp://59.124.75.138/sat/tv741"]
}, {
"name": "博斯網球",
"urls": ["rtmp://59.124.75.138/sat/md011"]
}, {
"name": "博斯魅力",
"urls": ["rtmp://59.124.75.138/sat/md021", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn04"]
}, {
"name": "博斯高球1",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn05"]
}, {
"name": "博斯高球2",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn06"]
}, {
"name": "博斯運動一台",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn07"]
}, {
"name": "博斯運動二台",
"urls": ["http://58.99.33.16:1935/liveedge17/live_244_3.stream/chunklist.m3u8"]
}, {
"name": "博斯運動二台",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn08"]
}, {
"name": "博斯網球",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn09"]
}, {
"name": "博斯無限",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn10"]
}, {
"name": "智林體育台",
"urls": ["http://58.99.33.16:1935/liveedge17/live_122_3.stream/chunklist.m3u8"]
}, {
"name": "智林體育台",
"urls": ["http://58.99.33.16:1935/liveedge17/live_122_3.stream/chunklist.m3u8"]
}, {
"name": "豬哥亮歌廳秀",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv006"]
}, {
"name": "影迷數位電影",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv011"]
}, {
"name": "Cnex",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv013"]
}, {
"name": "韓國娛樂",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv016"]
}, {
"name": "達文西",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv018"]
}, {
"name": "GinxEsports",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv053"]
}, {
"name": "CLASSICA古典樂",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv059"]
}, {
"name": "愛爾達娛樂",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv070"]
}, {
"name": "非凡商業",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv048"]
}, {
"name": "非凡新聞",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv010"]
}, {
"name": "台視新聞",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv051"]
}, {
"name": "華視新聞資訊",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv052"]
}, {
"name": "CatchPlay",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv076"]
}, {
"name": "TraceSports",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv077"]
}, {
"name": "MezzoLiveHD",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv083"]
}, {
"name": "國會頻道1",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv084"]
}, {
"name": "智林體育",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv101"]
}, {
"name": "財經頻道",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv104"]
}, {"name":"中天綜合","urls":["http://211.23.114.106:8526/http/60.251.39.91:8081/hls/67/809/ch25.m3u8"]},{"name":"中天娛樂","urls":["http://211.23.114.106:8527/http/60.251.39.91:8081/hls/67/809/ch26.m3u8"]},{
"name": "中天亞洲",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv109"]
}, {
"name": "V0A美國之音",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-ftv03"]
}, {
"name": "民視旅遊",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-ftv07"]
}, {
"name": "民視影劇",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-ftv09"]
}, {
"name": "半島國際新聞",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-ftv10"]
}, {
"name": "龍華卡通",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn01"]
}, {
"name": "BabyFirst",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn02"]
}, {
"name": "龍華日韓",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn11"]
}, {
"name": "龍華偶像",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn12"]
}, {
"name": "博斯電玩",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn13"]
}, {
"name": "寰宇新聞台湾台",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn15"]
}, {
"name": "亞洲旅遊",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn17"]
}, {
"name": "龍華經典",
"urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn21"]
}, {
"name": "冠軍電視",
"urls": ["rtmp://45.92.126.226/channel/611a83133e4da143c015987c"]
}, {
"name": "非凡新聞",
"urls": ["http://50.7.61.147:30080/Entry/ubnbus"]
}{
"name": "華藝綜合",
"urls": ["rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910cfe?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
}, {
"name": "華藝影劇",
"urls": ["rtmp://45.83.118.242/channel/60b4e50239e1b02e8b910cfc?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
}, {
"name": "靖天卡通台",
"urls": ["rtmp://45.88.148.122/channel/60c344f6961593122ebaf9a2?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv044"]
}, {
"name": "靖洋电影台",
"urls": ["rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d58?sign=epgg4bkSF4hx%2BZ5WNsuYKsEplghWqWFa%2FRw3tGNF7vys%2FTXdBAnc%2BYbrUpogDq3MZnOL"]
}, {
"name": "靖洋戲劇台",
"urls": ["rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d1a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv045"]
}, {
"name": "靖天綜合台",
"urls": ["rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d50?sign=epgg4bkSF4hx%2BZ5WNsuYKsEplghWqWFa%2FRw3tGNF7vys%2FTXdBAnc%2BYbrUpogDq3MZnOL", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv046"]
}, {
"name": "靖天日本台",
"urls": ["rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d54", "rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d54?sign=epgg4bkSF4hx%2BZ5WNsuYKsEplghWqWFa%2FRw3tGNF7vys%2FTXdBAnc%2BYbrUpogDq3MZnOL", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv047"]
}, {
"name": "靖天歡樂台",
"urls": ["rtmp://45.88.148.178/channel/60c343c5961593122ebaf996?sign=epgg4bkSF4hx%2BZ5WNsuYKsEplghWqWFa%2FRw3tGNF7vys%2FTXdBAnc%2BYbrUpogDq3MZnOL", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv054"]
}, {
"name": "靖天映畫台",
"urls": ["rtmp://45.92.126.226/channel/60c34395961593122ebaf994", "rtmp://45.92.126.226/channel/60c34395961593122ebaf994?sign=epgg4bkSF4hx%2BZ5WNsuYKsEplghWqWFa%2FRw3tGNF7vys%2FTXdBAnc%2BYbrUpogDq3MZnOL", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv055"]
}, {
"name": "靖天育樂",
"urls": ["rtmp://104.149.131.118/channel/60c34368961593122ebaf992?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
}, {
"name": "靖天資訊台",
"urls": ["rtmp://45.12.113.194/channel/60b4e50239e1b02e8b910d5a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv065"]
}, {
"name": "靖天國際",
"urls": ["rtmp://45.83.118.242/channel/60c34331961593122ebaf990?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
}, {"name":"爆谷台","urls":["http://pullhls3948069e.live.126.net/live/baogu-superstars-movies-hd/playlist.m3u8"]},
,
{"key":"*5X资源","name":"*5X资源","type":0,"api":"http://0413.api.cdn.5api123.com/api.php","playUrl":"","categories":[],"quickSearch":0},
{"key":"*水桃","name":"*水桃","type":1,"api":"http://51smt4.xyz/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
{"key":"*苍天资源","name":"*苍天资源","type":1,"api":"http://cj.cangtiancj.com/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
{"key":"*老资源","name":"*老资源","type":1,"api":"http://laoyazy.vip/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
{"key":"*姐资源","name":"*姐资源","type":0,"api":"https://86xjj.com/home/cjapi/70efdf2ec9b086079795c442636b55fb/vod/xml","playUrl":"","categories":[],"quickSearch":0},
{"key":"*屌丝(VPN)","name":"*屌丝(VPN)","type":0,"api":"http://sds762.com/home/cjapi/9bf31c7ff062936a96d3c8bd1f8f2ff3/vod/xml","playUrl":"","categories":[],"quickSearch":0},
{"key":"*猫资源","name":"*猫资源","type":0,"api":"https://api.maozyapi.com/inc/api.php","playUrl":"","categories":[],"quickSearch":0},
{"key":"*523资源","name":"*523资源","type":0,"api":"https://caiji.523zyw.com/inc/api.php","playUrl":"","categories":[],"quickSearch":0},
{"key":"*地资源","name":"*地资源","type":0,"api":"https://dadiapi.com/api.php","playUrl":"","categories":[],"quickSearch":0},
{"key":"*芒果资源","name":"*芒果资源","type":1,"api":"https://mgzyz1.com/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},