forked from heroaku/TVboxo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAPP影视列表.json
1216 lines (1216 loc) · 49.8 KB
/
APP影视列表.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
{
"data":[
{
"title":"APP影视(小龟)",
"list":[
{
"title":"3080影视",
"url":"https://3080l.me/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/3080影视.png",
"murl":"q:APP影视"
},
{
"title":"555电影",
"url":"http://w7tv.com/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/555电影.png",
"murl":"q:APP影视"
},
{
"title":"5060影院",
"url":"https://app.linzhiyuan.xyz/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/5060影院.png",
"murl":"q:APP影视"
},
{
"title":"913e影视",
"url":"http://www.913e.net/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/913E影视.png",
"murl":"q:APP影视"
},
{
"title":"LIBVIO",
"url":"https://www.mkys.me/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/LIBVIO.png",
"murl":"q:APP影视"
},
{
"title":"TV酷",
"url":"https://www.u23c.com/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/TV酷影视.png",
"murl":"q:APP影视"
},
{
"title":"vip影院",
"url":"http://360yy.cn/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/VIP影院xg.png",
"murl":"q:APP影视"
},
{
"title":"爱迪影视",
"url":"https://aidi.fun/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/爱迪影视.png",
"murl":"q:APP影视"
},
{
"title":"嗷呜动漫",
"url":"http://app.aowufuns.com:1031/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/嗷呜动漫.png",
"murl":"q:APP影视"
},
{
"title":"哎呀影视",
"url":"https://www.aisvod.tv/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/爱尚影视.png",
"murl":"q:APP影视"
},
{
"title":"爱追剧",
"url":"https://4k.lqiyi.cn/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/爱追剧xg.png",
"murl":"q:APP影视"
},
{
"title":"播放呀",
"url":"https://www.bofangya.com/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/播放呀.png",
"murl":"q:APP影视"
},
{
"title":"畅看影视",
"url":"http://www.sxbrd.com/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/畅看影视.png",
"murl":"q:APP影视"
},
{
"title":"畅视影视",
"url":"http://app.reboju.net/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/畅视影视.png",
"murl":"q:APP影视"
},
{
"title":"迪迪影院",
"url":"http://dd88.icu:6080/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/迪迪影院.png",
"murl":"q:APP影视"
},
{
"title":"嘀哩嘀哩",
"url":"http://dilidili.la/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/嘀哩嘀哩xg.png",
"murl":"q:APP影视"
},
{
"title":"北墨影院",
"url":"http://beimotv.com/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/北墨影院.png",
"murl":"q:APP影视"
},
{
"title":"毒舌电影",
"url":"https://cms.96ym.cn/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/毒舌电影.png",
"murl":"q:APP影视"
},
{
"title":"段友影视",
"url":"http://js.66app.me/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/段友影视©.png",
"murl":"q:APP影视"
},
{
"title":"饭团影院",
"url":"http://television.wkfile.com/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/饭团影院.png",
"murl":"q:APP影视"
},
{
"title":"瓜皮TV",
"url":"http://www.dijiaxia.com/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/瓜皮TV.png",
"murl":"q:APP影视"
},
{
"title":"海胆影视",
"url":"http://xf123.cc/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/海胆影视.png",
"murl":"q:APP影视"
},
{
"title":"火箭影视",
"url":"http://huojian.wchulian.com.cn/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/火箭影视.png",
"murl":"q:APP影视"
},
{
"title":"环球影视",
"url":"https://hqystv.com/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/环球影视.png",
"murl":"q:APP影视"
},
{
"title":"海棠视频",
"url":"https://www.haitangsp.net/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/海棠视频.png",
"murl":"q:APP影视"
},
{
"title":"京广航",
"url":"https://www.jingguanhang.com/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/京广航影视.png",
"murl":"q:APP影视"
},
{
"title":"久九影视",
"url":"https://api.58qxk.cn/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/久九影视.png",
"murl":"q:APP影视"
},
{
"title":"极客",
"url":"https://www.i8k.cc/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/极客.png",
"murl":"q:APP影视"
},
{
"title":"看365",
"url":"https://www.kan365.xyz/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/Air视频.png",
"murl":"q:APP影视"
},
{
"title":"酷扑TV",
"url":"https://www.kupu.cc/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/酷扑TV.png",
"murl":"q:APP影视"
},
{
"title":"快云影音",
"url":"https://www.kuaiyunyy.com/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/快云影音.png",
"murl":"q:APP影视"
},
{
"title":"灵狐影视",
"url":"http://x.dmntv.com/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/灵狐影视.png",
"murl":"q:APP影视"
},
{
"title":"老韩综",
"url":"http://zy.kmoonhh.com/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/老韩综.png",
"murl":"q:APP影视"
},
{
"title":"荔枝视频",
"url":"https://zjys.vip/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/荔枝视频.png",
"murl":"q:APP影视"
},
{
"title":"抹茶猪",
"url":"https://www.mczdyw.com/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/抹茶猪电影.png",
"murl":"q:APP影视"
},
{
"title":"漫岛",
"url":"http://a.mdaotv.cn/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/漫岛.png",
"murl":"q:APP影视"
},
{
"title":"萌蛋蛋",
"url":"http://app.mengdandan.com/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/萌蛋蛋.png",
"murl":"q:APP影视"
},
{
"title":"苗点影视",
"url":"https://www.msdv.cn/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/苗点影视.png",
"murl":"q:APP影视"
},
{
"title":"蜜果TV",
"url":"https://www.miguotv.net/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/蜜果TV.png",
"murl":"q:APP影视"
},
{
"title":"麻花视频",
"url":"https://www.mahuashipin.com/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/麻花视频.png",
"murl":"q:APP影视"
},
{
"title":"皮皮影视",
"url":"http://pp.ig4.cn/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/皮皮影视.png",
"murl":"q:APP影视"
},
{
"title":"氢视频",
"url":"http://h1080p.com/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/氢视频.png",
"murl":"q:APP影视"
},
{
"title":"思古影视",
"url":"https://app.siguyy.com/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/思古影视.png",
"murl":"q:APP影视"
},
{
"title":"世界电影",
"url":"https://app.lovetv.online/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/世界电影.png",
"murl":"q:APP影视"
},
{
"title":"神马影院",
"url":"https://www.6080kan.cc/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/神马影院.png",
"murl":"q:APP影视"
},
{
"title":"天空影视",
"url":"https://www.tkys.tv/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/天空影视.png",
"murl":"q:APP影视"
},
{
"title":"躺平影视",
"url":"http://www.lltpys.com/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/躺平影视.png",
"murl":"q:APP影视"
},
{
"title":"天神影视",
"url":"https://deity.fun/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/天神影视.png",
"murl":"q:APP影视"
},
{
"title":"我爱电影",
"url":"http://xg.5imv.net/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/我爱电影xg.png",
"murl":"q:APP影视"
},
{
"title":"污妖动漫",
"url":"https://www.wyydm.com/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/污妖动漫.png",
"murl":"q:APP影视"
},
{
"title":"小白视频",
"url":"https://ccoyytv.com/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/小白视频.png",
"murl":"q:APP影视"
},
{
"title":"星空影视",
"url":"https://xkys.tv/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/星空影视xg.png",
"murl":"q:APP影视"
},
{
"title":"小强TV",
"url":"http://xqapp.hailanfj.com/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/小强TV.png",
"murl":"q:APP影视"
},
{
"title":"小七影视",
"url":"http://ys.kd60.cn/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/小七影视.png",
"murl":"q:APP影视"
},
{
"title":"雪人影视",
"url":"http://qqtvapp.com/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/雪人影视xg.png",
"murl":"q:APP影视"
},
{
"title":"雪人影视",
"url":"https://xg.qd234.cn/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/雪人影视1.png",
"murl":"q:APP影视"
},
{
"title":"小易影视",
"url":"https://xy.irop.cn/api.php/app/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/小易影视.png",
"murl":"q:APP影视"
},
{
"title":"影视工场",
"url":"https://www.ysgc.cc/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/影视工场.png",
"murl":"q:APP影视"
},
{
"title":"追剧达人",
"url":"http://vipmv.tv/xgapp.php/v1/",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/追剧达人.png",
"murl":"q:APP影视"
}
]
},
{
"title":"APP影视(大熊)",
"list":[
{
"title":"大熊影视",
"url":"https://dxys2233.com/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/大熊影视.png",
"murl":"q:APP影视"
},
{
"title":"免费看",
"url":"https://freekan.vip/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/免费看影视.png",
"murl":"q:APP影视"
},
{
"title":"全能影视",
"url":"https://qnys5566.com/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/全能影视.png",
"murl":"q:APP影视"
},
{
"title":"手指影视",
"url":"https://szys5678.com/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/手指影视.png",
"murl":"q:APP影视"
},
{
"title":"心爱影视",
"url":"https://xays6677.com/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/心爱影视.png",
"murl":"q:APP影视"
},
{
"title":"雪梨视频",
"url":"https://zsb2233.com/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/雪梨视频.png",
"murl":"q:APP影视"
},
{
"title":"杨桃影视",
"url":"https://ytys3456.com/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/杨桃影视.png",
"murl":"q:APP影视"
}
]
},
{
"title":"APP影视(优质)",
"list":[
{
"title":"1080p",
"url":"https://1080p.one/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/1080p.png",
"murl":"q:APP影视"
},
{
"title":"4K影院",
"url":"http://4kdytv.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/4K影院.png",
"murl":"q:APP影视"
},
{
"title":"80K影视",
"url":"https://1080p.tv/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/80K影视.png",
"murl":"q:APP影视"
},
{
"title":"CJT影院",
"url":"https://www.cjt521.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/CJT影院.png",
"murl":"q:APP影视"
},
{
"title":"DC影视",
"url":"http://chaorenbb.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/DC影视.png",
"murl":"q:APP影视"
},
{
"title":"HG影视",
"url":"http://hgyx.vip/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/HG影视.png",
"murl":"q:APP影视"
},
{
"title":"l0l影院",
"url":"https://l0l.tv/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/l0l影院.png",
"murl":"q:APP影视"
},
{
"title":"爱看美剧",
"url":"https://www.uumjw.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/爱看美剧.png",
"murl":"q:APP影视"
},
{
"title":"阿姨追剧",
"url":"https://www.ayzhuiju.com/ruifenglb_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/阿姨追剧2.png",
"murl":"q:APP影视"
},
{
"title":"初心影视",
"url":"https://www.18mv.club/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/初心影视.png",
"murl":"q:APP影视"
},
{
"title":"独播社",
"url":"http://35ys.cc/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/独播社.png",
"murl":"q:APP影视"
},
{
"title":"段友影视",
"url":"http://121.204.249.135:4433/ruifenglb_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/段友影视3.png",
"murl":"q:APP影视"
},
{
"title":"饭后电影",
"url":"http://summ.vip/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/饭后电影.png",
"murl":"q:APP影视"
},
{
"title":"飞捷影视",
"url":"https://www.fj6080.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/飞捷影视.png",
"murl":"q:APP影视"
},
{
"title":"疯狂看",
"url":"http://app.fkkdy.vip/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/疯狂看电影.png",
"murl":"q:APP影视"
},
{
"title":"汇聚库TV",
"url":"https://www.zzclove666.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/汇聚库TV.png",
"murl":"q:APP影视"
},
{
"title":"虎猫视频",
"url":"https://humaosp.com/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/虎猫视频.png",
"murl":"q:APP影视"
},
{
"title":"绿箭影视",
"url":"http://www.69ty.cc/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/绿箭影视.png",
"murl":"q:APP影视"
},
{
"title":"懒猫电影",
"url":"http://www.esellauto.com/ruifenglb_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/懒猫电影.png",
"murl":"q:APP影视"
},
{
"title":"漫岛影视",
"url":"http://app.mdaotv.cn/mubai_api.php/m2.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/漫岛影视.png",
"murl":"q:APP影视"
},
{
"title":"麻瓜视频",
"url":"http://aliyun.k8aa.com/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/麻瓜视频1.png",
"murl":"q:APP影视"
},
{
"title":"美剧虫",
"url":"https://meijuchong.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/美剧虫.png",
"murl":"q:APP影视"
},
{
"title":"木子电影",
"url":"http://www.muzidy.top/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/木子电影.png",
"murl":"q:APP影视"
},
{
"title":"暖光影视",
"url":"https://app.bl210.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/暖光影视.png",
"murl":"q:APP影视"
},
{
"title":"奈非迷",
"url":"https://app.netflixmi.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/奈非迷影视.png",
"murl":"q:APP影视"
},
{
"title":"南府影视",
"url":"http://iapp.nfuxs.club/dnmb.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/南府影视.png",
"murl":"q:APP影视"
},
{
"title":"柠柚影视",
"url":"http://nu.e4tv.cn/lvdou_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/柠柚影视.png",
"murl":"q:APP影视"
},
{
"title":"瑞丰资源",
"url":"https://ts.yjhan.com:4433/ruifenglb_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/瑞丰.png",
"murl":"q:APP影视"
},
{
"title":"温妮影视",
"url":"https://www.wenniys.com/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/温妮影视.png",
"murl":"q:APP影视"
},
{
"title":"星辰视频",
"url":"https://m.hj0999.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/星辰视频.png",
"murl":"q:APP影视"
},
{
"title":"小极影视",
"url":"http://app.8d8q.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/小极影视.png",
"murl":"q:APP影视"
},
{
"title":"雪人资源",
"url":"https://zy.qd234.cn/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/雪人资源站.png",
"murl":"q:APP影视"
},
{
"title":"益达影院",
"url":"http://luobu.yss6080.com/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/益达影院.png",
"murl":"q:APP影视"
},
{
"title":"雨果影视",
"url":"http://ygapp.xcys63.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/雨果影视.png",
"murl":"q:APP影视"
},
{
"title":"月色影视",
"url":"http://69ty.cc/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/月色影视.png",
"murl":"q:APP影视"
},
{
"title":"优视影视",
"url":"http://cc.ysys.asia/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/优视影视.png",
"murl":"q:APP影视"
},
{
"title":"影阅阁",
"url":"http://221.236.18.12:665/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/影阅阁.png",
"murl":"q:APP影视"
},
{
"title":"追剧吧",
"url":"http://zhuiju8.vip/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/追剧吧影视.png",
"murl":"q:APP影视"
}
]
},
{
"title":"APP影视(普通)",
"list":[
{
"title":"80影视",
"url":"http://www.ccc8.net/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/80影视.png",
"murl":"q:APP影视"
},
{
"title":"QC影视",
"url":"https://www.qcsvip.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/QC影视.png",
"murl":"q:APP影视"
},
{
"title":"U5影视",
"url":"https://appx.uy07.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/U5影视.png",
"murl":"q:APP影视"
},
{
"title":"yoyo",
"url":"http://jx.wnvod.net/ruifenglb_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/yoyo影视.png",
"murl":"q:APP影视"
},
{
"title":"爱影视",
"url":"https://www.hzlff.cn/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/爱影视.png",
"murl":"q:APP影视"
},
{
"title":"爱追剧",
"url":"http://81.71.18.95:520/lvdou_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/爱追剧.png",
"murl":"q:APP影视"
},
{
"title":"艾特影视",
"url":"https://www.aitee.cc/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/艾特影视.png",
"murl":"q:APP影视"
},
{
"title":"白菜追剧",
"url":"http://lbapp.huimaojia.com:30119/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/白菜追剧.png",
"murl":"q:APP影视"
},
{
"title":"比邻影视",
"url":"http://0hzy.cn:9990/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/比邻影视.png",
"murl":"q:APP影视"
},
{
"title":"百讯视频",
"url":"https://z.iopenyun.com:99/app_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/百讯视频.png",
"murl":"q:APP影视"
},
{
"title":"菜鸟动漫",
"url":"http://taikong.huangguay.com/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/菜鸟动漫.png",
"murl":"q:APP影视"
},
{
"title":"大头影视",
"url":"http://dy.idsao.com/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/大头影视.png",
"murl":"q:APP影视"
},
{
"title":"段友影视",
"url":"http://js.66app.me/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/段友影视2.png",
"murl":"q:APP影视"
},
{
"title":"豆渣影视",
"url":"http://douzhayss.cc/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/豆渣影视.png",
"murl":"q:APP影视"
},
{
"title":"二九影视",
"url":"https://app.19kp.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/二九影视.png",
"murl":"q:APP影视"
},
{
"title":"辉哥影视",
"url":"https://app.y.hgyule8.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/辉哥影视.png",
"murl":"q:APP影视"
},
{
"title":"黄河影视",
"url":"http://i.ledu8.cn/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/黄河影视.png",
"murl":"q:APP影视"
},
{
"title":"盒子影院",
"url":"http://i.nihaohezi.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/盒子影院.png",
"murl":"q:APP影视"
},
{
"title":"筋斗云",
"url":"https://tv.jindcloud.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/筋斗云影视.png",
"murl":"q:APP影视"
},
{
"title":"极光影院",
"url":"http://app.winxz.cc/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/极光影院.png",
"murl":"q:APP影视"
},
{
"title":"剧迷视频",
"url":"http://pan.hzafw.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/剧迷视频.png",
"murl":"q:APP影视"
},
{
"title":"橘子影视",
"url":"http://jz.juzidy.vip/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/橘子影视.png",
"murl":"q:APP影视"
},
{
"title":"看剧吧",
"url":"http://app.ishen520.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/看剧吧.png",
"murl":"q:APP影视"
},
{
"title":"看看剧",
"url":"https://www.kankanju.cn/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/看看剧.png",
"murl":"q:APP影视"
},
{
"title":"蓝光视频",
"url":"http://vip.91iqiyi.com/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/蓝光视频.png",
"murl":"q:APP影视"
},
{
"title":"林谷影视",
"url":"http://ys.linguyy.xyz/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/林谷影视.png",
"murl":"q:APP影视"
},
{
"title":"冷视TV",
"url":"https://len.tv/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/冷视TV.png",
"murl":"q:APP影视"
},
{
"title":"美剧范",
"url":"http://ttzmz.net/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/美剧范.png",
"murl":"q:APP影视"
},
{
"title":"喵乐影视",
"url":"http://miaoleys.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/喵乐影视.png",
"murl":"q:APP影视"
},
{
"title":"名视影",
"url":"http://app.qqccv.com/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/名视影.png",
"murl":"q:APP影视"
},
{
"title":"麻子追剧",
"url":"http://b.2maz.cn/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/麻子追剧.png",
"murl":"q:APP影视"
},
{
"title":"奈飞中文",
"url":"https://www.naifei.org/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/奈飞中文.png",
"murl":"q:APP影视"
},
{
"title":"皮皮动漫",
"url":"http://dm.muying.me/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/皮皮动漫.png",
"murl":"q:APP影视"
},
{
"title":"奇趣影视",
"url":"https://app.qiqu.me/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/奇趣影视.png",
"murl":"q:APP影视"
},
{
"title":"思奇影视",
"url":"http://app.siqitv.vip/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/思奇影视.png",
"murl":"q:APP影视"
},
{
"title":"三日影院",
"url":"https://www.3ri.net/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/三日影院.png",
"murl":"q:APP影视"
},
{
"title":"视听星球",
"url":"http://zjyapijzys.shynwlkj.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/视听星球.png",
"murl":"q:APP影视"
},
{
"title":"土豆TV",
"url":"http://xiuxian.qd234.cn/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/土豆TV.png",
"murl":"q:APP影视"
},
{
"title":"淘剧社",
"url":"https://app.shuhai99.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/淘剧社.png",
"murl":"q:APP影视"
},
{
"title":"天天影视",
"url":"http://app.at008.cn/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/天天影视.png",
"murl":"q:APP影视"
},
{
"title":"天天视频",
"url":"http://app.qianju.cc/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/天天视频.png",
"murl":"q:APP影视"
},
{
"title":"兔子窝",
"url":"http://cj.huimaojia.com:12345/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/兔子窝.png",
"murl":"q:APP影视"
},
{
"title":"我爱跟剧",
"url":"https://www.genmov.com/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/我爱跟剧.png",
"murl":"q:APP影视"
},
{
"title":"吾爱影视",
"url":"http://app.5lp.net/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/吾爱影视.png",
"murl":"q:APP影视"
},
{
"title":"吾爱影视",
"url":"http://52ysw.xyz/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/吾爱影视1.png",
"murl":"q:APP影视"
},
{
"title":"蜗牛动漫",
"url":"http://woniudm.woniu.cyou:20000/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/蜗牛动漫.png",
"murl":"q:APP影视"
},
{
"title":"熊猫动漫",
"url":"http://dongman.k8aa.com/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/熊猫动漫.png",
"murl":"q:APP影视"
},
{
"title":"玺娜影视",
"url":"https://pp.wxina.cn/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/玺娜影视.png",
"murl":"q:APP影视"
},
{
"title":"小蜻蜓",
"url":"http://3ketv.com/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/小蜻蜓视频.png",
"murl":"q:APP影视"
},
{
"title":"星球视频",
"url":"http://119.29.121.48:8088/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/星球视频.png",
"murl":"q:APP影视"
},
{
"title":"玺心影视",
"url":"https://tv.arbd.cn/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/玺心影视.png",
"murl":"q:APP影视"
},
{
"title":"星影相随",
"url":"http://app.rootthree.top/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/星影相随.png",
"murl":"q:APP影视"
},
{
"title":"小易影视",
"url":"http://xy.irop.cn/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/小易影视.png",
"murl":"q:APP影视"
},
{
"title":"樱花动漫",
"url":"https://www.dmwu.cc/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/樱花动漫.png",
"murl":"q:APP影视"
},
{
"title":"月亮影视",
"url":"http://ys.13tv.top/acj_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/月亮影视.png",
"murl":"q:APP影视"
},
{
"title":"影视大全",
"url":"https://xc.xixi2yy.xyz/mogai_api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/影视大全HD.png",
"murl":"q:APP影视"
},
{
"title":"影视热剧",
"url":"http://lb.26ys.cn/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/影视热剧.png",
"murl":"q:APP影视"
},
{
"title":"渔渔影视",
"url":"http://luobo.yugenye.site/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/渔渔影视.png",
"murl":"q:APP影视"
},
{
"title":"柚子视频",
"url":"http://yz.26ys.cn/api.php/v1.vod",
"img":"https://inmemory.coding.net/p/InMemory/d/MBrowser/git/raw/master/AppFile/AppIcon/柚子视频.png",
"murl":"q:APP影视"
},
{
"title":"追剧猫",