mao.json 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346
  1. {
  2. //"spider":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/spider5.jar",
  3. //"spider":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/spriederdd.jar",
  4. "spider":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/quan.jar",
  5. //"spider":"https://agit.ai/byung/maotv/raw/commit/71d45f6ae29d927aee84c54f8568a9dabaaefe49/classes.jar",
  6. "sites": [
  7. {
  8. "key": "csp_77",
  9. "name": "77(SP)",
  10. "type": 3,
  11. "api": "csp_Kunyu77",
  12. "searchable": 1,
  13. "quickSearch": 1,
  14. "filterable": 1
  15. },
  16. {
  17. "key": "LiteApple",
  18. "name": "小苹果",
  19. "type": 3,
  20. "api": "csp_LiteApple",
  21. "searchable": 1,
  22. "quickSearch": 1,
  23. "filterable": 1
  24. },
  25. {
  26. "key": "csp_Cokemv",
  27. "name": "焦炭(SP)",
  28. "type": 3,
  29. "api": "csp_Cokemv",
  30. "searchable": 1,
  31. "quickSearch": 1,
  32. "filterable": 1
  33. },
  34. {
  35. "key": "csp_CZSPP",
  36. "name": "厂长(SP)",
  37. "type": 3,
  38. "api": "csp_CZSPP",
  39. "searchable": 1,
  40. "quickSearch": 1,
  41. "filterable": 0
  42. },
  43. {
  44. "key": "csp_Fantuan",
  45. "name": "饭团(SP)",
  46. "type": 3,
  47. "api": "csp_Fantuan",
  48. "searchable": 1,
  49. "quickSearch": 1,
  50. "filterable": 1
  51. },
  52. {
  53. "key": "csp_Buka",
  54. "name": "不卡(SP)",
  55. "type": 3,
  56. "api": "csp_Buka",
  57. "searchable": 1,
  58. "quickSearch": 1,
  59. "filterable": 1
  60. },
  61. {
  62. "key": "csp_GitCafe",
  63. "name": "小纸条",
  64. "type": 3,
  65. "api": "csp_GitCafe",
  66. "searchable": 1,
  67. "quickSearch": 1,
  68. "filterable": 0
  69. },
  70. {
  71. "key": "csp_AliPanSou",
  72. "name": "阿里盘搜",
  73. "type": 3,
  74. "api": "csp_AliPanSou",
  75. "searchable": 1,
  76. "quickSearch": 1,
  77. "filterable": 0
  78. },
  79. {"key":"csp_biubiu_真不卡影院(不支持搜索)","name":"真不卡影院(不支持搜索)(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/真不卡影院.json"},
  80. {"key":"csp_biubiu_在线之家","name":"在线之家(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/在线之家.json"},
  81. {"key":"csp_biubiu_hdmoli","name":"hdmoli(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/hdmoli.json"},
  82. {"key":"csp_biubiu_骚火电影","name":"骚火电影(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/骚火电影.json"},
  83. {"key":"csp_biubiu_LIBVIO","name":"LIBVIO(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/LIBVIO.json"},
  84. {"key":"csp_biubiu_周末电影","name":"周末电影(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/周末电影.json"},
  85. {"key":"csp_biubiu_火火影视","name":"火火影视(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/火火影视.json"},
  86. {"key":"csp_biubiu_完美看看影视","name":"完美看看影视(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/完美看看影视.json"},
  87. {"key":"csp_biubiu_乐猪影视","name":"乐猪影视(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/乐猪影视.json"},
  88. {"key":"csp_biubiu_口袋影院","name":"口袋影院(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/口袋影院.json"},
  89. {"key":"csp_biubiu_六度TV","name":"六度TV(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/六度TV.json"},
  90. {"key":"csp_biubiu_花猫TV","name":"花猫TV(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/花猫TV.json"},
  91. {"key":"csp_biubiu_348电影网","name":"348电影网(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/348电影网.json"},
  92. {"key":"csp_biubiu_思乐影视","name":"思乐影视(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/思乐影视.json"},
  93. {"key":"csp_biubiu_乌龟影院","name":"乌龟影院(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/乌龟影院.json"},
  94. {"key":"csp_biubiu_爱港剧","name":"爱港剧(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/爱港剧.json"},
  95. {"key":"csp_biubiu_小熊影视","name":"小熊影视(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/小熊影视.json"},
  96. {"key":"csp_biubiu_克拉TV","name":"克拉TV(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/克拉TV.json"},
  97. {"key":"csp_biubiu_创艺影视","name":"创艺影视(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/创艺影视.json"},
  98. {"key":"csp_biubiu_利丽娅电影","name":"利丽娅电影(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/利丽娅电影.json"},
  99. {"key":"csp_biubiu_奈菲影院","name":"奈菲影院(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/奈菲影院.json"},
  100. {"key":"csp_biubiu_七年影视","name":"七年影视(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/七年影视.json"},
  101. {"key":"csp_biubiu_蓝莓影视","name":"蓝莓影视(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/蓝莓影视.json"},
  102. {"key":"csp_biubiu_牛马TV","name":"牛马TV(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/牛马TV.json"},
  103. {"key":"csp_biubiu_豆角网","name":"豆角网(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/豆角网.json"},
  104. {"key":"csp_biubiu_尘落影院","name":"尘落影院(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/尘落影院.json"},
  105. {"key":"csp_biubiu_爱看影视","name":"爱看影视(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/爱看影视.json"},
  106. {"key":"csp_biubiu_凛冬又至","name":"凛冬又至(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/凛冬又至.json"},
  107. {"key":"csp_biubiu_Nike影视网","name":"Nike影视网(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/Nike影视网.json"},
  108. {"key":"csp_biubiu_伊雪湾","name":"伊雪湾(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/伊雪湾.json"},
  109. {"key":"csp_biubiu_极品影视","name":"极品影视(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/极品影视.json"},
  110. {"key":"csp_biubiu_双十电影","name":"双十电影(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/双十电影.json"},
  111. {"key":"csp_biubiu_139影视","name":"139影视(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/139影视.json"},
  112. //{"key": "ikan_spider","name": "爱看(SP)","type": 3,"api": "csp_IKan","searchable": 1,"quickSearch": 1, //"filterable": 1},
  113. //{"key": "mjxq_spider","name": "美剧星球(SP)","type": 3,"api": "csp_MjxqApp","searchable": 1,"quickSearch": //1,"filterable": 1},
  114. {
  115. "key": "csp_xpath_qiyou",
  116. "name": "奇优电影(XP)",
  117. "type": 3,
  118. "api": "csp_XPath",
  119. "searchable": 1,
  120. "quickSearch": 1,
  121. "filterable": 1,
  122. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/qiyou.json"
  123. },
  124. {
  125. "key": "csp_xpath_cokemv",
  126. "name": "Cokemv(XPMac)",
  127. "type": 3,
  128. "api": "csp_XPathMacFilter",
  129. "searchable": 1,
  130. "quickSearch": 1,
  131. "filterable": 1,
  132. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/cokemv.json"
  133. },
  134. {
  135. "key": "csp_xpath_huya",
  136. "name": "虎牙直播(XP)",
  137. "type": 3,
  138. "api": "csp_XPathMacFilter",
  139. "searchable": 1,
  140. "quickSearch": 1,
  141. "filterable": 1,
  142. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/huya.json"
  143. },
  144. {
  145. "key": "csp_xpath_kuqi",
  146. "name": "酷奇MV(XP)",
  147. "type": 3,
  148. "api": "csp_XPathMacFilter",
  149. "searchable": 1,
  150. "quickSearch": 1,
  151. "filterable": 1,
  152. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/kuqimv.json"
  153. },
  154. {"key":"csp_xpath_qcys","name":"奇粹影视(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/ikuwoo.json"},
  155. {
  156. "key": "六度",
  157. "name": "六度(XPM)",
  158. "type": 3,
  159. "api": "csp_XPathMacFilter",
  160. "searchable": 1,
  161. "quickSearch": 1,
  162. "filterable": 1,
  163. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/6dtv.json"
  164. },
  165. {
  166. "key": "csp_xpath_unss",
  167. "name": "九洲影视(XPMF)",
  168. "type": 3,
  169. "api": "csp_XPathMacFilter",
  170. "searchable": 1,
  171. "quickSearch": 1,
  172. "filterable": 1,
  173. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E4%B9%9D%E5%B7%9E.json"
  174. },
  175. {
  176. "key": "csp_appys_xiaogui_躺平影视",
  177. "name": "躺平影视(m)",
  178. "type": 3,
  179. "api": "csp_AppYsV2",
  180. "searchable": 1,
  181. "quickSearch": 1,
  182. "filterable": 1,
  183. "ext": "http://www.lltpys.com/api.php/app/"
  184. },
  185. {
  186. "key": "csp_appysv2_钟特影视",
  187. "name": "钟特影视(v1)",
  188. "type": 3,
  189. "api": "csp_AppYsV2",
  190. "searchable": 1,
  191. "quickSearch": 1,
  192. "filterable": 1,
  193. "ext": "https://app.zteys.com/api.php/v1.vod"
  194. },
  195. {
  196. "key": "csp_xpath_chen",
  197. "name": "尘落(优XP)",
  198. "type": 3,
  199. "api": "csp_XPathFilter",
  200. "searchable": 1,
  201. "quickSearch": 1,
  202. "filterable": 1,
  203. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/chenluo.json"
  204. },
  205. {"key":"csp_xpath_hmtv","name":"花猫TV(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/huamao.json"},{"key":"csp_xpath_hhys","name":"火火影视TV(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/huohuo.json"},
  206. {
  207. "key": "csp_AppYs_秒播",
  208. "name": "秒播",
  209. "type": 3,
  210. "api": "csp_AppYsV2",
  211. "searchable": 1,
  212. "quickSearch": 1,
  213. "filterable": 1,
  214. "ext": "http://mkk.gotka.top/api.php/v1.vod"
  215. },
  216. {
  217. "key": "csp_appysv2_DC影视",
  218. "name": "DC影视(优)",
  219. "type": 3,
  220. "api": "csp_AppYsV2",
  221. "searchable": 1,
  222. "quickSearch": 0,
  223. "filterable": 1,
  224. "ext": "http://chaorenbb.com/api.php/v1.vod"
  225. },
  226. {
  227. "key": "csp_appysv2_9e国语",
  228. "name": "9E国语",
  229. "type": 3,
  230. "api": "csp_AppYsV2",
  231. "searchable": 1,
  232. "quickSearch": 1,
  233. "filterable": 1,
  234. "ext": "http://vod.9e03.com/lvdou_api.php/v1.vod"
  235. },
  236. {
  237. "key": "csp_appysv2_金叶影院",
  238. "name": "金叶影院(M2)",
  239. "type": 3,
  240. "api": "csp_AppYsV2",
  241. "searchable": 1,
  242. "quickSearch": 1,
  243. "filterable": 1,
  244. "ext": "http://r.zjj.life:88/mv/api.php/Chengcheng/vod"
  245. },
  246. {
  247. "key": "csp_xpath_netf",
  248. "name": "网飞(XP)",
  249. "type": 3,
  250. "api": "csp_XPathFilter",
  251. "searchable": 1,
  252. "quickSearch": 1,
  253. "filterable": 1,
  254. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/netflix.json"
  255. },
  256. {
  257. "key": "csp_xpath_libv",
  258. "name": "libvio(XP)",
  259. "type": 3,
  260. "api": "csp_XPathFilter",
  261. "searchable": 1,
  262. "quickSearch": 1,
  263. "filterable": 1,
  264. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/libvio.json"
  265. },
  266. {"key":"csp_biubiu_影视工厂","name":"影视工厂(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/影视工厂.json"},
  267. {
  268. "key": "csp_xpath_saohuo",
  269. "name": "骚火(XPath)",
  270. "type": 3,
  271. "api": "csp_XPath",
  272. "searchable": 1,
  273. "quickSearch": 1,
  274. "filterable": 0,
  275. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/%E9%AA%9A%E7%81%AB.json"
  276. },
  277. {
  278. "key": "csp_xpath_lezhutv",
  279. "name": "乐猪(XPath)",
  280. "type": 3,
  281. "api": "csp_XPath",
  282. "searchable": 1,
  283. "quickSearch": 1,
  284. "filterable": 0,
  285. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/%E4%B9%90%E7%8C%AAtv.json"
  286. },
  287. {
  288. "key": "csp_xpath_ddg",
  289. "name": "达达龟(XP)",
  290. "type": 3,
  291. "api": "csp_XPathFilter",
  292. "searchable": 1,
  293. "quickSearch": 1,
  294. "filterable": 1,
  295. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/dadagui.json"
  296. },
  297. {
  298. "key": "csp_appys_看365",
  299. "name": "看365",
  300. "type": 3,
  301. "api": "csp_AppYsV2",
  302. "searchable": 1,
  303. "quickSearch": 0,
  304. "filterable": 1,
  305. "ext": "https://www.kan365.xyz/api.php/app/"
  306. },
  307. {
  308. "key": "csp_appysv2_看看",
  309. "name": "看看吧",
  310. "type": 3,
  311. "api": "csp_AppYsV2",
  312. "searchable": 1,
  313. "quickSearch": 0,
  314. "filterable": 1,
  315. "ext": "http://888.ccboke.top/ruifenglb_api.php/v1.vod"
  316. },
  317. {"key":"csp_biubiu_看一看影视","name":"看一看影视(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/看一看影视.json"},
  318. {"key":"csp_biubiu_VIP电影院","name":"VIP电影院(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/VIP电影院.json"},
  319. {"key":"csp_biubiu_31看影视","name":"31看影视(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/31看影视.json"},
  320. {"key":"csp_biubiu_思古影视","name":"思古影视(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/思古影视.json"},
  321. {
  322. "key": "csp_appysv2_天空影视V2",
  323. "name": "天空影视V2(M2)",
  324. "type": 3,
  325. "api": "csp_AppYsV2",
  326. "searchable": 1,
  327. "quickSearch": 0,
  328. "filterable": 1,
  329. "ext": "https://www.tkys.tv/xgapp.php/v2/"
  330. },
  331. {"key":"csp_xpath_subb","name":"素白白TV(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/subaibai.json"},
  332. {
  333. "key": "csp_xpath_vipdy",
  334. "name": "VIP电影(XP)",
  335. "type": 3,
  336. "api": "csp_XPathMacFilter",
  337. "searchable": 1,
  338. "quickSearch": 1,
  339. "filterable": 1,
  340. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/vip1280.json"
  341. },
  342. {"key":"csp_biubiu_天空资源","name":"天空资源(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/天空资源.json"},
  343. {"key":"csp_xpath_juhu","name":"剧荒(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/juhuang.json"},
  344. {
  345. "key": "csp_xpath_huah",
  346. "name": "花和电影(XP)",
  347. "type": 3,
  348. "api": "csp_XPathMacFilter",
  349. "searchable": 1,
  350. "quickSearch": 1,
  351. "filterable": 1,
  352. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/huahe.json"
  353. },
  354. {
  355. "key": "csp_xpath_dsx",
  356. "name": "大师兄XP",
  357. "type": 3,
  358. "api": "csp_XPathMacFilter",
  359. "searchable": 1,
  360. "quickSearch": 1,
  361. "filterable": 1,
  362. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/dsxys.json"
  363. },
  364. {"key":"csp_xpath_mboy","name":"MBO影视(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/mbomovice.json"},
  365. {
  366. "key": "csp_xpath_zjdr",
  367. "name": "追剧达人(XP)",
  368. "type": 3,
  369. "api": "csp_XPathMacFilter",
  370. "searchable": 1,
  371. "quickSearch": 1,
  372. "filterable": 1,
  373. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/vipmv.json"
  374. },
  375. {"key":"csp_xpath_dxdx","name":"滴嘻滴嘻(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/dixidixi.json"},
  376. {
  377. "key": "csp_appysv2_独播社",
  378. "name": "独播社(优)",
  379. "type": 3,
  380. "api": "csp_AppYsV2",
  381. "searchable": 1,
  382. "quickSearch": 0,
  383. "filterable": 1,
  384. "ext": "http://35ys.cc/api.php/v1.vod"
  385. },
  386. {
  387. "key": "csp_xpath_zx",
  388. "name": "在线之家(XP)",
  389. "type": 3,
  390. "api": "csp_XPathFilter",
  391. "searchable": 1,
  392. "quickSearch": 1,
  393. "filterable": 1,
  394. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E5%9C%A8%E7%BA%BF%E4%B9%8B%E5%AE%B6.json"
  395. },
  396. {"key":"csp_biubiu_神马影院10","name":"神马影院10(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/神马影院10.json"},
  397. {"key":"csp_biubiu_23影院","name":"23影院(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/23影院.json"},
  398. {"key":"csp_biubiu_VIP1280","name":"VIP1280(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/VIP1280.json"},
  399. {"key":"csp_biubiu_city电影","name":"city电影(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/biubiu/city电影.json"},
  400. {
  401. "key": "csp_appysv2_段友影视",
  402. "name": "段友影视(优)",
  403. "type": 3,
  404. "api": "csp_AppYsV2",
  405. "searchable": 1,
  406. "quickSearch": 0,
  407. "filterable": 1,
  408. "ext": "http://121.204.249.135:4433/ruifenglb_api.php/v1.vod"
  409. },
  410. {
  411. "key": "csp_appysv2_1080kk",
  412. "name": "1080kk(M2)",
  413. "type": 3,
  414. "api": "csp_AppYsV2",
  415. "searchable": 1,
  416. "quickSearch": 1,
  417. "filterable": 1,
  418. "ext": "http://123.250idc.com/mogai_api.php/v1.vod"
  419. },
  420. {
  421. "key": "csp_appysv2_飓风影院",
  422. "name": "飓风影院(M2)",
  423. "type": 3,
  424. "api": "csp_AppYsV2",
  425. "searchable": 1,
  426. "quickSearch": 1,
  427. "filterable": 1,
  428. "ext": "http://yidayy.top/lehailb_api.php/v1.vod"
  429. },
  430. {
  431. "key": "csp_appysv2_影视大全",
  432. "name": "影视大全(M2)",
  433. "type": 3,
  434. "api": "csp_AppYsV2",
  435. "searchable": 1,
  436. "quickSearch": 1,
  437. "filterable": 1,
  438. "ext": "https://app.okmedcos.com/ruifenglb_api.php/v1.vod"
  439. },
  440. {
  441. "key": "csp_xpath_zmdy",
  442. "name": "周末电影(XP)",
  443. "type": 3,
  444. "api": "csp_XPathFilter",
  445. "searchable": 1,
  446. "quickSearch": 1,
  447. "filterable": 1,
  448. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/zzzlike.json"
  449. },
  450. {
  451. "key": "csp_appysv2_暖光影视",
  452. "name": "暖光影视(优)",
  453. "type": 3,
  454. "api": "csp_AppYsV2",
  455. "searchable": 1,
  456. "quickSearch": 0,
  457. "filterable": 1,
  458. "ext": "https://app.bl210.com/api.php/v1.vod"
  459. },
  460. {"key":"csp_xpath_lmys","name":"来米影视(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/qdytv.json"},
  461. {
  462. "key": "csp_xpath_1080p",
  463. "name": "1080电影(XP)",
  464. "type": 3,
  465. "api": "csp_XPathFilter",
  466. "searchable": 1,
  467. "quickSearch": 1,
  468. "filterable": 1,
  469. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/1080.json"
  470. },
  471. {"key":"csp_DY1990","name":"90(SP)","type":3,"api":"csp_DY1990","searchable":1,"quickSearch":1,"filterable":0},
  472. //{"key": "2345_spider","name": "2345影院(官源)","type": 3,"api": "csp_YS2345","searchable":1,"quickSearch": //1,"filterable": 1,"ext": "http://inews.gtimg.com/newsapp_ls/0/14743078626/0"},
  473. //{"key": "sogou_spider","name": "搜狗影院(官源)","type": 3,"api": "csp_YSSogou","searchable": //1,"quickSearch": 1,"filterable": 1,"ext": "http://inews.gtimg.com/newsapp_ls/0/14743078651/0"},
  474. //{"key": "360_spider","name": "360影院(官源)","type": 3,"api": "csp_YS360","searchable": 1,"quickSearch": //1,"filterable": 1,"ext": "http://inews.gtimg.com/newsapp_ls/0/14743078668/0"},
  475. {
  476. "key": "csp_xpath_ikan",
  477. "name": "爱看(XP)",
  478. "type": 3,
  479. "api": "csp_XPathFilter",
  480. "searchable": 1,
  481. "quickSearch": 1,
  482. "filterable": 1,
  483. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/ikan.json"
  484. },
  485. {
  486. "key": "csp_xpath_miao",
  487. "name": "喵喵(XP)",
  488. "type": 3,
  489. "api": "csp_XPathFilter",
  490. "searchable": 1,
  491. "quickSearch": 1,
  492. "filterable": 1,
  493. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/miaomiao.json"
  494. },
  495. {
  496. "key": "csp_xpath_dym8",
  497. "name": "电影迷8(XP)",
  498. "type": 3,
  499. "api": "csp_XPathFilter",
  500. "searchable": 1,
  501. "quickSearch": 1,
  502. "filterable": 1,
  503. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/dianyingmi8.json"
  504. },
  505. {
  506. "key": "csp_xpath_xqm",
  507. "name": "小强迷(优XP)",
  508. "type": 3,
  509. "api": "csp_XPathFilter",
  510. "searchable": 1,
  511. "quickSearch": 1,
  512. "filterable": 1,
  513. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/xiaoqiang.json"
  514. },
  515. {
  516. "key": "csp_xpath_tvby",
  517. "name": "TVB云播(XP)",
  518. "type": 3,
  519. "api": "csp_XPathFilter",
  520. "searchable": 1,
  521. "quickSearch": 1,
  522. "filterable": 1,
  523. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/tvb.json"
  524. },
  525. {
  526. "key": "csp_xpath_jubb",
  527. "name": "剧白白(XP)",
  528. "type": 3,
  529. "api": "csp_XPathFilter",
  530. "searchable": 1,
  531. "quickSearch": 1,
  532. "filterable": 1,
  533. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/jubaibai.json"
  534. },
  535. {
  536. "key": "csp_xpath_ddt",
  537. "name": "达达兔(XP)",
  538. "type": 3,
  539. "api": "csp_XPathFilter",
  540. "searchable": 1,
  541. "quickSearch": 1,
  542. "filterable": 1,
  543. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E8%BE%BE%E8%BE%BE%E5%85%94.json"
  544. },
  545. {
  546. "key": "csp_xpath_9egy",
  547. "name": "9E国语(XP)",
  548. "type": 3,
  549. "api": "csp_XPathFilter",
  550. "searchable": 1,
  551. "quickSearch": 1,
  552. "filterable": 1,
  553. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E4%B9%9D%E4%BA%BF%E5%9B%BD%E8%AF%AD.json"
  554. },
  555. {
  556. "key": "csp_xpath_zhangz",
  557. "name": "厂长资源(XP)",
  558. "type": 3,
  559. "api": "csp_XPathFilter",
  560. "searchable": 0,
  561. "quickSearch": 1,
  562. "filterable": 1,
  563. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E5%8E%82%E9%95%BF%E8%B5%84%E6%BA%90.json"
  564. },
  565. {
  566. "key": "csp_appysv2_日诚影视",
  567. "name": "日诚影视(M2)",
  568. "type": 3,
  569. "api": "csp_AppYsV2",
  570. "searchable": 1,
  571. "quickSearch": 1,
  572. "filterable": 1,
  573. "ext": "http://tv.rcz168.com/api.php/v1.vod"
  574. },
  575. {
  576. "key": "csp_xpath_wug",
  577. "name": "乌龟(XP)",
  578. "type": 3,
  579. "api": "csp_XPathFilter",
  580. "searchable": 1,
  581. "quickSearch": 1,
  582. "filterable": 1,
  583. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E4%B9%8C%E9%BE%9F%E5%BD%B1%E9%99%A2.json"
  584. },
  585. {
  586. "key": "csp_xpath_348",
  587. "name": "348电影(XP)",
  588. "type": 3,
  589. "api": "csp_XPathFilter",
  590. "searchable": 1,
  591. "quickSearch": 1,
  592. "filterable": 1,
  593. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/348z.json"
  594. },
  595. {
  596. "key": "csp_xpath_zj",
  597. "name": "追剧网(XP)",
  598. "type": 3,
  599. "api": "csp_XPathFilter",
  600. "searchable": 1,
  601. "quickSearch": 1,
  602. "filterable": 1,
  603. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E8%BF%BD%E5%89%A7%E7%BD%91.json"
  604. },
  605. {
  606. "key": "csp_xpath_jpys",
  607. "name": "极品影视(XP)",
  608. "type": 3,
  609. "api": "csp_XPathMacFilter",
  610. "searchable": 1,
  611. "quickSearch": 1,
  612. "filterable": 1,
  613. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/jpys.json"
  614. },
  615. {
  616. "key": "csp_xpath_pianba",
  617. "name": "片吧(XP)",
  618. "type": 3,
  619. "api": "csp_XPathFilter",
  620. "searchable": 1,
  621. "quickSearch": 1,
  622. "filterable": 1,
  623. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E7%89%87%E5%90%A7.json"
  624. },
  625. {
  626. "key": "csp_appysv2_天空影视",
  627. "name": "天空影视(M2)",
  628. "type": 3,
  629. "api": "csp_AppYsV2",
  630. "searchable": 1,
  631. "quickSearch": 0,
  632. "filterable": 1,
  633. "ext": "https://tkys.tv/xgapp.php/v1/"
  634. },
  635. {
  636. "key": "csp_appysv2_看看影视",
  637. "name": "看看影视(优)",
  638. "type": 3,
  639. "api": "csp_AppYsV2",
  640. "searchable": 1,
  641. "quickSearch": 1,
  642. "filterable": 1,
  643. "ext": "http://kk.ccboke.top/ruifenglb_api.php/v1.vod"
  644. },
  645. {
  646. "key": "嘛哩嘛哩",
  647. "name": "嘛哩嘛哩",
  648. "type": 1,
  649. "api": "https://malimali3.com/api.php/provide/vod/",
  650. "playUrl": "https://jx.parwix.com:4433/player/?url=",
  651. "searchable": 1,
  652. "quickSearch": 1,
  653. "filterable": 0,
  654. "categories": [
  655. "国产动漫",
  656. "日韩动漫",
  657. "欧美动漫",
  658. "港台动漫"
  659. ]
  660. },
  661. {
  662. "key": "csp_appysv2_懒猫影视",
  663. "name": "懒猫影视(M)",
  664. "type": 3,
  665. "api": "csp_AppYsV2",
  666. "searchable": 1,
  667. "quickSearch": 1,
  668. "filterable": 1,
  669. "ext": "https://lanmao.lanmaoymw.cn/api.php/v1.vod"
  670. },
  671. {
  672. "key": "csp_appysv2_影视猫",
  673. "name": "影视猫(M)",
  674. "type": 3,
  675. "api": "csp_AppYsV2",
  676. "searchable": 1,
  677. "quickSearch": 1,
  678. "filterable": 1,
  679. "ext": "https://vip.wscyun.com/api.php/v1.vod"
  680. },
  681. {
  682. "key": "csp_appys_U5影视",
  683. "name": "U5影视",
  684. "type": 3,
  685. "api": "csp_AppYsV2",
  686. "searchable": 1,
  687. "quickSearch": 0,
  688. "filterable": 1,
  689. "ext": "https://appx.uy07.com/api.php/v1.vod"
  690. },
  691. {
  692. "key": "csp_appys_海胆影视",
  693. "name": "海胆影视",
  694. "type": 3,
  695. "api": "csp_AppYsV2",
  696. "searchable": 1,
  697. "quickSearch": 0,
  698. "filterable": 1,
  699. "ext": "http://xf123.cc/api.php/app/"
  700. },
  701. {
  702. "key": "csp_appys_v1_美剧有范",
  703. "name": "美剧有范(m)",
  704. "type": 3,
  705. "api": "csp_AppYsV2",
  706. "searchable": 1,
  707. "quickSearch": 0,
  708. "filterable": 1,
  709. "ext": "http://ttzmz.net/api.php/v1.vod"
  710. },
  711. {
  712. "key": "csp_appysv2_迪迪影院V2",
  713. "name": "迪迪影院(M2)",
  714. "type": 3,
  715. "api": "csp_AppYsV2",
  716. "searchable": 1,
  717. "quickSearch": 0,
  718. "filterable": 1,
  719. "ext": "http://dd88.icu:6080/xgapp.php/v2/"
  720. },
  721. {
  722. "key": "csp_appysv2_手指影视",
  723. "name": "手指影视(M2)",
  724. "type": 3,
  725. "api": "csp_AppYsV2",
  726. "searchable": 1,
  727. "quickSearch": 0,
  728. "filterable": 1,
  729. "ext": "https://szys5678.com/mogai_api.php/v1.vod"
  730. },
  731. {
  732. "key": "csp_appysv2_爱酷影视",
  733. "name": "爱酷影视(优)",
  734. "type": 3,
  735. "api": "csp_AppYsV2",
  736. "searchable": 1,
  737. "quickSearch": 0,
  738. "filterable": 1,
  739. "ext": "https://www.zhanlangbu.com/ruifenglb_api.php/v1.vod"
  740. },
  741. {
  742. "key": "csp_appysv2_段友2影视",
  743. "name": "段友2影视(优)",
  744. "type": 3,
  745. "api": "csp_AppYsV2",
  746. "searchable": 1,
  747. "quickSearch": 0,
  748. "filterable": 1,
  749. "ext": "https://shangjihuoke.com/api.php/tv.vod"
  750. },
  751. {
  752. "key": "csp_appysv2_粉象视界",
  753. "name": "粉象视界(优)",
  754. "type": 3,
  755. "api": "csp_AppYsV2",
  756. "searchable": 1,
  757. "quickSearch": 0,
  758. "filterable": 1,
  759. "ext": "http://42.157.129.15:34444/lvdou_api.php/v1.vod"
  760. },
  761. {
  762. "key": "csp_appysv2_影视大全",
  763. "name": "影视大全(优)",
  764. "type": 3,
  765. "api": "csp_AppYsV2",
  766. "searchable": 1,
  767. "quickSearch": 0,
  768. "filterable": 1,
  769. "ext": "http://app.269w.com/api.php/v1.vod"
  770. },
  771. {
  772. "key": "天堂资源",
  773. "name": "天堂资源",
  774. "type": 1,
  775. "api": "http://vipmv.cc/api.php/provide/vod/",
  776. "searchable": 1,
  777. "quickSearch": 1,
  778. "filterable": 0
  779. },
  780. {"key":"csp_xpath_wnys","name":"万能影视(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/wnvod.json"},
  781. {
  782. "key": "csp_appysv2_蒲公英",
  783. "name": "蒲公英视频",
  784. "type": 3,
  785. "api": "csp_AppYsV2",
  786. "searchable": 1,
  787. "quickSearch": 1,
  788. "filterable": 1,
  789. "ext": "http://www.pgy1.top/ruifenglb_api.php/v1.vod"
  790. },
  791. {
  792. "key": "csp_xpath_jpjl",
  793. "name": "极品极链(XP)",
  794. "type": 3,
  795. "api": "csp_XPathFilter",
  796. "searchable": 1,
  797. "quickSearch": 1,
  798. "filterable": 1,
  799. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E6%9E%81%E5%93%81%E6%9E%81%E9%93%BE.json"
  800. },
  801. {
  802. "key": "csp_xpath_lranc",
  803. "name": "天天影视(XP)",
  804. "type": 3,
  805. "api": "csp_XPathMacFilter",
  806. "searchable": 1,
  807. "quickSearch": 1,
  808. "filterable": 1,
  809. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/lranc.json"
  810. },
  811. {
  812. "key": "csp_xpath_pianku",
  813. "name": "片库(XP)",
  814. "type": 3,
  815. "api": "csp_XPathFilter",
  816. "searchable": 1,
  817. "quickSearch": 1,
  818. "filterable": 1,
  819. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E7%89%87%E5%BA%93.json"
  820. },
  821. {
  822. "key": "思古影院",
  823. "name": "思古影院",
  824. "type": 1,
  825. "api": "https://www.siguyy.net/api.php/provide/vod/",
  826. "searchable": 1,
  827. "quickSearch": 1,
  828. "filterable": 0
  829. },
  830. {
  831. "key": "ok影视",
  832. "name": "ok影视",
  833. "type": 3,
  834. "api": "csp_AppYsV2",
  835. "searchable": 1,
  836. "quickSearch": 1,
  837. "filterable": 1,
  838. "ext": "http://123.ok00.xyz/api.php/v1.vod"
  839. },
  840. {
  841. "key": "极酷影视",
  842. "name": "极酷影视",
  843. "type": 3,
  844. "api": "csp_AppYsV2",
  845. "searchable": 1,
  846. "quickSearch": 1,
  847. "filterable": 1,
  848. "ext": "https://jiku.vip/mogai_api.php/v1.vod"
  849. },
  850. {
  851. "key": "卧龙资源",
  852. "name": "卧龙资源",
  853. "type": 1,
  854. "api": "https://collect.wolongzyw.com/api.php/provide/vod/",
  855. "playUrl": "",
  856. "searchable": 1,
  857. "filterable": 1,
  858. "categories": [
  859. ]
  860. },
  861. {
  862. "key": "快播资源",
  863. "name": "快播资源",
  864. "type": 1,
  865. "api": "http://www.kuaibozy.com/api.php/provide/vod/",
  866. "searchable": 1,
  867. "quickSearch": 1,
  868. "filterable": 0
  869. },
  870. {
  871. "key": "海外电影",
  872. "name": "海外电影",
  873. "type": 1,
  874. "api": "https://www.200121.com/api.php/provide/vod",
  875. "searchable": 1,
  876. "quickSearch": 1,
  877. "filterable": 0
  878. },
  879. {
  880. "key": "快看客栈",
  881. "name": "快看客栈",
  882. "type": 1,
  883. "api": "https://www.vp1127.com/api.php/provide/vod/",
  884. "searchable": 1,
  885. "quickSearch": 1,
  886. "filterable": 0
  887. },
  888. {
  889. "key": "哇可可影视",
  890. "name": "哇可可影视",
  891. "type": 1,
  892. "api": "https://www.zwcoco.com/api.php/provide/vod/",
  893. "searchable": 1,
  894. "quickSearch": 1,
  895. "filterable": 0
  896. },
  897. {
  898. "key": "U酷采集",
  899. "name": "U酷",
  900. "type": 1,
  901. "api": "https://api.ukuapi.com/api.php/provide/vod/?ac=list",
  902. "playUrl": "https://api.ukubf.com/m3u8/?url=",
  903. "searchable": 1,
  904. "quickSearch": 1,
  905. "filterable": 0
  906. },
  907. {
  908. "key": "红牛采集",
  909. "name": "红牛",
  910. "type": 1,
  911. "api": "https://www.hongniuzy2.com/api.php/provide/vod/",
  912. "playUrl": "https://www.tutukiki.com/m3u8/?url=",
  913. "searchable": 1,
  914. "quickSearch": 1,
  915. "filterable": 0
  916. },
  917. {
  918. "key": "神速采集",
  919. "name": "神速",
  920. "type": 1,
  921. "api": "https://api.sszyapi.com/api.php/provide/vod/?ac=list",
  922. "playUrl": "https://player.sszyplayer.com/dplayer/?url=",
  923. "searchable": 1,
  924. "quickSearch": 1,
  925. "filterable": 0
  926. },
  927. {
  928. "key": "趣看视界",
  929. "name": "趣看视界",
  930. "type": 1,
  931. "api": "http://qkmp4.cn/api.php/provide/vod/",
  932. "searchable": 1,
  933. "quickSearch": 0,
  934. "filterable": 1
  935. },
  936. {
  937. "key": "M3U8TV",
  938. "name": "M3U8TV",
  939. "type": 0,
  940. "api": "http://www.zycaiji.net:7788/api.php/provide/vod/at/xml",
  941. "searchable": 1,
  942. "quickSearch": 1,
  943. "filterable": 0
  944. },
  945. {
  946. "key": "无名",
  947. "name": "无名",
  948. "type": 0,
  949. "api": "http://tv.aitesucai.xyz/api.php/provide/vod/at/xml/",
  950. "searchable": 1,
  951. "quickSearch": 1,
  952. "filterable": 0
  953. },
  954. {
  955. "key": "云海官采",
  956. "name": "云海官采",
  957. "type": 0,
  958. "api": "http://101.34.7.151:600/api.php/provide/vod/at/xml/",
  959. "searchable": 1,
  960. "quickSearch": 1,
  961. "filterable": 0
  962. },
  963. {
  964. "key": "麒麟资源",
  965. "name": "麒麟资源",
  966. "type": 0,
  967. "api": "http://www.qilinzyz.com/api.php/provide/vod/at/xml",
  968. "searchable": 1,
  969. "quickSearch": 1,
  970. "filterable": 0
  971. },
  972. {
  973. "key": "卧龙",
  974. "name": "卧龙资源",
  975. "type": 0,
  976. "api": "https://www.wolongzyw.com/api.php/provide/vod/at/xml",
  977. "searchable": 1,
  978. "quickSearch": 1,
  979. "filterable": 0
  980. },
  981. {
  982. "key": "乐活影视",
  983. "name": "乐活影视",
  984. "type": 0,
  985. "api": "https://lehootv.com/api.php/provide/vod/at/xml",
  986. "searchable": 1,
  987. "quickSearch": 1,
  988. "filterable": 0
  989. },
  990. {
  991. "key": "千寻影视",
  992. "name": "千寻影视",
  993. "type": 1,
  994. "api": "http://wy.dqyhg.cn/api.php/provide/vod/?ac=list",
  995. "searchable": 1,
  996. "quickSearch": 1,
  997. "filterable": 0,
  998. "categories": [
  999. "综艺",
  1000. "动漫",
  1001. "动作片",
  1002. "喜剧片",
  1003. "爱情片",
  1004. "科幻片",
  1005. "恐怖片",
  1006. "剧情片",
  1007. "战争片",
  1008. "国产剧",
  1009. "港台剧",
  1010. "日韩剧",
  1011. "欧美剧",
  1012. "台湾剧",
  1013. "蓝光大陆",
  1014. "港台综艺"
  1015. ]
  1016. },
  1017. {
  1018. "key": "橘猫",
  1019. "name": "橘猫",
  1020. "type": 0,
  1021. "api": "http://www.zitv.cc/api.php/provide/vod/at/xml/",
  1022. "searchable": 1,
  1023. "quickSearch": 1,
  1024. "filterable": 0
  1025. },
  1026. {
  1027. "key": "39影视",
  1028. "name": "39影视",
  1029. "type": 0,
  1030. "api": "https://www.39kan.com/api.php/provide/vod/at/xml",
  1031. "searchable": 1,
  1032. "quickSearch": 1,
  1033. "filterable": 0
  1034. },
  1035. {
  1036. "key": "push_agent",
  1037. "name": "推送",
  1038. "type": 3,
  1039. "api": "csp_Ali",
  1040. "searchable": 1,
  1041. "quickSearch": 1,
  1042. "filterable": 0
  1043. }
  1044. ],
  1045. "lives": [ {
  1046. "group": "CCTV",
  1047. "channels": [{
  1048. "name": "CCTV-1",
  1049. "urls": [
  1050. "http://39.134.66.110/PLTV/88888888/224/3221225816/index.m3u8",
  1051. "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225918/index.m3u8",
  1052. "http://117.148.179.160/PLTV/88888888/224/3221231468/index.m3u8", "http://otttv.bj.chinamobile.com/PLTV/88888888/224/3221226226/index.m3u8?servicetype=2&icpid=88888888&accounttype=1&limitflux=-1&limitdur=-1&GuardEncType=2&accountinfo=hEQbBsN1cd87ZS1LRd3TXf5LH0Ql8IEhnGwO%2B75IdBOPtEbjPb9jhieBCtTUAr9dv5ZbZ4EessCEDFzP4cGUE71B0UFe79pybuMPoFbNny1A5gXy7m59YoE1AMvcRYl8Pvf6NHAGt8pY%2F1XkpmVDXg%3D%3D%3A20180910182102%2C60D21CD359DA%2C124.129.96.17%2C20180910182102%2C10000100000000050000000002171815%2C0B6786BF2451D83B45BD7E85EAB1B8F7%2C-1%2C1%2C1%2C-1%2C%2C7%2C2201300%2C17%2C%2C4%2CEND"
  1053. ]
  1054. }, {
  1055. "name": "CCTV-2",
  1056. "urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225619/index.m3u8", "http://otttv.bj.chinamobile.com/PLTV/88888888/224/3221226230/index.m3u8?servicetype=2&icpid=&accounttype=1&limitflux=-1&limitdur=-1&GuardEncType=2&accountinfo=hEQbBsN1cd87ZS1LRd3TXf5LH0Ql8IEhnGwO%2B75IdBOPtEbjPb9jhieBCtTUAr9dv5ZbZ4EessCEDFzP4cGUE71B0UFe79pybuMPoFbNny03lPQqzzaPom58NeiSUcIEpHb2JZvMEi7Y3xwc0BSosA%3D%3D%3A20180910182829%2C60D21CD359DA%2C124.129.96.17%2C20180910182829%2C10000100000000050000000002171859%2C0B6786BF2451D83B45BD7E85EAB1B8F7%2C-1%2C1%2C1%2C-1%2C%2C7%2C2201300%2C17%2C%2C4%2CEND",
  1057. "http://111.13.42.43/PLTV/88888888/224/3221226230/1.m3u8"]
  1058. }, {
  1059. "name": "CCTV-3",
  1060. "urls": ["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226021/index.m3u8",
  1061. "http://111.63.117.13:6060/030000001000/CCTV-3/CCTV-3.m3u8"]
  1062. }, {
  1063. "name": "CCTV-4",
  1064. "urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225621/index.m3u8"]
  1065. }, {
  1066. "name": "CCTV-5",
  1067. "urls": [
  1068. "http://111.63.117.13:6060/030000001000/CCTV-5/CCTV-5.m3u8", "http://39.134.66.110/PLTV/88888888/224/3221225818/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231702/index.m3u8"]
  1069. }, {
  1070. "name": "CCTV-5+",
  1071. "urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225649/index.m3u8",
  1072. "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225761/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231459/index.m3u8"
  1073. ]
  1074. }, {
  1075. "name": "CCTV-6",
  1076. "urls": [
  1077. "http://117.148.179.153/PLTV/88888888/224/3221231724/index.m3u8",
  1078. "http://39.134.24.24/PLTV/88888888/224/3221226027/index.m3u8"]
  1079. }, {
  1080. "name": "CCTV-7",
  1081. "urls": ["http://39.135.138.60:18890/PLTV/88888910/224/3221225624/index.m3u8", "http://39.134.66.110/PLTV/88888888/224/3221225671/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231633/index.m3u8" ]
  1082. }, {
  1083. "name": "CCTV-8",
  1084. "urls": ["http://39.134.24.24/PLTV/88888888/224/3221226029/index.m3u8", "http://117.148.179.55/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230737/index.m3u8"]
  1085. }, {"name":"CCTV-9","urls":[
  1086. "http://39.134.115.163:8080/PLTV/88888910/224/3221225626/index.m3u8",
  1087. "http://117.148.179.162/PLTV/88888888/224/3221231697/index.m3u8",
  1088. "http://39.134.66.110/PLTV/88888888/224/3221225676/index.m3u8"]
  1089. }, {
  1090. "name": "CCTV-10",
  1091. "urls": [
  1092. "http://39.134.66.110/PLTV/88888888/224/3221225677/index.m3u8"]
  1093. }, {
  1094. "name": "CCTV-11",
  1095. "urls": ["http://117.148.179.164/PLTV/88888888/224/3221231711/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225597/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225869/1.m3u8"]
  1096. }, {
  1097. "name": "CCTV-12",
  1098. "urls": ["http://117.148.179.150/PLTV/88888888/224/3221231660/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225669/index.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226228/1.m3u8"]
  1099. }, {
  1100. "name": "CCTV-13",
  1101. "urls": ["rtsp://183.252.176.54:554/PLTV/88888888/224/3221226104/10000100000000060000000002298296_0.smil",
  1102. "http://39.135.138.60:18890/PLTV/88888910/224/3221225638/index.m3u8",
  1103. "http://39.134.115.163:8080/PLTV/88888910/224/3221225638/index.m3u8", "http://111.13.42.8/PLTV/88888888/224/3221226568/1.m3u8"]
  1104. }, {
  1105. "name": "CCTV-14",
  1106. "urls": [
  1107. "http://117.148.179.182/PLTV/88888888/224/3221231648/index.m3u8",
  1108. "http://39.134.24.24/PLTV/88888888/224/3221225857/index.m3u8"]
  1109. }, {
  1110. "name": "CCTV-15",
  1111. "urls": ["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225601/index.m3u8"]
  1112. }, {
  1113. "name": "CCTV-16",
  1114. "urls": ["http://liveop.cctv.cn/hls/CCTV16HD/playlist.m3u8"]
  1115. }, {
  1116. "name": "CCTV-17",
  1117. "urls": ["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225765/index.m3u8",
  1118. "http://39.134.66.110/PLTV/88888888/224/3221225708/index.m3u8"]
  1119. }
  1120. ]},
  1121. {
  1122. "group": "卫视",
  1123. "channels": [{
  1124. "name": "湖南卫视",
  1125. "urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225745/index.m3u8","http://39.134.66.2/PLTV/88888888/224/3221225506/index.m3u8"]
  1126. }, {
  1127. "name": "东南卫视",
  1128. "urls": ["http://39.135.55.105:6610/PLTV/88888888/224/3221227156/index.m3u8?servicetype=1"]
  1129. }, {"name":"海峡卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227198/index.m3u8?servicetype=1"]},
  1130. {"name":"深圳卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225848/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227242/index.m3u8?servicetype=1"]},
  1131. {"name":"广东卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225824/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227164/index.m3u8?servicetype=1"]},
  1132. {"name":"广东南方卫视上星","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227214/index.m3u8?servicetype=1"]},
  1133. {"name":"江苏卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225847/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227160/index.m3u8?servicetype=1"]},
  1134. {"name":"东方卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225828/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226560/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226603/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227059/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226895/index.m3u8?servicetype=1"]},
  1135. {"name":"云南卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227181/index.m3u8?servicetype=1"]},
  1136. {"name":"北京卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225826/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225937/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227246/index.m3u8?servicetype=1"]},
  1137. {"name":"厦门卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226781/index.m3u8?servicetype=1"]},
  1138. {"name":"吉林卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227099/index.m3u8?servicetype=1"]},
  1139. {"name":"四川卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227182/index.m3u8?servicetype=1"]},
  1140. {"name":"天津卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225830/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225941/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227205/index.m3u8?servicetype=1"]},
  1141. {"name":"安徽卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225844/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227178/index.m3u8?servicetype=1"]},
  1142. {"name":"山东卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225843/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226928/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227236/index.m3u8?servicetype=1"]},
  1143. {"name":"江西卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225834/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227022/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227209/index.m3u8?servicetype=1"]},
  1144. {"name":"河北卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227063/index.m3u8?servicetype=1"]},
  1145. {"name":"河南卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227095/index.m3u8?servicetype=1"]},
  1146. {"name":"浙江卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225825/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225870/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225934/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227193/index.m3u8?servicetype=1"]},
  1147. {"name":"海南卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227216/index.m3u8?servicetype=1"]},
  1148. {"name":"湖北卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225840/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226863/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227111/index.m3u8?servicetype=1"]},
  1149. {"name":"贵州卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226827/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227201/index.m3u8?servicetype=1"]},
  1150. {"name":"辽宁卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225832/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227141/index.m3u8?servicetype=1"]},
  1151. {"name":"重庆卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225831/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225949/index.m3u8?servicetype=1"]},
  1152. {"name":"重庆卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227240/index.m3u8?servicetype=1"]},
  1153. {"name":"黑龙江卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225862/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225940/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227197/index.m3u8?servicetype=1"]},
  1154. {"name":"上海纪实人文","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225946/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227213/index.m3u8?servicetype=1"]},
  1155. {"name":"北京冬奥纪实","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225944/index.m3u8?servicetype=1"]},
  1156. {"name":"江西陶瓷","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227234/index.m3u8?servicetype=1"]},
  1157. {"name":"湖南快乐垂钓","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226940/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227028/index.m3u8?servicetype=1"]},
  1158. {"name":"湖南金鹰纪实","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226937/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226975/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227018/index.m3u8?servicetype=1"]},
  1159. {"name":"熊猫频道","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226715/index.m3u8?servicetype=1"]},
  1160. {"name":"SiTV全纪实","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227083/index.m3u8?servicetype=1"]},
  1161. {"name":"SiTV动漫秀场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227071/index.m3u8?servicetype=1"]},
  1162. {"name":"SiTV极速汽车","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227186/index.m3u8?servicetype=1"]},
  1163. {"name":"SiTV欢笑剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227145/index.m3u8?servicetype=1"]},
  1164. {"name":"SiTV游戏风云","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227075/index.m3u8?servicetype=1"]},
  1165. {"name":"SiTV生活时尚","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227091/index.m3u8?servicetype=1"]},
  1166. {"name":"SiTV都市剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227204/index.m3u8?servicetype=1"]},
  1167. {"name":"NewTV中国功夫","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225896/index.m3u8?servicetype=1"]},
  1168. {"name":"NewTV军事评论","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225890/index.m3u8?servicetype=1"]},
  1169. {"name":"NewTV军旅剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225887/index.m3u8?servicetype=1"]},
  1170. {"name":"NewTV动作电影","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225879/index.m3u8?servicetype=1"]},
  1171. {"name":"NewTV古装剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225880/index.m3u8?servicetype=1"]},
  1172. {"name":"NewTV家庭剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225882/index.m3u8?servicetype=1"]},
  1173. {"name":"NewTV怡伴健康","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225883/index.m3u8?servicetype=1"]},
  1174. {"name":"NewTV惊悚悬疑","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225885/index.m3u8?servicetype=1"]},
  1175. {"name":"NewTV明星大片","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225893/index.m3u8?servicetype=1"]},
  1176. {"name":"NewTV武搏世界","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225895/index.m3u8?servicetype=1"]},
  1177. {"name":"NewTV潮妈辣婆","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226107/index.m3u8?servicetype=1"]},
  1178. {"name":"NewTV爱情喜剧","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225877/index.m3u8?servicetype=1"]},
  1179. {"name":"NewTV精品体育","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225886/index.m3u8?servicetype=1"]},
  1180. {"name":"NewTV精品大剧","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225889/index.m3u8?servicetype=1"]},
  1181. {"name":"NewTV精品纪录","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225888/index.m3u8?servicetype=1"]},
  1182. {"name":"NewTV金牌综艺","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225884/index.m3u8?servicetype=1"]},
  1183. {"name":"哒啵赛事","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225894/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226676/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226680/index.m3u8?servicetype=1"]},
  1184. {"name":"上海哈哈炫动","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225872/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227177/index.m3u8?servicetype=1"]},
  1185. {"name":"北京卡酷少儿","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225871/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226963/index.m3u8?servicetype=1"]},
  1186. {"name":"广东嘉佳卡通","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227230/index.m3u8?servicetype=1"]},
  1187. {"name":"江苏优漫卡通","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225874/index.m3u8?servicetype=1"]},
  1188. {"name":"湖南金鹰卡通","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226959/index.m3u8?servicetype=1"]},
  1189. {"name":"黑莓动画","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225878/index.m3u8?servicetype=1"]},
  1190. {"name":"黑莓电影","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225891/index.m3u8?servicetype=1"]},
  1191. {"name":"百视通剧集1","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226692/index.m3u8?servicetype=1"]},
  1192. {"name":"百视通剧集2","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226754/index.m3u8?servicetype=1"]},
  1193. {"name":"百视通剧集3","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227045/index.m3u8?servicetype=1"]},
  1194. {"name":"百视通剧集4","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227134/index.m3u8?servicetype=1"]},
  1195. {"name":"百视通动画1","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226732/index.m3u8?servicetype=1"]},
  1196. {"name":"百视通动画2","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226736/index.m3u8?servicetype=1"]},
  1197. {"name":"百视通动画3","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226741/index.m3u8?servicetype=1"]},
  1198. {"name":"百视通动画4","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226743/index.m3u8?servicetype=1"]},
  1199. {"name":"百视通动画5","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227036/index.m3u8?servicetype=1"]},
  1200. {"name":"百视通电影1","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226708/index.m3u8?servicetype=1"]},
  1201. {"name":"百视通电影2","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226712/index.m3u8?servicetype=1"]},
  1202. {"name":"百视通电影3","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227130/index.m3u8?servicetype=1"]},
  1203. {"name":"百视通电影4 8M720","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227037/index.m3u8?servicetype=1"]},
  1204. {"name":"百视通电竞","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227033/index.m3u8?servicetype=1"]}
  1205. ]},
  1206. {
  1207. "group": "港澳",
  1208. "channels": [{
  1209. "name": "凤凰中文",
  1210. "urls": ["http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8", "rtmp://45.88.148.178/channel/60c2f331961593122ebaf8c7?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://223.110.245.139/PLTV/3/224/3221226922/index.m3u8", "http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8", "http://zb.ios.ifeng.com/live/05QGDA0CIRK/index.m3u8", "http://117.169.124.37:6610/ysten-businessmobile/live/fhchinese/1.m3u8", "http://117.169.124.43:6610/ysten-businessmobile/live/fhchinese/index.m3u8", "http://223.110.245.136/PLTV/3/224/3221226923/index.m3u8", "http://117.169.124.37:6610/ysten-businessmobile/live/fhchinese/1.m3u8", "http://117.169.124.43:6610/ysten-businessmobile/live/fhchinese/index.m3u8", "http://playtv-live.ifeng.com:80/live/06OLEGEGM4G.m3u8", "http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221228608/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225942/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225948/1.m3u8"]
  1211. }, {
  1212. "name": "凤凰资讯",
  1213. "urls": ["http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8", "rtmp://45.88.148.178/channel/60c2f46e961593122ebaf8cb?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://zb.ios.ifeng.com/live/05QGCOB3T34/index.m3u8", "http://117.169.124.43:6610/ysten-businessmobile/live/fhzixun/index.m3u8", "http://117.169.124.37:6610/ysten-businessmobile/live/fhzixun/1.m3u8", "http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221228597/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221225949/1.m3u8"]
  1214. }, {
  1215. "name": "凤凰香港",
  1216. "urls": ["http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8", "rtmp://45.88.148.178/channel/60c2f428961593122ebaf8c9?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8", "http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8", "http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8$JS1080P", "http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8", "http://183.207.249.34/PLTV/3/224/3221226975/index.m3u8", "http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8?icpid=88888888&from=0&hms_devid=3804", "http://183.207.249.35/PLTV/3/224/3221226975/index.m3u8", "http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8?icpid=88888888&from=0&hms_devid=38044364", "http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8$JS1080P", "http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8", "http://183.207.249.34/PLTV/3/224/3221226975/index.m3u8", "http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8?icpid=88888888&from=0&hms_devid=3804", "http://183.207.249.35/PLTV/3/224/3221226975/index.m3u8", "http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8?icpid=88888888&from=0&hms_devid=38044364", "http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8", "http://183.207.249.34/PLTV/3/224/3221226975/index.m3u8"]
  1217. }, {
  1218. "name": "凤凰电影台",
  1219. "urls": ["http://218.202.220.2:5000/nn_live.ts?id=NEWSASIA"]
  1220. }, {
  1221. "name": "翡翠台",
  1222. "urls": ["http://116.199.5.51:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=188&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=188&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=188&Fsv_rate_id=1&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=188&Fsv_rate_id=1&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=188&Fsv_rate_id=1&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1&lv=1&c=0&s=4&v=100&wh=16:9&p=1翡翠台", "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id=&Fsv_chan_hls_se_idx=188", "http://host496323.us.ooqr.com/pltv/gz.php?id=tvbfc"]
  1223. }, {
  1224. "name": "明珠台",
  1225. "urls": ["http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=12&FvSeid=1&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=12&Fsv_rate_id=2&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=.m3u8&Fsv_CMSID=&Fsv_otype=1", "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=12&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=12&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "http://116.199.5.52:8114/00000000/index.m3u8?Fsv_chan_hls_se_idx=12&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=&Pcontent_id=.m3u8", "http://116.199.5.51:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=12&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1"]
  1226. }, {
  1227. "name": "TVB星河",
  1228. "urls": ["rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d7a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://50.7.161.82:8278/streams/d/Xinhe/./playlist.m3u8", "http://43.128.9.168/jjtv.php?id=4"]
  1229. }, {
  1230. "name": "星空卫视",
  1231. "urls": ["http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=233&Fsv_rate_id=1&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=233&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8", "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=233&Fsv_rate_id=1&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "http://218.202.220.2:5000/nn_live.ts?id=STARTV", "http://116.199.5.51:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=233&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=233&Fsv_rate_id=1&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id=&Fsv_chan_hls_se_idx=233"]
  1232. }, {
  1233. "name": "香港HKS",
  1234. "urls": ["http://zhibo.hkstv.tv/livestream/mutfysrq.flv","http://zhibo.hkstv.tv/livestream/mutfysrq/playlist.m3u8","http://zhibo.hkstv.tv/livestream/mutfysrq.flv","http://zhibo.hkstv.tv:80/livestream/mutfysrq"]
  1235. }, {
  1236. "name": "澳门卫视",
  1237. "urls": ["http://61.244.22.4/ch3/ch3.live/chunklist_w415594313.m3u8","http://61.244.22.4/ch3/ch3.live/index.m3u8","http://61.244.22.4/ch3/ch3.live/playelist.m3u8"]
  1238. }, {
  1239. "name": "澳视澳门",
  1240. "urls": ["http://61.244.22.4/ch1/ch1.live/playelist.m3u8"]
  1241. }, {
  1242. "name": "澳门资讯",
  1243. "urls": ["http://61.244.22.5/ch5/info_ch5.live/master.m3u8","http://61.244.22.4/ch2/ch2.live/playelist.m3u8"]
  1244. }, {
  1245. "name": "民视",
  1246. "urls": ["rtmp://9wv7.mine.nu/sat/tv051","rtmp://45.92.126.226/channel/60c317bd961593122ebaf90a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://211.23.114.106:8504/http/61.221.81.94:8088/hls/73/815/ch49.m3u8","rtmp://59.124.75.138/sat/tv051","rtmp://59.124.75.157/sat/tv051", "http://50.7.61.147:30080/Entry/ftv", "rtmp://45.92.126.226/channel/60c317bd961593122ebaf90a", "http://50.7.61.148:30080/Entry/ftv", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv002", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv001"]
  1247. }, {
  1248. "name": "台视",
  1249. "urls": ["rtmp://59.124.75.138/sat/tv071","rtmp://9wv7.mine.nu/sat/tv071","rtmp://59.124.75.157/sat/tv071", "rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910c44?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://50.7.61.148:30080/Entry/ttv","http://211.23.114.106:8502/http/61.221.81.94:8088/hls/72/814/ch46.m3u8", "http://60.251.59.180:8543/xoxo.m3u8", "http://50.7.61.148:30080/Entry/ttv", "rtmp://45.92.126.226/channel/60c31796961593122ebaf908", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv066"]
  1250. }, {
  1251. "name": "中视",
  1252. "urls": ["rtmp://59.124.75.138/sat/tv091","rtmp://9wv7.mine.nu/sat/tv091","rtmp://59.124.75.157/sat/tv091","rtmp://45.92.126.114/channel/60c3166c961593122ebaf8fe?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://211.23.114.106:8502/http/61.221.81.94:8088/hls/72/814/ch47.m3u8", "http://50.7.61.148:30080/Entry/ctv", "http://50.7.61.148:30080/Entry/ctv", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv040"]
  1253. }, {
  1254. "name": "华视",
  1255. "urls": ["rtmp://59.124.75.157/sat/tv111","rtmp://9wv7.mine.nu/sat/tv111","rtmp://59.124.75.157/sat/tv111","rtmp://45.88.148.122/channel/60b4e50239e1b02e8b910c4c?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://211.23.114.106:8503/http/61.221.81.94:8088/hls/72/814/ch48.m3u8", "http://50.7.61.147:30080/Entry/cts", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv041", "rtmp://59.124.75.138/sat/tv111"]
  1256. }, {
  1257. "name": "公视",
  1258. "urls": ["http://211.23.114.106:8505/http/61.221.81.94:8088/hls/73/815/ch50.m3u8","https://flv3948069e.live.126.net/live/sytv_9dd30b5c8e846938c26dde70be773545.flv","http://sytv.xtvants.fun/mytv.php?id=gs&token=free&user=free", "http://sytv.xtvants.fun/mytv.php?id=gs&token=qq3036107507&user=fmys", "rtmp://45.92.126.226/channel/60c31796961593122ebaf908?sign=epgg4bkSF4hx%2BZ5WNsuYKsEplghWqWFa%2FRw3tGNF7vys%2FTXdBAnc%2BYbrUpogDq3MZnOL", "rtmp://45.88.148.178/channel/60b4e50239e1b02e8b910c3e?sign=epgg4bkSF4hx%2BZ5WNsuYKsEplghWqWFa%2FRw3tGNF7vys%2FTXdBAnc%2BYbrUpogDq3MZnOL"]
  1259. }, {
  1260. "name": "CHC高清電影",
  1261. "urls": ["http://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226463/index.m3u8", "http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226463/index.m3u8", "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226463/index.m3u8"]
  1262. }, {
  1263. "name": "CHC动作電影",
  1264. "urls": ["http://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/index.m3u8", "http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/index.m3u8"]
  1265. }, {
  1266. "name": "CHC家庭影院",
  1267. "urls": ["http://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226462/index.m3u8", "http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226462/index.m3u8"]
  1268. }, {
  1269. "name": "超级电影",
  1270. "urls": ["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225717/index.m3u8", "http://39.134.66.66/PLTV/88888888/224/3221225644/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225766/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225623/index.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226233/1.m3u8"]
  1271. }, {
  1272. "name": "超级电视剧",
  1273. "urls": ["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225716/index.m3u8", "http://39.134.66.66/PLTV/88888888/224/3221225637/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225765/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225625/index.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226253/1.m3u8"]
  1274. }, {
  1275. "name": "黑莓电影",
  1276. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225718/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225764/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225769/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225743/index.m3u8", "http://ott.js.chinamobile.com/PLTV/3/224/3221225567/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225769/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225764/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225718/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225927/1.m3u8"]
  1277. }, {
  1278. "name": "卫视电影",
  1279. "urls": ["http://211.23.114.106:8553/http/116.50.42.19:8081/hls/62/804/ch07.m3u8","rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910cc6?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://50.7.61.147:30080/Entry/starmovie", "http://sytv.xtvants.fun/mytv.php?id=wsdy&token=free&user=free"]
  1280. }, {
  1281. "name": "美亚电影",
  1282. "urls": ["http://v3948069e.live.126.net/live/hodtv4003.flv","http://iptv5.phoves.com.cn/mytv/mitv.php?id=2"]
  1283. }, {
  1284. "name": "好莱坞",
  1285. "urls": ["http://211.23.114.106:8554/http/116.50.42.19:8081/hls/74/816/ch55.m3u8","rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910c92?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  1286. }, {
  1287. "name": "龙华洋片",
  1288. "urls": ["http://211.23.114.106:8556/http/116.50.42.19:8066/hls/210/10014/cstv14.m3u8","rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d40?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  1289. }, {
  1290. "name": "邵氏电影",
  1291. "urls": ["http://106.53.212.251/dl/tv.php?id=213"]
  1292. }, {
  1293. "name": "龙华电影",
  1294. "urls": ["rtmp://45.88.148.114/channel/60b4e50239e1b02e8b910d4c?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn03"]
  1295. }, {
  1296. "name": "东森电影",
  1297. "urls": ["http://host496323.us.ooqr.com/pltv/gz.php?id=dsdy","rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d8a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  1298. }, {
  1299. "name": "东森洋片",
  1300. "urls": ["http://host496323.us.ooqr.com/pltv/gz.php?id=dsyp","rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d8c?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]}
  1301. ]},
  1302. {
  1303. "group": "明星",
  1304. "channels": [{
  1305. "name": "周星馳",
  1306. "urls": ["http://117.148.179.153/PLTV/88888888/224/3221231562/index.m3u8","https://hw.flv.huya.com/src/1394575534-1394575534-5989656310331736064-2789274524-10057-A-0-1-imgplus.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1394575534-1394575534-5989656310331736064-2789274524-10057-A-0-1.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1199563481163-1199563481163-5444324506032144384-2399127085782-10057-A-0-1.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1199561277724-1199561277724-5434860807588413440-2399122678904-10057-A-0-1.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1449698986-1449698986-6226409733914361856-2847687634-10057-A-0-1.m3u8", "http://121.51.94.31/tx.hls.huya.com/src/1394575534-1394575534-5989656310331736064-2789274524-10057-A-0-1-imgplus.m3u8", "http://112.74.200.9:88/tv000000/m3u8.php?/migu/623338112", "http://dyscdnali1.douyucdn.cn/live/122402rK7MO9bXSq.flv?uuid=", "http://tx2play1.douyucdn.cn/live/122402rK7MO9bXSq.xs?uuid=", "http://api.phoves.com.cn/iptv/huya.php?id=11342412", "http://api.phoves.com.cn/iptv/huya.php?id=19105261"]
  1307. }, {
  1308. "name": "林正英",
  1309. "urls": ["http://121.51.94.31/tx.hls.huya.com/src/1394575543-1394575543-5989656348986441728-2789274542-10057-A-0-1.m3u8","https://hw.flv.huya.com/src/1394575543-1394575543-5989656348986441728-2789274542-10057-A-0-1.m3u8","https://hw.flv.huya.com/src/1394575543-1394575543-5989656348986441728-2789274542-10057-A-0-1.m3u8", "http://api.phoves.com.cn/iptv/huya.php?id=11342421", "http://117.148.179.165/PLTV/88888888/224/3221231742/index.m3u8", "https://3954-quic.liveplay.myqcloud.com/live/3954_363783415.flv"]
  1310. }, {
  1311. "name": "成龍",
  1312. "urls": ["http://117.148.179.163/PLTV/88888888/224/3221231687/index.m3u8","https://hw.flv.huya.com/src/1394565191-1394565191-5989611887484993536-2789253838-10057-A-0-1-imgplus.m3u8", "http://121.51.94.31/tx.hls.huya.com/src/1394565191-1394565191-5989611887484993536-2789253838-10057-A-0-1.m3u8", "http://112.74.200.9:88/tv000000/m3u8.php?/migu/707671890", "http://api.phoves.com.cn/iptv/huya.php?id=11342386"]
  1313. }, {
  1314. "name": "張國榮",
  1315. "urls": ["http://117.148.179.177/PLTV/88888888/224/3221231790/index.m3u8", "http://112.74.200.9:88/tv000000/m3u8.php?/migu/707689526", "http://api.phoves.com.cn/iptv/huya.php?id=11602034"]
  1316. }, {
  1317. "name": "吳京",
  1318. "urls": ["http://117.148.179.183/PLTV/88888888/224/3221231564/index.m3u8","https://hw.flv.huya.com/src/1524434090-1524434090-6547394561457520640-3048991636-10057-A-0-1.m3u8" , "http://121.51.94.31/tx.hls.huya.com/src/1524434090-1524434090-6547394561457520640-3048991636-10057-A-0-1.m3u8", "http://112.74.200.9:88/tv000000/m3u8.php?/migu/625681368", "http://api.phoves.com.cn/iptv/huya.php?id=11602045"]
  1319. }, {
  1320. "name": "劉德華",
  1321. "urls": ["http://117.148.179.154/PLTV/88888888/224/3221231757/index.m3u8","https://hw.flv.huya.com/src/1394575547-1394575547-5989656366166310912-2789274550-10057-A-0-1.m3u8" , "http://112.74.200.9:88/tv000000/m3u8.php?/migu/659315648", "http://api.phoves.com.cn/iptv/huya.php?id=11342424"]
  1322. }, {
  1323. "name": "古天樂",
  1324. "urls": ["http://117.148.179.176/PLTV/88888888/224/3221231645/index.m3u8", "http://api.phoves.com.cn/iptv/huya.php?id=10871113"]
  1325. }, {
  1326. "name": "徐崢",
  1327. "urls": ["http://121.51.94.31/tx.hls.huya.com/src/1524434085-1524434085-6547394539982684160-3048991626-10057-A-0-1.m3u8","https://hw.flv.huya.com/src/1524434085-1524434085-6547394539982684160-3048991626-10057-A-0-1.m3u8", "http://api.phoves.com.cn/iptv/huya.php?id=11602043"]
  1328. }, {
  1329. "name": "沈腾",
  1330. "urls": ["http://121.51.94.31/tx.hls.huya.com/src/1524418085-1524418085-6547325820505948160-3048959626-10057-A-0-1-imgplus.m3u8","https://hw.flv.huya.com/src/1524418085-1524418085-6547325820505948160-3048959626-10057-A-0-1-imgplus.m3u8"]
  1331. },
  1332. {"name":"甄子丹","urls":["https://hw.flv.huya.com/src/1423787820-1423787820-6115122123343134720-2847699096-10057-A-0-1-imgplus.m3u8"]},
  1333. {"name":"洪金宝","urls":["https://hw.flv.huya.com/src/1394575551-1394575551-5989656383346180096-2789274558-10057-A-0-1-imgplus.m3u8","https://hw.flv.huya.com/src/1449698705-1449698705-6226408527028551680-3049003156-10057-A-0-1.m3u8"]},
  1334. {"name":"五福星","urls":["https://hw.flv.huya.com/src/1356780980-1356780980-5827329936934830080-2713685416-10057-A-0-1.m3u8"]},
  1335. {"name":"李小龙","urls":["https://hw.flv.huya.com/src/1449588725-1449588725-6225936166525337600-3048959678-10057-A-0-1.m3u8"]},
  1336. {"name":"李连杰","urls":["https://hw.flv.huya.com/src/1394565196-1394565196-5989611908959830016-2789253848-10057-A-0-1-imgplus.m3u8"]},
  1337. {"name":"女神系列","urls":["https://hw.flv.huya.com/src/1388451591-1388451591-5963354175424167936-2777026638-10057-A-0-1-imgplus.m3u8"]},
  1338. {"name":"张柏芝","urls":["https://hw.flv.huya.com/src/1524434111-1524434111-6547394651651833856-3048991678-10057-A-0-1.m3u8"]},
  1339. {"name":"北有谢","urls":["https://hw.flv.huya.com/src/1445653465-1445653465-6209034353524080640-2847699238-10057-A-0-1.m3u8"]},
  1340. {"name":"刘涛","urls":["https://hw.flv.huya.com/src/1524418105-1524418105-6547325906405294080-3048959666-10057-A-0-1.m3u8"]},
  1341. {"name":"大咖自黑","urls":["https://hw.flv.huya.com/src/1449572975-1449572975-6225868520790425600-2789274544-10057-A-0-1.m3u8"]},
  1342. {"name":"极限挑战","urls":["https://hw.flv.huya.com/src/1423782086-1423782086-6115097496000659456-2847687628-10057-A-0-1-imgplus.m3u8"]},
  1343. {"name":"【黑帮大片】","urls":["https://hw.flv.huya.com/src/1388472589-1388472589-5963444361147449344-2777068634-10057-A-0-1-imgplus.m3u8"]},
  1344. {
  1345. "name": "金庸頻道",
  1346. "urls": ["http://117.148.179.132/PLTV/88888888/224/3221231477/index.m3u8","https://hw.flv.huya.com/src/1524418105-1524418105-6547325906405294080-3048959666-10057-A-0-1.m3u8"]
  1347. }, {
  1348. "name": "喜劇聯盟",
  1349. "urls": ["http://117.148.179.154/PLTV/88888888/224/3221231621/index.m3u8","https://hw.flv.huya.com/src/1445653465-1445653465-6209034353524080640-2847699238-10057-A-0-1.m3u8","https://hw.flv.huya.com/src/1388451591-1388451591-5963354175424167936-2777026638-10057-A-0-1-imgplus.m3u8"]
  1350. }, {
  1351. "name": "高分影院",
  1352. "urls": ["http://117.148.179.182/PLTV/88888888/224/3221231699/index.m3u8"]
  1353. }, {
  1354. "name": "周潤發",
  1355. "urls": ["http://117.148.179.177/PLTV/88888888/224/3221231709/index.m3u8","https://hw.flv.huya.com/src/1394565192-1394565192-5989611891779960832-2789253840-10057-A-0-1-imgplus.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1394565192-1394565192-5989611891779960832-2789253840-10057-A-0-1-imgplus.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1199561240999-1199561240999-5434703074914467840-2399122605454-10057-A-0-1.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1524434089-1524434089-6547394557162553344-3048991634-10057-A-0-1.m3u8", "http://112.74.200.9:88/tv000000/m3u8.php?/migu/639526984", "http://api.phoves.com.cn/iptv/huya.php?id=11342387"]
  1356. }, {
  1357. "name": "郭富城",
  1358. "urls": ["http://117.148.179.152/PLTV/88888888/224/3221231688/index.m3u8"]
  1359. }, {
  1360. "name": "楊冪",
  1361. "urls": ["http://117.148.179.183/PLTV/88888888/224/3221231556/index.m3u8"]
  1362. }, {
  1363. "name": "劉亦菲",
  1364. "urls": ["http://117.148.179.165/PLTV/88888888/224/3221231787/index.m3u8"]
  1365. }, {
  1366. "name": "懷舊老片",
  1367. "urls": ["http://117.148.179.146/PLTV/88888888/224/3221231513/index.m3u8"]
  1368. }, {
  1369. "name": "午夜失眠劇場",
  1370. "urls": ["http://117.148.179.141/PLTV/88888888/224/3221231516/index.m3u8"]
  1371. }, {
  1372. "name": "雲上電影院",
  1373. "urls": ["http://117.148.179.176/PLTV/88888888/224/3221231565/index.m3u8"]
  1374. }, {
  1375. "name": "每日科幻電影",
  1376. "urls": ["http://117.148.179.160/PLTV/88888888/224/3221231568/index.m3u8"]
  1377. }, {
  1378. "name": "殭屍劇場",
  1379. "urls": ["http://117.148.179.165/PLTV/88888888/224/3221231742/index.m3u8", "https://3954-quic.liveplay.myqcloud.com/live/3954_363783415.flv"]
  1380. }, {
  1381. "name": "TVB劇場",
  1382. "urls": ["http://117.148.179.157/PLTV/88888888/224/3221231733/index.m3u8"]
  1383. }, {
  1384. "name": "新片放映廳",
  1385. "urls": ["http://117.148.179.160/PLTV/88888888/224/3221231640/index.m3u8"]
  1386. }, {
  1387. "name": "盜墓",
  1388. "urls": ["http://117.148.179.164/PLTV/88888888/224/3221231652/index.m3u8"]
  1389. }, {
  1390. "name": "試膽大會",
  1391. "urls": ["http://117.148.179.166/PLTV/88888888/224/3221231672/index.m3u8"]
  1392. }, {
  1393. "name": "高能燒腦時刻",
  1394. "urls": ["http://117.148.179.169/PLTV/88888888/224/3221231504/index.m3u8"]
  1395. }, {
  1396. "name": "4K劇場",
  1397. "urls": ["http://117.148.179.161/PLTV/88888888/224/3221231624/index.m3u8"]
  1398. }, {
  1399. "name": "愛情公寓",
  1400. "urls": ["http://117.148.179.160/PLTV/88888888/224/3221231583/index.m3u8"]
  1401. }, {
  1402. "name": "軍旅劇場",
  1403. "urls": ["http://117.148.179.145/PLTV/88888888/224/3221231585/index.m3u8"]
  1404. }, {
  1405. "name": "SNH48劇場公演",
  1406. "urls": ["http://117.148.179.139/PLTV/88888888/224/3221231622/index.m3u8"]
  1407. }, {
  1408. "name": "少林劇場",
  1409. "urls": ["http://117.148.179.160/PLTV/88888888/224/3221231628/index.m3u8"]
  1410. }, {
  1411. "name": "神探狄仁傑",
  1412. "urls": ["http://117.148.179.139/PLTV/88888888/224/3221231634/index.m3u8"]
  1413. }, {
  1414. "name": "黃金劇場",
  1415. "urls": ["http://117.148.179.183/PLTV/88888888/224/3221231637/index.m3u8"]
  1416. }, {
  1417. "name": "追劇少女",
  1418. "urls": ["http://117.148.179.179/PLTV/88888888/224/3221231643/index.m3u8"]
  1419. }, {
  1420. "name": "古龍作品集",
  1421. "urls": ["http://117.148.179.160/PLTV/88888888/224/3221231657/index.m3u8"]
  1422. }, {
  1423. "name": "經典賀歲片",
  1424. "urls": ["http://117.148.179.159/PLTV/88888888/224/3221231679/index.m3u8"]
  1425. }, {
  1426. "name": "每日薦影",
  1427. "urls": ["http://117.148.179.162/PLTV/88888888/224/3221231727/index.m3u8"]
  1428. }, {
  1429. "name": "武俠劇場",
  1430. "urls": ["http://117.148.179.160/PLTV/88888888/224/3221231763/index.m3u8"]
  1431. }, {
  1432. "name": "KK_经典好剧",
  1433. "urls": ["http://hpull.kktv8.com/livekktv/153793844/playlist.m3u8"]
  1434. }, {
  1435. "name": "KK_科幻怪兽",
  1436. "urls": ["http://hpull.kktv8.com/livekktv/143960119/playlist.m3u8"]
  1437. }, {
  1438. "name": "KK_喜剧电影",
  1439. "urls": ["http://hpull.kktv8.com/livekktv/99592190/playlist.m3u8"]
  1440. }, {
  1441. "name": "KK_女神影院",
  1442. "urls": ["http://hpull.kktv8.com/livekktv/99350550/playlist.m3u8"]
  1443. }
  1444. ]},
  1445. {"group": "斗鱼",
  1446. "channels": [
  1447. {"name":"牛叔说电影","urls":["http://epg.112114.xyz/douyu/2758565"]},
  1448. {"name":"小片说电影","urls":["http://epg.112114.xyz/douyu/4258555"]},
  1449. {"name":"侃片大师兄","urls":["http://epg.112114.xyz/douyu/9338839"]},
  1450. {"name":"特辑影院","urls":["http://epg.112114.xyz/douyu/3637778"]},
  1451. {"name":"女神金","urls":["http://epg.112114.xyz/douyu/747764"]},
  1452. {"name":"周末恐怖","urls":["http://epg.112114.xyz/douyu/3637726"]},
  1453. {"name":"周末经典","urls":["http://epg.112114.xyz/douyu/3637765"]},
  1454. {"name":"林正英僵尸","urls":["http://epg.112114.xyz/douyu/218859"]},
  1455. {"name":"小鸽陪看","urls":["http://epg.112114.xyz/douyu/3928"]},
  1456. {"name":"欧美恐怖","urls":["http://epg.112114.xyz/douyu/96577"]},
  1457. {"name":"动漫","urls":["http://epg.112114.xyz/douyu/206858"]},
  1458. {"name":"恐怖电影","urls":["http://epg.112114.xyz/douyu/310926"]},
  1459. {"name":"香港赌片","urls":["http://epg.112114.xyz/douyu/315457"]},
  1460. {"name":"米娅陪看","urls":["http://epg.112114.xyz/douyu/6537888"]},
  1461. {"name":"黎黎来了","urls":["http://epg.112114.xyz/douyu/7116591"]},
  1462. {"name":"漫威科幻","urls":["http://epg.112114.xyz/douyu/6140589"]},
  1463. {"name":"欧美科幻","urls":["http://epg.112114.xyz/douyu/9651304"]},
  1464. {"name":"经典喜剧","urls":["http://epg.112114.xyz/douyu/9650887"]},
  1465. {"name":"国产大片","urls":["http://epg.112114.xyz/douyu/8986148"]},
  1466. {"name":"刘德华","urls":["http://epg.112114.xyz/douyu/2516864"]},
  1467. {"name":"神乐华语","urls":["http://epg.112114.xyz/douyu/85894"]},
  1468. {"name":"神乐经典","urls":["http://epg.112114.xyz/douyu/122402"]},
  1469. {"name":"神乐欧美","urls":["http://epg.112114.xyz/douyu/20415"]},
  1470. {"name":"神乐粤语","urls":["http://epg.112114.xyz/douyu/6566671"]},
  1471. {"name":"贝爷MAX","urls":["http://epg.112114.xyz/douyu/4332"]},
  1472. {"name":"贝爷影厅","urls":["http://epg.112114.xyz/douyu/252802","http://epg.112114.xyz/douyu/36337","http://epg.112114.xyz/douyu/925724"]},
  1473. {"name":"甜牛奶","urls":["http://epg.112114.xyz/douyu/7494871"]},
  1474. {"name":"兔兔陪看","urls":["http://epg.112114.xyz/douyu/1504768"]},
  1475. {"name":"贝贝看片","urls":["http://epg.112114.xyz/douyu/431460"]},
  1476. {"name":"小栗子","urls":["http://epg.112114.xyz/douyu/7254536"]},
  1477. {"name":"斗小饼Q","urls":["http://epg.112114.xyz/douyu/1735337"]},
  1478. {"name":"瑶瑶","urls":["http://epg.112114.xyz/douyu/2935323"]}
  1479. ]}],
  1480. "parses": [
  1481. {
  1482. "name": "Json并发",
  1483. "type": 2,
  1484. "url": "Parallel"
  1485. },
  1486. {
  1487. "name": "Json轮询",
  1488. "type": 2,
  1489. "url": "Sequence"
  1490. },
  1491. {
  1492. "name": "久久",
  1493. "type": 1,
  1494. "url": "https://json.hfyrw.com/mao.go?url=",
  1495. "ext": {
  1496. "flag": [
  1497. "ltnb",
  1498. "qiyi",
  1499. "爱奇艺",
  1500. "奇艺",
  1501. "youku",
  1502. "优酷",
  1503. "mgtv",
  1504. "芒果",
  1505. "letv",
  1506. "乐视"
  1507. ]
  1508. }
  1509. },
  1510. {
  1511. "name":"极速",
  1512. "type":1,
  1513. "url":"http://47.94.137.151:8089/?url="
  1514. },
  1515. {
  1516. "name": "戴拿解析",
  1517. "type": 1,
  1518. "url": "https://www.daina.hk/api/?key=RXpzyrbMFYySN0sNps&url=",
  1519. "ext": {
  1520. "flag": [
  1521. "qq",
  1522. "腾讯",
  1523. "qiyi",
  1524. "爱奇艺",
  1525. "奇艺",
  1526. "youku",
  1527. "优酷",
  1528. "sohu",
  1529. "搜狐",
  1530. "letv",
  1531. "乐视",
  1532. "mgtv",
  1533. "芒果",
  1534. "CL4K",
  1535. "renrenmi",
  1536. "ltnb",
  1537. "xigua"
  1538. ]
  1539. }
  1540. },
  1541. {"name": "解析05","type": 1,"url": "http://jx.ledu8.cn/api/?key=P8QSgO61p1MpHV2ALn&url="},
  1542. {"name":"02","type":1,"url":"http://106.52.51.138:52013/lt.php?url=","ext":{"flag":["ltnb"]}},
  1543. {"name":"04","type":1,"url":"https://jx.300ys.xyz/json/m3u8.php/?url=","ext":{"flag":["ftqp4","xuanfeng"]}},
  1544. {"name":"05","type":1,"url":"http://jx.300ys.xyz/json/m3u8.php/?url=","ext":{"flag":["zy1080","xkys"]}},
  1545. {"name":"07","type":1,"url":"https://ltnb.jeeves.vip/home/api?type=ys&uid=2492729&key=bkmopwEFMNQSUWXZ67&url=","ext":{"flag":["ltnb","ziqie"]}},
  1546. {"name":"08","type":1,"url":"http://jx.laodi.xyz:6699/api.php/user/jx?uid=4&ldkey=BLsUKYVZiWdmQc7bbpT3&url=","ext":{"flag":["laodim3u8"]}},
  1547. {"name":"09","type":1,"url":"http://ts.yjhan.com:8090/api/?key=Y4GefMCIQJz23mc06R&url=","ext":{"flag":["CL4K"]}},
  1548. {"name":"11","type":1,"url":"http://ts.yjhan.com:8090/api/?key=DSQFgXdmj9xkDyiXdr&url=","ext":{"flag":["CL4K"]}},
  1549. {"name":"12","type":1,"url":"http://ts.yjhan.com:8090/api/?key=P6XfOl9hD3LpqOFdRJ&url=","ext":{"flag":["CL4K"]}},
  1550. {"name":"13","type":1,"url":"https://yun.nbjx.vip:4399/json/?uid=6&tokey=befhmoqFHMOQRTUXZ7&url=","ext":{"flag":["qiyi","爱奇艺","奇艺"]}},
  1551. {"name":"14","type":1,"url":"https://ltnb.jeeves.vip/home/api?type=ys&uid=2509623&key=glnpyADKLMNOTU0249&url=","ext":{"flag":["ltnb","ziqie"]}},
  1552. {"name":"15","type":1,"url":"https://jx.300ys.xyz/json/jh.php/?url=","ext":{"flag":["youku","优酷","qiyi","爱奇艺","奇艺","renrenmi","qq","腾讯","letv","乐视"]}},
  1553. {"name":"16","type":1,"url":"http://ts.yjhan.com:8090/api/?key=njU0bfiF05eODFfktq&url=","ext":{"flag":["CL4K"]}},
  1554. {"name":"17","type":1,"url":"https://yun.nbjx.vip:4399/json/?uid=5&tokey=ikmnorsvxyzCFKQU59&url=","ext":{"flag":["qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","letv","乐视"]}},
  1555. {"name":"18","type":1,"url":"https://ltnb.jeeves.vip/home/api?type=ys&uid=2753644&key=bdgipszEOPQUXZ3569&url=","ext":{"flag":["ltnb","longteng"]}},
  1556. {"name":"20","type":1,"url":"http://ts.yjhan.com:8090/api/?key=yNSLsBLOaUkKp2kZ6i&url=","ext":{"flag":["CL4K"]}},
  1557. {"name":"22","type":1,"url":"http://ys.ling00.cn/json/?url=","ext":{"flag":["CL4K"]}},
  1558. {"name":"23","type":1,"url":"https://languangyingshiziyuan.1080zy.top/longteng.php/?url=","ext":{"flag":["ltnb"]}},
  1559. {"name":"28","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=1589472&key=aehjpzAHILOPQRU456&url=","ext":{"flag":["ltnb"]}},
  1560. {"name":"29","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=461939&key=adfgilmotCEPRSXY06&url=","ext":{"flag":["ltnb"]}},
  1561. {"name":"30","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=1136443&key=bhijopryzBJKLMSUX8&url=","ext":{"flag":["ltnb"]}},
  1562. {"name":"32","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=1427917&key=bdfilpqsxzDEGHRW04&url=","ext":{"flag":["ltnb"]}},
  1563. {"name":"33","type":1,"url":"https://jf.1080p.icu/home/api?type=dsp&uid=147565&key=adilmopuBEFJNUV067&url=","ext":{"flag":["wuduzy"]}},
  1564. {"name":"35","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=803828&key=cdefimpzDQTUW23679&url=","ext":{"flag":["ltnb"]}},
  1565. {"name":"36","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=1284948&key=bdehjlqtDEHJPZ0156&url=","ext":{"flag":["ltnb","longteng"]}},
  1566. {"name":"48","type":1,"url":"http://a.dxzj88.com/ddzy/dd.php?url=","ext":{"flag":["duoduozy"]}},
  1567. {"name":"49","type":1,"url":"http://23.224.174.74:5577/home/api?type=ys&uid=19722&key=aghknrsvxCDEGNRSUZ&url=","ext":{"flag":["qiyi","爱奇艺","奇艺","pptv","PPTV","qq","腾讯"]}},
  1568. {"name":"51","type":1,"url":"https://vip.xfyun.one/home/api?type=ys&uid=2581923&key=aefiklotwzCEFHJO48&url=","ext":{"flag":["xfyun"]}},
  1569. {"name":"52","type":1,"url":"https://xrjson.qd234.cn/home/api?type=ys&uid=366750&key=afgrstxFGHJKLMQVX1&url=","ext":{"flag":["ltnb","xueren","renrenmi"]}},
  1570. {"name":"55","type":1,"url":"http://json.1920lgzy.top/api/?key=K6ROZoQ9Y5FxzkdgTT&url=","ext":{"flag":["1920l","qiyi","爱奇艺","奇艺"]}},
  1571. {"name":"56","type":1,"url":"https://vip.aiaine.com/api/?key=pJiKdUKoatLiVha0el&url=","ext":{"flag":["miaoparty","miaoparty3"]}},
  1572. {"name":"57","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=123503&key=ghinorsuvBCMOQTY68&url=","ext":{"flag":["ziqie","qiyi","爱奇艺","奇艺","qq","腾讯","mgtv","芒果"]}},
  1573. {"name":"58","type":1,"url":"http://jx.yinliub.cn/home/api?type=ys&uid=512130&key=dinstuwBGJRTUY0369&url=","ext":{"flag":["ltnb","qq","腾讯","qiyi","爱奇艺","奇艺","letv","乐视","rx","youku","优酷","mgtv","芒果"]}},
  1574. {"name":"59","type":1,"url":"http://jf.tcspvip.com:246/api/?key=Yz4WsVTuG4PaM07i0f&url=","ext":{"flag":["1920l","qiyi","爱奇艺","奇艺"]}},
  1575. {"name":"60","type":1,"url":"https://www.aiaine.com/api/?key=e4keFpymfY5keNsavC&url=","ext":{"flag":["qq","腾讯","qiyi","爱奇艺","奇艺","pptv","PPTV","mgtv","芒果","youku","优酷"]}},
  1576. {
  1577. "name": "4433解析",
  1578. "url": "https://vip.parwix.com:4433/player/?url="
  1579. },
  1580. {
  1581. "name": "ok解析",
  1582. "url": "https://okjx.cc/?url="
  1583. },
  1584. {
  1585. "name": "大鱼解析",
  1586. "url": "https://jx.yizz.top/?url="
  1587. },
  1588. {
  1589. "name": "百淘解析",
  1590. "url": "http://ys.58g8.com/1/?url="
  1591. },
  1592. {
  1593. "name": "8090",
  1594. "url": "http://ts.yjhan.com:8090/api/?type=app&key=43yVlZDaJg7dYH3DZi&url="
  1595. },
  1596. {
  1597. "name": "555解析",
  1598. "url": "https://jhpc.manduhu.com/player/?url="
  1599. },
  1600. {
  1601. "name": "蓝光解析",
  1602. "url": "https://www.daga.cc/vip1/?url="
  1603. },
  1604. {
  1605. "name": "人人迷解析",
  1606. "url": "https://jx.renrenmi.cc/?url="
  1607. },
  1608. {
  1609. "name": "2090解析",
  1610. "url": "https://m2090.com/?url="
  1611. },
  1612. {
  1613. "name": "优亿解析",
  1614. "url": "https://jx.youyitv.com/?url="
  1615. },
  1616. {
  1617. "name": "猪蹄解析1",
  1618. "url": "https://api.iztyy.com/jiexi/?url="
  1619. },
  1620. {
  1621. "name": "猪蹄解析2",
  1622. "url": "https://jx.iztyy.com/svip/?url="
  1623. },
  1624. {
  1625. "name": "猪蹄解析3",
  1626. "url": "https://jx.iztyy.com/Bei/?url="
  1627. },
  1628. {
  1629. "name": "parwix解析",
  1630. "url": "https://jx.parwix.com:4433/player/?url="
  1631. },
  1632. {
  1633. "name": "17k云",
  1634. "url": "http://17kyun.com/api.php?url="
  1635. },
  1636. {
  1637. "name": "全能VIP",
  1638. "url": "https://jx.cxk8.com?v="
  1639. },
  1640. {
  1641. "name": "WdsEcsxs",
  1642. "url": "https://wds.ecsxs.com/220311.html?url="
  1643. },
  1644. {
  1645. "name": "纯净解析",
  1646. "url": "https://z1.m1907.cn/?jx="
  1647. },
  1648. {
  1649. "name": "老板解析",
  1650. "type": 1,
  1651. "url": "http://ck.laobandq.com/3515240842.php?pltfrom=1100&url=",
  1652. "ext": {
  1653. "flag": [
  1654. "qq",
  1655. "腾讯",
  1656. "qiyi",
  1657. "爱奇艺",
  1658. "奇艺",
  1659. "youku",
  1660. "优酷",
  1661. "sohu",
  1662. "搜狐",
  1663. "letv",
  1664. "乐视",
  1665. "mgtv",
  1666. "芒果",
  1667. "CL4K",
  1668. "renrenmi",
  1669. "ltnb",
  1670. "xigua"
  1671. ]
  1672. }
  1673. },
  1674. {
  1675. "name": "VIP影院",
  1676. "type": 1,
  1677. "url": "http://42.157.128.85:880/analysis/json/?uid=2233&my=cdeghlnqswxETUX356&url=",
  1678. "ext": {
  1679. "flag": [
  1680. "qq",
  1681. "腾讯",
  1682. "letv",
  1683. "乐视",
  1684. "mgtv",
  1685. "芒果",
  1686. "youku",
  1687. "优酷",
  1688. "qiyi",
  1689. "iqiyi",
  1690. "爱奇艺",
  1691. "奇艺"
  1692. ]
  1693. }
  1694. },
  1695. {
  1696. "name": "酷秒视界",
  1697. "type": 1,
  1698. "url": "https://json.nxflv.com/?uid=14781518&key=bcdqsuyABEGIJKLSUZ&url=",
  1699. "ext": {
  1700. "flag": [
  1701. "qq",
  1702. "腾讯",
  1703. "letv",
  1704. "乐视",
  1705. "mgtv",
  1706. "芒果",
  1707. "youku",
  1708. "优酷",
  1709. "qiyi",
  1710. "iqiyi",
  1711. "爱奇艺",
  1712. "奇艺"
  1713. ]
  1714. }
  1715. },
  1716. {"name":"4K影院","type":1,"url":"http://47.100.138.210:91/home/api?type=ys&uid=7593435&key=ehortuyAHMNQTWX457&url=","ext":{"flag":["qiyi","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","mgtv","芒果"]}},
  1717. {"name" : "淘影B","type":1,"url" : "http://jx.1080jx.top/jxvip/?url="},
  1718. {
  1719. "name": "02",
  1720. "type": 1,
  1721. "url": "https://sbsb.i8k.cc/?url="
  1722. },
  1723. {
  1724. "name": "03",
  1725. "type": 1,
  1726. "url": "https://jx.xuanqi.pro/?url="
  1727. },
  1728. {
  1729. "name": "盘古解析",
  1730. "type": 1,
  1731. "url": "https://json.pangujiexi.com:12345/json.php?url=",
  1732. "ext": {
  1733. "flag": [
  1734. "qq",
  1735. "腾讯",
  1736. "qiyi",
  1737. "爱奇艺",
  1738. "奇艺",
  1739. "youku",
  1740. "优酷",
  1741. "mgtv",
  1742. "芒果",
  1743. "sohu"
  1744. ]
  1745. }
  1746. },
  1747. {"name":"蓝光视频","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1931000&key=gktuvyzABEORSYZ135&url="},
  1748. {
  1749. "name": "06",
  1750. "type": 1,
  1751. "url": "http://app.jhys.top/1080kan/fuck.php?url="
  1752. },
  1753. {
  1754. "name": "07",
  1755. "type": 1,
  1756. "url": "https://app.json.suoyo.cc/jh.php?url="
  1757. },
  1758. {
  1759. "name": "09",
  1760. "type": 1,
  1761. "url": "http://42.157.128.15:8899/fuck.php?url="
  1762. },
  1763. {
  1764. "name": "11",
  1765. "type": 1,
  1766. "url": "https://j.bcwzg.com/xg/?url="
  1767. },
  1768. {
  1769. "name": "飓风影视",
  1770. "type": 1,
  1771. "url": "https://vvip.funsline.cn/api/?key=MPbC1MDs0vP0cKKOoV&url=",
  1772. "ext": {
  1773. "flag": [
  1774. "youku",
  1775. "优酷",
  1776. "qiyi",
  1777. "爱奇艺",
  1778. "奇艺",
  1779. "qq",
  1780. "腾讯"
  1781. ]
  1782. }
  1783. },
  1784. {
  1785. "name": "江湖1080直解",
  1786. "type": 1,
  1787. "url": "http://api.vip123kan.vip/?url=",
  1788. "ext": {
  1789. "flag": [
  1790. "qq",
  1791. "腾讯",
  1792. "qiyi",
  1793. "爱奇艺",
  1794. "奇艺",
  1795. "youku",
  1796. "优酷",
  1797. "sohu"
  1798. ]
  1799. }
  1800. },
  1801. {
  1802. "name": "RongXingVR",
  1803. "type": 1,
  1804. "url": "https://vip.rongxingvr.top/api/?key=JJEZkZIhzkA4cUtBfR&url=",
  1805. "ext": {
  1806. "flag": [
  1807. "qq",
  1808. "腾讯",
  1809. "qiyi",
  1810. "爱奇艺",
  1811. "奇艺",
  1812. "youku",
  1813. "优酷",
  1814. "sohu",
  1815. "pptv",
  1816. "PPTV",
  1817. "bilibili",
  1818. "哔哩哔哩",
  1819. "哔哩",
  1820. "renrenmi",
  1821. "rx",
  1822. "rongxing"
  1823. ]
  1824. }
  1825. },
  1826. {
  1827. "name": "江湖云",
  1828. "type": 1,
  1829. "url": "https://jx.ncxmid.cn/sb/?url=",
  1830. "ext": {
  1831. "flag": [
  1832. "qq",
  1833. "腾讯",
  1834. "qiyi",
  1835. "爱奇艺",
  1836. "奇艺",
  1837. "youku",
  1838. "优酷",
  1839. "mgtv",
  1840. "芒果",
  1841. "pptv",
  1842. "PPTV"
  1843. ]
  1844. }
  1845. },
  1846. {
  1847. "name": "喵派1",
  1848. "type": 0,
  1849. "url": "https://vip.aiaine.com/api/?type=app&key=ESnBC3t7IxnnHAziyU&url=",
  1850. "ext": {
  1851. "flag": [
  1852. "ltnb",
  1853. "renrenmi",
  1854. "miaoparty",
  1855. "miaoparty2",
  1856. "miaoparty3",
  1857. "rx",
  1858. "rongxing",
  1859. "xueren",
  1860. "xfy"
  1861. ]
  1862. }
  1863. },
  1864. {
  1865. "name": "喵派2",
  1866. "type": 0,
  1867. "url": "https://vip.neenl.com/?url=",
  1868. "ext": {
  1869. "flag": [
  1870. "ltnb",
  1871. "renrenmi",
  1872. "miaoparty",
  1873. "miaoparty2",
  1874. "miaoparty3",
  1875. "rx",
  1876. "rongxing",
  1877. "xueren",
  1878. "xfy"
  1879. ]
  1880. }
  1881. },
  1882. {
  1883. "name": "喵派3",
  1884. "type": 0,
  1885. "url": "https://miaoparty.com/dmplay/?url=",
  1886. "ext": {
  1887. "flag": [
  1888. "ltnb",
  1889. "renrenmi",
  1890. "miaoparty",
  1891. "miaoparty2",
  1892. "miaoparty3",
  1893. "rx",
  1894. "rongxing",
  1895. "xueren",
  1896. "xfy"
  1897. ]
  1898. }
  1899. },
  1900. {
  1901. "name": "喵派4",
  1902. "type": 0,
  1903. "url": "https://www.iqiyi.one/dmplay/?url=",
  1904. "ext": {
  1905. "flag": [
  1906. "ltnb",
  1907. "renrenmi",
  1908. "miaoparty",
  1909. "miaoparty2",
  1910. "miaoparty3",
  1911. "rx",
  1912. "rongxing",
  1913. "xueren",
  1914. "xfy"
  1915. ]
  1916. }
  1917. },
  1918. {
  1919. "name": "喵派5",
  1920. "type": 0,
  1921. "url": "https://www.ailemo.me/dmplay/?url=",
  1922. "ext": {
  1923. "flag": [
  1924. "ltnb",
  1925. "renrenmi",
  1926. "miaoparty",
  1927. "miaoparty2",
  1928. "miaoparty3",
  1929. "rx",
  1930. "rongxing",
  1931. "xueren",
  1932. "xfy"
  1933. ]
  1934. }
  1935. },
  1936. {
  1937. "name": "搬运工资源站",
  1938. "type": 1,
  1939. "url": "https://jx.kupu.cc/json/jxbanyung.php/?url=",
  1940. "ext": {
  1941. "flag": [
  1942. "ltnb",
  1943. "qq",
  1944. "腾讯",
  1945. "qiyi",
  1946. "爱奇艺",
  1947. "奇艺",
  1948. "youku",
  1949. "优酷",
  1950. "mgtv",
  1951. "芒果",
  1952. "letv",
  1953. "乐视",
  1954. "sohu",
  1955. "pptv",
  1956. "PPTV",
  1957. "bilibili",
  1958. "哔哩哔哩",
  1959. "哔哩"
  1960. ]
  1961. }
  1962. },
  1963. {
  1964. "name": "追剧猫",
  1965. "type": 0,
  1966. "url": "https://jx.zjmiao.com/?url=",
  1967. "ext": {
  1968. "flag": [
  1969. "qq",
  1970. "腾讯",
  1971. "qiyi",
  1972. "爱奇艺",
  1973. "奇艺",
  1974. "youku",
  1975. "优酷",
  1976. "mgtv",
  1977. "芒果",
  1978. "sohu",
  1979. "ltnb",
  1980. "renrenmi",
  1981. "xfy",
  1982. "xfyun",
  1983. "rongxing",
  1984. "rx"
  1985. ]
  1986. }
  1987. },
  1988. {
  1989. "name": "快云影音",
  1990. "type": 1,
  1991. "url": "https://jhjx.kuanjv.com/newky/?url=",
  1992. "ext": {
  1993. "flag": [
  1994. "qq",
  1995. "腾讯",
  1996. "qiyi",
  1997. "爱奇艺",
  1998. "奇艺",
  1999. "youku",
  2000. "优酷",
  2001. "bilibili",
  2002. "哔哩哔哩",
  2003. "哔哩",
  2004. "letv",
  2005. "乐视",
  2006. "sohu"
  2007. ]
  2008. }
  2009. },
  2010. {
  2011. "name": "大熊影视",
  2012. "type": 1,
  2013. "url": "http://42.157.128.85:880/analysis/json/?uid=1735&my=bcdgkmpvxADJLNUYZ8&url=",
  2014. "ext": {
  2015. "flag": [
  2016. "youku",
  2017. "优酷",
  2018. "qq",
  2019. "腾讯",
  2020. "qiyi",
  2021. "爱奇艺",
  2022. "奇艺"
  2023. ]
  2024. }
  2025. },
  2026. {
  2027. "name":"专用1",
  2028. "type":1,
  2029. "url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1285201&key=bcikqtwxyADEGKUX36&url="
  2030. },
  2031. {
  2032. "name":"专用2",
  2033. "type":1,
  2034. "url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1494542&key=ijmqvwxABEHILMOT48&url="
  2035. },
  2036. {
  2037. "name":"专用4",
  2038. "type":1,
  2039. "url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1095368&key=cdgjpsuDFLNRTUVY03&url="
  2040. },
  2041. {
  2042. "name":"专用6",
  2043. "type":1,
  2044. "url":"https://api.qq755758836.xyz/295m3u8.php?url="
  2045. },
  2046. {
  2047. "name": "猫群专用4",
  2048. "type": 0,
  2049. "url": "https://play.tkys.tv/jh/longteng.php/?url="
  2050. }, {
  2051. "name": "猫群专用6",
  2052. "type": 1,
  2053. "url": "https://api.parwix.com:4433/analysis/json/?uid=556&my=acfhjoprtuvxKLMQ12&url="
  2054. }, {
  2055. "name": "猫群专用7",
  2056. "type": 1,
  2057. "url": "https://ysjx.jikezhuji.com/api/?key=80gdewY7tQriIwA6hw&url="
  2058. },
  2059. {"name":"Wuduzy","type":1,"url":"https://aa.xkys.tv/json.php?url=","ext":{"flag":["wuduzy"]}},
  2060. {"name":"bilibili","type":1,"url":"https://vip.23at.cn/home/api?type=ys&uid=4883852&key=adfimsvxzDKNOVX389&url=","ext":{"flag":["bilibili"]}},
  2061. {"name":"Rx","type":1,"url":"https://vvip.funsline.cn/api/?key=JNiddoRwmLBYehxnFq&url=","ext":{"flag":["rx","youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"]}},
  2062. {"name":"leduo","type":1,"url":"https://api.ldjx.cc/wp-api/getvodurl.php?token=1001&vid=","ext":{"flag":["leduo"]}},
  2063. {"name":"duoduozy2","type":1,"url":"https://a.dxzj88.com/jxjx/dd.php?url=","ext":{"flag":["duoduozy"]}},
  2064. {"name":"renrenmi","type":1,"url":"https://kuba.renrenmi.cc:2266/api/?key=02wsrxJzuGkI4C8pQ5&url=","ext":{"flag":["renrenmi"]}},
  2065. {"name":"renrenmi3","type":1,"url":"https://sz.dxzj88.com/jxrjrm/jiaomi.php?url=","ext":{"flag":["renrenmi"]}},
  2066. {"name":"CL4K","type":1,"url":"http://jx.yjhan.com:8090/home/api?type=ys&uid=268886&key=afghilnyEGKPRTVY56&url=","ext":{"flag":["CL4K"]}},
  2067. {"name":"LTRX","type":1,"url":"https://svip.spchat.top/api/?type=ys&key=bKemW41JnxmQb4l67h&url=","ext":{"flag":["ltnb","rx"]}},
  2068. {"name":"Pro2","type":1,"url":"https://vip.rongxingvr.top/api/?type=ys&key=JJEZkZIhzkA4cUtBfR&url=","ext":{"flag":["ltnb","rx","qiyi","爱奇艺","qq","奇艺","sohu","letv","youku","优酷","mgtv","芒果"]}},
  2069. {"name":"1","type":1,"url":"https://svip.rongxingvr.top/api/?key=Wyl9CjTyelP0UOaECD&url=","ext":{"flag":["youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"]}},
  2070. {"name":"3","type":1,"url":"https://www.aiaine.com/api/?key=kVqmG5dAQ5dZTcECw8&url=","ext":{"flag":["youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"]}},
  2071. {"name":"4","type":1,"url":"https://svip.rongxingvr.top/api/?key=niBgMGXVdCQhsmeEBK&url=","ext":{"flag":["youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"]}},
  2072. {"name":"5","type":1,"url":"https://8700.top/api/?type=app&key=hdJPNHumGa905uqoee&url=","ext":{"flag":["ltnb","youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"]}},
  2073. {"name":"6","type":1,"url":"https://svip.iremind.me/api/?key=LWYifrJ9QrCCrtn06g&url=","ext":{"flag":["ltnb","youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"]}},
  2074. {"name":"8","type":1,"url":"https://app.iminna.com/jx/?url=","ext":{"flag":["youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"]}},
  2075. {"name":"xfyun云","type":1,"url":"https://vip.xfyun.one/home/api?type=ys&uid=2581923&key=ceijpquvBMOSUVXZ23&url=","ext":{"flag":["xfyun"]}},
  2076. {"name":"影视达人01","type":1,"url":"http://svip.cygc.xyz/api/?key=sAJihNO41tPHN3szy1&url=","ext":{"flag":["ltnb","renrenmi","xigua","qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","mgtv","芒果","letv","乐视","pptv","PPTV","sohu","bilibili","哔哩哔哩","哔哩"]}},
  2077. {"name":"J02","type":1,"url":"https://svip.rongxingvr.top/api/?key=B26J6jO5MOnjUv3GqW&url=","ext":{"flag":["rx","renrenmi","qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","mgtv","芒果","bilibili","哔哩哔哩","哔哩"]}},
  2078. {"name":"aiaine02","type":1,"url":"https://vip.aiaine.com/api/?key=8FN8gNAySnvJiMllxZ&url=","ext":{"flag":["ltnb","renrenmi","weiyun"]}},
  2079. {"name":"喵派对资源3","type":1,"url":"https://vip.aiaine.com/api/?key=fOWaGgFU45zlIjvbHI&url=","ext":{"flag":["ltnb","renrenmi"]}},
  2080. {"name":"喵派对资源2","type":1,"url":"https://svip.iremind.me/api/?key=A5Db8HF8c8FSIOR6R1&url=","ext":{"flag":["renrenmi","qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","mgtv","芒果","bilibili","哔哩哔哩","哔哩","sohu"]}},
  2081. {"name":"leduotv","type":1,"url":"https://api.leduotv.com/wp-api/getvodurl.php?vid=","ext":{"flag":["leduo"]}},
  2082. {"name":"康耀影视6","type":1,"url":"http://175.178.109.153:615//api/?key=6OCzkXnrNIxhVxrM8G&url=","ext":{"flag":["miaoparty","qiyi","爱奇艺","奇艺","qq","腾讯","youku","优酷","mgtv","芒果","letv","乐视","pptv","PPTV","miaoparty3"]}},
  2083. {"name":"爱酷影视6","type":1,"url":"https://jb.vjiangbei.com/home/api?type=ys&uid=646808&key=gklpqrtwyDIJKMP467&url=","ext":{"flag":["qq","腾讯","letv","乐视","youku","优酷"]}},
  2084. {"name":"琅琊影视8","type":1,"url":"https://jf.96ym.cn/api/?key=13FXcA46Nzg4QeFHbq&url=","ext":{"flag":["ziqie","ltnb","youku","优酷","qiyi","爱奇艺","奇艺","qq","腾讯","letv","乐视"]}},
  2085. {"name":"天诚影视2","type":1,"url":"https://svip.renrenmi.cc:2222/api/?key=hWip8WQvRg7oniSF0M&url=","ext":{"flag":["qiyi","爱奇艺","奇艺"]}},
  2086. {"name":"南府追剧1","type":1,"url":"https://vvip.muxvip.com:8866/api/?key=xJvC19KWkxoyQO71hk&url=","ext":{"flag":["muxm3u8"]}},
  2087. {"name":"南府影视","type":1,"url":"https://vvip.muxvip.com:8866/api/?key=xVIWNjOvnxgmvrPgXO&url=","ext":{"flag":["muxm3u8"]}},
  2088. {"name":"天诚影视4","type":1,"url":"https://svip.cygc.xyz/api/?key=LHIDJlDFp1lPagfFwQ&url=","ext":{"flag":["qiyi","爱奇艺","奇艺"]}},
  2089. {"name":"天诚影视3","type":1,"url":"https://vvip.muxvip.com:8866/api/?key=7wk1FnMRDwAVTPDNAM&url=","ext":{"flag":["qiyi","爱奇艺","奇艺"]}},
  2090. {"name":"段友影视1","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=998036&key=afhlnuvzDJLMOX3689&url=","ext":{"flag":["qq","腾讯"]}},
  2091. {"name":"段友影视","type":1,"url":"https://api.qilin.best/home/api?type=ys&uid=2343358&key=cekpsuvxJKNOV34789&url=","ext":{"flag":["mgtv","芒果","qq","腾讯"]}},
  2092. {"name":"琅琊影视7","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=123503&key=ghinorsuvBCMOQTY68&url=","ext":{"flag":["ziqie","qiyi","爱奇艺","奇艺","qq","腾讯","mgtv","芒果"]}},
  2093. {"name":"小白动漫","type":1,"url":"http://121.62.60.222:1314/lt.php?url=","ext":{"flag":["ltnb","longteng"]}},
  2094. {"name":"爱看美剧1","type":1,"url":"https://play.akmeiju.cc:553/akmeiju.php?url=","ext":{"flag":["aikan"]}},
  2095. {"name":"麻瓜视频","type":1,"url":"https://kuba.renrenmi.cc:2266/api/?key=a2bSwx5iAGx1g2qn4h&url=","ext":{"flag":["renrenmi"]}},
  2096. {"name":"粉象视界","type":1,"url":"http://47.100.138.210:91/home/api?type=ys&uid=4476440&key=eghkvwxyFHORVX3478&url=","ext":{"flag":["mgtv","芒果","renrenmi","youku","优酷","qiyi","爱奇艺","奇艺"]}},
  2097. {"name":"益达影院6","type":1,"url":"https://jb.vjiangbei.com/home/api?type=ys&uid=281459&key=cfnoprCDJKLNPQTY34&url=","ext":{"flag":["ltnb","ziqie","qq","腾讯","youku","优酷","qiyi","爱奇艺","奇艺","mgtv","芒果","letv","乐视"]}},
  2098. {"name":"思乐影视1","type":1,"url":"https://jb.vjiangbei.com/home/api?type=ys&uid=2534396&key=ejovwzABDKTUXY1357&url=","ext":{"flag":["mgtv","芒果","qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷"]}},
  2099. {"name":"虎猫视频","type":1,"url":"https://humaosp.com/json.php?url=","ext":{"flag":["qq","腾讯"]}},
  2100. {"name":"DC影视","type":1,"url":"https://jb.vjiangbei.com/home/api?type=ys&uid=2219260&key=bcdjqBEFGLMPW01457&url=","ext":{"flag":["ziqie","ltnb","qq","腾讯"]}},
  2101. {"name":"粉象视界1","type":1,"url":"https://www.xinkanke.com/jiexi/go.php?url=","ext":{"flag":["ltnb"]}},
  2102. {"name":"大熊影视1","type":1,"url":"https://a.dxzj88.com/jianghujx/?url=","ext":{"flag":["qq","腾讯","youku","优酷","qiyi","爱奇艺","奇艺","bilibili","哔哩哔哩","哔哩","mgtv","芒果"]}},
  2103. {"name":"手指","type":1,"url":"https://a.dxzj88.com/ddzy/dd.php?url=","ext":{"flag":["miaoparty","qiyi","爱奇艺","奇艺","qq","腾讯","youku","优酷","mgtv","芒果","letv","乐视","pptv","PPTV","miaoparty3"]}},
  2104. {
  2105. "name": "云析",
  2106. "type":1,
  2107. "url": "https://jx.yparse.com/index.php?url="
  2108. }
  2109. ],
  2110. "flags": [ "youku","qq","iqiyi","qiyi","letv","sohu","tudou","pptv","mgtv","cctv","cntv","wasu","bilibili","xigua","1905","1920i","1920l","mim3u8","laodim3u8","leduo","CL4K","ltnb","rx","renrenmi","wuduyun","xueren","naifeimi","miaoparty","miaoparty2","miaoparty3","xfy","xfyun","x1play","fuckapp","duoduozy","ftqp2","ftqp3","ftqp4","ftqp5","wolong","atm"
  2111. ],
  2112. "ijk": [
  2113. {
  2114. "category": 1,
  2115. "name": "dns_cache_timeout",
  2116. "value": "600000000"
  2117. },
  2118. {
  2119. "group": "软解码",
  2120. "options": [
  2121. {
  2122. "category": 4,
  2123. "name": "opensles",
  2124. "value": "0"
  2125. },
  2126. {
  2127. "category": 4,
  2128. "name": "overlay-format",
  2129. "value": "842225234"
  2130. },
  2131. {
  2132. "category": 4,
  2133. "name": "framedrop",
  2134. "value": "1"
  2135. },
  2136. {
  2137. "category": 4,
  2138. "name": "soundtouch",
  2139. "value": "1"
  2140. },
  2141. {
  2142. "category": 4,
  2143. "name": "start-on-prepared",
  2144. "value": "1"
  2145. },
  2146. {
  2147. "category": 1,
  2148. "name": "http-detect-range-support",
  2149. "value": "0"
  2150. },
  2151. {
  2152. "category": 1,
  2153. "name": "fflags",
  2154. "value": "fastseek"
  2155. },
  2156. {
  2157. "category": 2,
  2158. "name": "skip_loop_filter",
  2159. "value": "48"
  2160. },
  2161. {
  2162. "category": 4,
  2163. "name": "reconnect",
  2164. "value": "1"
  2165. },
  2166. {
  2167. "category": 4,
  2168. "name": "max-buffer-size",
  2169. "value": "5242880"
  2170. },
  2171. {
  2172. "category": 4,
  2173. "name": "enable-accurate-seek",
  2174. "value": "0"
  2175. },
  2176. {
  2177. "category": 4,
  2178. "name": "mediacodec",
  2179. "value": "0"
  2180. },
  2181. {
  2182. "category": 4,
  2183. "name": "mediacodec-auto-rotate",
  2184. "value": "0"
  2185. },
  2186. {
  2187. "category": 4,
  2188. "name": "mediacodec-handle-resolution-change",
  2189. "value": "0"
  2190. },
  2191. {
  2192. "category": 4,
  2193. "name": "mediacodec-hevc",
  2194. "value": "0"
  2195. }
  2196. ]
  2197. },
  2198. {
  2199. "group": "硬解码",
  2200. "options": [
  2201. {
  2202. "category": 1,
  2203. "name": "dns_cache_timeout",
  2204. "value": "600000000"
  2205. },
  2206. {
  2207. "category": 4,
  2208. "name": "opensles",
  2209. "value": "0"
  2210. },
  2211. {
  2212. "category": 4,
  2213. "name": "overlay-format",
  2214. "value": "842225234"
  2215. },
  2216. {
  2217. "category": 4,
  2218. "name": "framedrop",
  2219. "value": "1"
  2220. },
  2221. {
  2222. "category": 4,
  2223. "name": "soundtouch",
  2224. "value": "1"
  2225. },
  2226. {
  2227. "category": 4,
  2228. "name": "start-on-prepared",
  2229. "value": "1"
  2230. },
  2231. {
  2232. "category": 1,
  2233. "name": "http-detect-range-support",
  2234. "value": "0"
  2235. },
  2236. {
  2237. "category": 1,
  2238. "name": "fflags",
  2239. "value": "fastseek"
  2240. },
  2241. {
  2242. "category": 2,
  2243. "name": "skip_loop_filter",
  2244. "value": "48"
  2245. },
  2246. {
  2247. "category": 4,
  2248. "name": "reconnect",
  2249. "value": "1"
  2250. },
  2251. {
  2252. "category": 4,
  2253. "name": "max-buffer-size",
  2254. "value": "5242880"
  2255. },
  2256. {
  2257. "category": 4,
  2258. "name": "enable-accurate-seek",
  2259. "value": "0"
  2260. },
  2261. {
  2262. "category": 4,
  2263. "name": "mediacodec",
  2264. "value": "1"
  2265. },
  2266. {
  2267. "category": 4,
  2268. "name": "mediacodec-auto-rotate",
  2269. "value": "1"
  2270. },
  2271. {
  2272. "category": 4,
  2273. "name": "mediacodec-handle-resolution-change",
  2274. "value": "1"
  2275. },
  2276. {
  2277. "category": 4,
  2278. "name": "mediacodec-hevc",
  2279. "value": "1"
  2280. }
  2281. ]
  2282. }
  2283. ],
  2284. "ads": [
  2285. "ttsp.tv",
  2286. "lgyy.cc",
  2287. "mimg.0c1q0l.cn",
  2288. "www.googletagmanager.com",
  2289. "www.google-analytics.com",
  2290. "mc.usihnbcq.cn",
  2291. "mg.g1mm3d.cn",
  2292. "mscs.svaeuzh.cn",
  2293. "cnzz.hhttm.top",
  2294. "tp.vinuxhome.com",
  2295. "cnzz.mmstat.com",
  2296. "www.baihuillq.com",
  2297. "s23.cnzz.com",
  2298. "z3.cnzz.com",
  2299. "c.cnzz.com",
  2300. "stj.v1vo.top",
  2301. "z12.cnzz.com",
  2302. "img.mosflower.cn",
  2303. "tips.gamevvip.com",
  2304. "ehwe.yhdtns.com",
  2305. "xdn.cqqc3.com",
  2306. "www.jixunkyy.cn",
  2307. "sp.chemacid.cn",
  2308. "hm.baidu.com",
  2309. "s9.cnzz.com",
  2310. "z6.cnzz.com",
  2311. "um.cavuc.com",
  2312. "mav.mavuz.com",
  2313. "wofwk.aoidf3.com",
  2314. "z5.cnzz.com",
  2315. "xc.hubeijieshikj.cn",
  2316. "tj.tianwenhu.com",
  2317. "xg.gars57.cn",
  2318. "k.jinxiuzhilv.com",
  2319. "cdn.bootcss.com",
  2320. "ppl.xunzhuo123.com",
  2321. "xomk.jiangjunmh.top",
  2322. "img.xunzhuo123.com",
  2323. "z1.cnzz.com",
  2324. "s13.cnzz.com",
  2325. "xg.huataisangao.cn",
  2326. "z7.cnzz.com",
  2327. "xg.huataisangao.cn",
  2328. "z2.cnzz.com",
  2329. "s96.cnzz.com",
  2330. "q11.cnzz.com",
  2331. "thy.dacedsfa.cn",
  2332. "xg.whsbpw.cn",
  2333. "s19.cnzz.com",
  2334. "z8.cnzz.com",
  2335. "s4.cnzz.com",
  2336. "f5w.as12df.top",
  2337. "ae01.alicdn.com",
  2338. "www.92424.cn",
  2339. "k.wudejia.com",
  2340. "vivovip.mmszxc.top",
  2341. "qiu.xixiqiu.com",
  2342. "cdnjs.hnfenxun.com",
  2343. "cms.qdwght.com"
  2344. ]
  2345. }