maoys.json 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339
  1. {
  2. "spider": "https://gitee.com/kuzniez/mao/raw/master/custom_spider.jar;md5;dd70f51058b030fdeb0f616064a1567c",
  3. "wallpaper": "https://picsum.photos/1920/1080",
  4. "sites": [{
  5. "key": "n0ys_spider",
  6. "name": "默认(kuzniez)",
  7. "type": 3,
  8. "api": "csp_N0ys",
  9. "searchable": 1,
  10. "quickSearch": 1,
  11. "filterable": 1,
  12. "ext": "https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/ext/90ys.json"
  13. }, {
  14. "key": "csp_xpath_01-猫群自维护源",
  15. "name": "默认主页-内部学习交流-请勿传播-20220313版本",
  16. "type": 3,
  17. "api": "csp_XPath",
  18. "searchable": 0,
  19. "quickSearch": 0,
  20. "filterable": 1,
  21. "ext": "http://www.maotv.club/json/00-%E9%AA%9A%E7%81%AB.json"
  22. }, {
  23. "key": "csp_xpath_猫群自维护源01",
  24. "name": "乐猪-资源皆来自网上搜集-请勿商用盈利",
  25. "type": 3,
  26. "api": "csp_XPathMac",
  27. "searchable": 0,
  28. "quickSearch": 0,
  29. "filterable": 1,
  30. "ext": "http://www.maotv.club/json/01-%E4%B9%90%E7%8C%AAtv.json"
  31. }, {
  32. "key": "csp_xpath_猫群自维护源02",
  33. "name": "极品",
  34. "type": 3,
  35. "api": "csp_XPath",
  36. "searchable": 0,
  37. "quickSearch": 0,
  38. "filterable": 1,
  39. "ext": "http://www.maotv.club/json/02-%E6%9E%81%E5%93%81%E6%9E%81%E9%93%BE_20220312.json"
  40. }, {
  41. "key": "csp_xpath_猫群自维护源03",
  42. "name": "师兄",
  43. "type": 3,
  44. "api": "csp_XPath",
  45. "searchable": 0,
  46. "quickSearch": 0,
  47. "filterable": 1,
  48. "ext": "http://www.maotv.club/json/03-_%E5%A4%A7%E5%B8%88%E5%85%84.json"
  49. },{
  50. "key": "csp_xpath_猫群自维护源04",
  51. "name": "在线",
  52. "type": 3,
  53. "api": "csp_XPath",
  54. "searchable": 1,
  55. "searchable": 1,
  56. "filterable": 1,
  57. "ext": "http://www.maotv.club/json/04-%E5%9C%A8%E7%BA%BF%E4%B9%8B%E5%AE%B6.json"
  58. }, {
  59. "key": "csp_xpath_猫群自维护源06",
  60. "name": "久久",
  61. "type": 3,
  62. "api": "csp_XPath",
  63. "searchable": 1,
  64. "searchable": 1,
  65. "filterable": 1,
  66. "ext": "http://www.maotv.club/json/06_%E4%B9%85%E4%B9%85%E7%9C%8B%E7%89%87.json"
  67. }, {
  68. "key": "csp_xpath_猫群自维护源07",
  69. "name": "libvo",
  70. "type": 3,
  71. "api": "csp_XPath",
  72. "searchable": 1,
  73. "searchable": 1,
  74. "filterable": 1,
  75. "ext": "http://www.maotv.club/json/07-libvio.json"
  76. }, {
  77. "key": "csp_xpath_猫群自维护源09",
  78. "name": "人人",
  79. "type": 3,
  80. "api": "csp_XPath",
  81. "searchable": 1,
  82. "searchable": 1,
  83. "filterable": 1,
  84. "ext": "http://www.maotv.club/json/09-%E4%BA%BA%E4%BA%BA.json"
  85. }, {
  86. "key": "csp_xpath_猫群自维护源05",
  87. "name": "剧荒",
  88. "type": 3,
  89. "api": "csp_XPath",
  90. "searchable": 1,
  91. "searchable": 1,
  92. "filterable": 1,
  93. "ext": "http://www.maotv.club/json/05-%E5%89%A7%E8%8D%92.json"
  94. }, {
  95. "key": "csp_xpath_猫群自维护源21",
  96. "name": "樱花",
  97. "type": 3,
  98. "api": "csp_XPath",
  99. "searchable": 1,
  100. "searchable": 0,
  101. "filterable": 1,
  102. "ext": "http://www.maotv.club/json/21-%E6%A8%B1%E8%8A%B1%E5%8A%A8%E6%BC%AB.json"
  103. }, {
  104. "key": "csp_xpath_猫群自维护源22",
  105. "name": "巴士",
  106. "type": 3,
  107. "api": "csp_XPath",
  108. "searchable": 1,
  109. "searchable": 0,
  110. "filterable": 1,
  111. "ext": "http://www.maotv.club/json/22-%E5%8A%A8%E6%BC%AB%E5%B7%B4%E5%A3%AB.json"
  112. }, {
  113. "key": "csp_xpath_猫群自维护源23",
  114. "name": "AGE",
  115. "type": 3,
  116. "api": "csp_XPath",
  117. "searchable": 1,
  118. "searchable": 0,
  119. "filterable": 1,
  120. "ext": "http://www.maotv.club/json/23-AGE%E5%8A%A8%E6%BC%AB.json"
  121. }, {
  122. "key": "csp_xpath_lezhutv",
  123. "name": "乐猪TV(XPath)",
  124. "type": 3,
  125. "api": "csp_XPathMac",
  126. "searchable": 1,
  127. "quickSearch": 1,
  128. "filterable": 0,
  129. "ext": "https://gitee.com/CCSHCoder/APP/raw/master/XPath/lezhutv.json"
  130. }, {
  131. "key": "csp_Nekk",
  132. "name": "9E看看(爬虫)",
  133. "type": 3,
  134. "api": "csp_Nekk",
  135. "searchable": 1,
  136. "quickSearch": 0,
  137. "filterable": 1
  138. }, {
  139. "key": "csp_xpath_ysjc",
  140. "name": "工厂影视(XPath)",
  141. "type": 3,
  142. "api": "csp_XPath",
  143. "searchable": 1,
  144. "quickSearch": 1,
  145. "filterable": 0,
  146. "ext": "https://sharertv.coding.net/p/mao/d/mao/git/raw/master/ext/gc.json"
  147. }, {
  148. "key": "csp_N0ys",
  149. "name": "90影视(爬虫1)",
  150. "type": 3,
  151. "api": "csp_N0ys",
  152. "searchable": 1,
  153. "quickSearch": 0,
  154. "filterable": 0
  155. }, {
  156. "key": "n0ys_spider",
  157. "name": "90影视(爬虫2)",
  158. "type": 3,
  159. "api": "csp_N0ys",
  160. "searchable": 1,
  161. "quickSearch": 0,
  162. "filterable": 1,
  163. "ext": "https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/ext/90ys.json"
  164. }, {
  165. "key": "csp_YydsAli1",
  166. "name": "YYDS阿里(爬虫)",
  167. "type": 3,
  168. "api": "csp_YydsAli1",
  169. "searchable": 1,
  170. "quickSearch": 1,
  171. "filterable": 0
  172. }, {
  173. "key": "csp_xpath_axx",
  174. "name": "爱西西(XPath)",
  175. "type": 3,
  176. "api": "csp_XPath",
  177. "searchable": 0,
  178. "quickSearch": 1,
  179. "filterable": 0,
  180. "ext": "https://gitee.com/CCSHCoder/APP/raw/master/XPath/aixixi.json"
  181. }, {
  182. "key": "快播云",
  183. "name": "快播云",
  184. "type": 0,
  185. "api": "http://www.kuaibozy.com/api.php/provide/vod/at/xml/",
  186. "playUrl": "",
  187. "categories": ["国产剧", "港台剧", "日韩剧", "欧美剧", "泰剧", "综艺", "动漫", "动作片", "喜剧片", "爱情片", "科幻片", "恐怖片", "剧情片", "战争片", "纪录片"]
  188. }, {
  189. "key": "爱奇艺会员(官源)",
  190. "name": "爱奇艺会员(官源)",
  191. "type": 0,
  192. "api": "http://zy.yilans.net:8090/api.php/provide/vod/from/qiyi/at/xml/",
  193. "searchable": 1,
  194. "quickSearch": 1,
  195. "filterable": 0
  196. }, {
  197. "key": "腾讯(官源)",
  198. "name": "腾讯(官源)",
  199. "type": 0,
  200. "api": "http://www.zycaiji.net:7788/api.php/provide/vod/from/qq/at/xml/",
  201. "playUrl": "https://jx.xmflv.vip/?url=",
  202. "searchable": 1,
  203. "quickSearch": 1,
  204. "filterable": 0
  205. }, {
  206. "key": "优酷(官源)",
  207. "name": "优酷(官源)",
  208. "type": 0,
  209. "api": "http://www.zycaiji.net:7788/api.php/provide/vod/from/youku/at/xml/",
  210. "playUrl": "https://jx.xmflv.vip/?url=",
  211. "searchable": 1,
  212. "quickSearch": 1,
  213. "filterable": 0
  214. }, {
  215. "key": "爱奇艺(官源)",
  216. "name": "爱奇艺(官源)",
  217. "type": 0,
  218. "api": "http://www.zycaiji.net:7788/api.php/provide/vod/from/qiyi/at/xml/",
  219. "playUrl": "https://jx.xmflv.vip/?url=",
  220. "searchable": 1,
  221. "quickSearch": 1,
  222. "filterable": 0
  223. }, {
  224. "key": "M3U8TV资源",
  225. "name": "M3U8TV资源",
  226. "type": 0,
  227. "api": "http://www.zycaiji.net:7788/api.php/provide/vod/at/xml",
  228. "playUrl": "",
  229. "categories": []
  230. }, {
  231. "key": "星一官采(xml)",
  232. "name": "星一官采(XP)",
  233. "type": 0,
  234. "api": "https://gcku.suboyun.vip/api.php/provide/vod/at/xml",
  235. "playUrl": ""
  236. }, {
  237. "key": "迅播",
  238. "name": "迅播qgvod",
  239. "type": 0,
  240. "api": "https://www.qgvod.com/api.php/provide/vod/at/xml/",
  241. "playUrl": "https://jx.renrenmi.cc/?url=",
  242. "searchable": 1,
  243. "quickSearch": 0,
  244. "filterable": 0
  245. }, {
  246. "key": "番茄影院",
  247. "name": "番茄影院",
  248. "type": 0,
  249. "api": "http://api.fqzy.cc/api.php/provide/vod/at/xml/",
  250. "playUrl": "",
  251. "categories": []
  252. }, {
  253. "key": "209資源",
  254. "name": "209資源",
  255. "type": 0,
  256. "api": "http://api.fqzy.cc/api.php/provide/vod/at/xml/",
  257. "playUrl": "",
  258. "categories": []
  259. }, {
  260. "key": "csp_appys_xiaogui_嘀哩嘀哩",
  261. "name": "嘀哩嘀哩(M)",
  262. "type": 3,
  263. "api": "csp_AppYs",
  264. "searchable": 1,
  265. "quickSearch": 0,
  266. "filterable": 1,
  267. "ext": "xiaogui_嘀哩嘀哩"
  268. }, {
  269. "key": "csp_appys_v1_追剧吧",
  270. "name": "追剧吧(M)",
  271. "type": 3,
  272. "api": "csp_AppYs",
  273. "searchable": 1,
  274. "quickSearch": 0,
  275. "filterable": 1,
  276. "ext": "v1_追剧吧"
  277. }, {
  278. "key": "csp_appys_iptv_2号币",
  279. "name": "2号币(M)",
  280. "type": 3,
  281. "api": "csp_AppYs",
  282. "searchable": 1,
  283. "quickSearch": 0,
  284. "filterable": 1,
  285. "ext": "iptv_2号币"
  286. }, {
  287. "key": "资源采集",
  288. "name": "资源采集",
  289. "type": 0,
  290. "api": "http://www.zycaiji.net:7788/api.php/provide/vod/at/xml//n"
  291. }, {
  292. "key": "白熊影视",
  293. "name": "白熊影视",
  294. "type": 0,
  295. "api": "https://www.bxyy5.com/api.php/provide/vod/at/xml"
  296. }, {
  297. "key": "官采(2)",
  298. "name": "官方采集(2)",
  299. "type": 0,
  300. "api": "https://www.77diany.com/api.php/provide/vod/at/xml/",
  301. "playUrl": "",
  302. "searchable": 1,
  303. "quickSearch": 1,
  304. "filterable": 0
  305. }, {
  306. "key": "U酷",
  307. "name": "U酷",
  308. "type": 1,
  309. "searchable": 0,
  310. "quickSearch": 1,
  311. "api": "https://api.ukuapi.com/api.php/provide/vod/?ac=list",
  312. "playUrl": ""
  313. }, {
  314. "key": "春天影视",
  315. "name": "春天影视",
  316. "type": 0,
  317. "api": "http://television.wkfile.com/api.php/provide/vod/at/xml",
  318. "searchable": 1,
  319. "quickSearch": 0,
  320. "filterable": 1
  321. }, {
  322. "key": "csp_xpath_猫群专用人人",
  323. "name": "人人影视(XP)",
  324. "type": 3,
  325. "api": "csp_XPath",
  326. "searchable": 1,
  327. "quickSearch": 0,
  328. "filterable": 1,
  329. "ext": "https://cncncloud.com/api/v3/file/source/3064404/meijuwang.json?sign=F_SmfbRVkKKQA0rC2m_r44lSxH6P6zwds-XnW6y-HBI%3D%3A0"
  330. }, {
  331. "key": "csp_xpath_猫群专用奈洛",
  332. "name": "奈洛影视",
  333. "type": 3,
  334. "api": "csp_XPath",
  335. "searchable": 1,
  336. "quickSearch": 0,
  337. "filterable": 1,
  338. "ext": "https://cncncloud.com/api/v3/file/source/3064345/nfmovie.json?sign=EOkZnyATnJG8ORnKkt8Ny8QssZ3eqCQ0296aOJuiCY4%3D%3A0"
  339. },{
  340. "key": "csp_xpath_猫群自维护源09",
  341. "name": "美人儿",
  342. "type": 3,
  343. "api": "csp_XPath",
  344. "searchable": 1,
  345. "searchable": 1,
  346. "filterable": 1,
  347. "ext": "https://serverless-100020851183.coding.net/p/pglblb/d/json/git/raw/master/09-%E4%BA%BA%E4%BA%BA.json?download=false"
  348. }, {
  349. "key": "腾腾",
  350. "name": "腾腾",
  351. "type": 1,
  352. "searchable": 1,
  353. "quickSearch": 1,
  354. "api": "https://www.mczdyw.com/api.php/provide/vod/",
  355. "playUrl": ""
  356. }, {
  357. "key": "小小影视",
  358. "name": "小小影视",
  359. "type": 0,
  360. "api": "https://www.mbomovie.com/api.php/provide/vod/at/xml",
  361. "searchable": 1,
  362. "quickSearch": 0,
  363. "filterable": 1
  364. },{
  365. "key": "csp_xpath_猫群专用99",
  366. "name": "99影视(XP)",
  367. "type": 3,
  368. "api": "csp_XPath",
  369. "searchable": 1,
  370. "quickSearch": 0,
  371. "filterable": 1,
  372. "ext": "https://cncncloud.com/api/v3/file/source/3064351/99ys.json?sign=6jU0QP1jalngzFIZcnle9QJexF62SJtBENLc2Bt0cWc%3D%3A0"
  373. }, {
  374. "key": "csp_xpath_lmys",
  375. "name": "来米影视(XP)",
  376. "type": 3,
  377. "api": "csp_XPath",
  378. "searchable": 1,
  379. "quickSearch": 0,
  380. "filterable": 0,
  381. "ext": "https://cncncloud.com/api/v3/file/source/3066721/%E6%9D%A5%E7%B1%B3%E5%BD%B1%E8%A7%86.json?sign=uSf3ZuFlBIDwa1igQ2DRI7UE0Q7GrWCu-0fIL48xXs0%3D%3A0"
  382. }, {
  383. "key": "乐乐多",
  384. "name": "乐乐多",
  385. "type": 0,
  386. "api": "https://cj.leduocaiji.com/inc/api.php",
  387. "playUrl": "https://api.xxctzy.com/1.php?vid=",
  388. "categories": ["综艺", "动作片", "喜剧片", "爱情片", "科幻片", "恐怖片", "剧情片", "战争片", "国产剧", "港剧", "日剧", "欧美剧", "台剧", "韩剧", "其他动漫", "体育赛事", "海外剧", "纪录片", "国产动漫", "日本动漫", "欧美动漫", "动画电影", "篮球", "足球", "网球"]
  389. }, {
  390. "key": "人人资源",
  391. "name": "人人资源",
  392. "type": 0,
  393. "api": "https://www.rrzyw.cc/api.php/provide/vod/at/xml"
  394. },
  395. {
  396. "key": "卧龙资源",
  397. "name": "卧龙资源",
  398. "type": 0,
  399. "api": "https://www.wolongzyw.com/api.php/provide/vod/at/xml"
  400. },
  401. {
  402. "key": "天天看",
  403. "name": "天天看",
  404. "type": 0,
  405. "api": "https://www.ttky8.com/api.php/provide/vod/at/xml"
  406. }, {
  407. "key": "快播资源",
  408. "name": "快播资源",
  409. "type": 0,
  410. "api": "http://www.kuaibozy.com/api.php/provide/vod/at/xml"
  411. }, {
  412. "key": "麒麟资源",
  413. "name": "麒麟资源",
  414. "type": 0,
  415. "api": "https://www.qilinzyz.com/api.php/provide/vod/at/xml"
  416. }, {
  417. "key": "思古",
  418. "name": "思古",
  419. "type": 0,
  420. "api": "https://www.siguyy.com/api.php/provide/vod/at/xml"
  421. },
  422. {
  423. "key": "TVB云",
  424. "name": "TVB云",
  425. "type": 0,
  426. "api": "http://www.tvyb02.com/api.php/provide/vod/at/xml",
  427. "playUrl": "http://jx.hao-zsj.cn/vip/?url="
  428. },
  429. {
  430. "key": "韩剧资源",
  431. "name": "韩剧资源",
  432. "type": 0,
  433. "api": "http://www.hanjuzy.com/inc/api.php",
  434. "playUrl": "https://jx.aidouer.net/?url="
  435. }, {
  436. "key": "随便看",
  437. "name": "随便看",
  438. "type": 0,
  439. "api": "https://www.sbkdy.com/inc/api.php"
  440. }, {
  441. "key": "飞鱼",
  442. "name": "飞鱼",
  443. "type": 0,
  444. "api": "https://app.feiyu5.com/api.php/provide/vod/at/xml"
  445. }, {
  446. "key": "热播剧",
  447. "name": "热播剧",
  448. "type": 1,
  449. "api": "http://app.reboju.net/api.php/provide/vod",
  450. "playUrl": "https://m3u8.cachecha.com/?url="
  451. }, {
  452. "key": "趣看视频",
  453. "name": "趣看视频",
  454. "type": 0,
  455. "api": "http://qkmp4.cn/api.php/provide/vod/at/xml"
  456. }, {
  457. "key": "快看影院",
  458. "name": "快看影院",
  459. "type": 1,
  460. "api": "https://www.vp1127.com/api.php/provide/vod/?ac=list",
  461. "playUrl": "https://ss.wyhdj.com/k5/?url="
  462. }, {
  463. "key": "艾特",
  464. "name": "艾特",
  465. "type": 0,
  466. "api": "http://tv.aitesucai.xyz/api.php/provide/vod/at/xml"
  467. }, {
  468. "key": "剧好看",
  469. "name": "剧好看",
  470. "type": 0,
  471. "api": "https://www.juhaokan.cc/api.php/provide/vod/at/xml"
  472. }, {
  473. "key": "小蜻蜓",
  474. "name": "小蜻蜓",
  475. "type": 0,
  476. "api": "http://3ketv.com/api.php/provide/vod/at/xml"
  477. },
  478. {
  479. "key": "柚子资源",
  480. "name": "柚子资源",
  481. "type": 0,
  482. "api": "http://tv.aitesucai.xyz/api.php/provide/vod/at/xml"
  483. },
  484. {
  485. "key": "88资源",
  486. "name": "88资源",
  487. "type": 0,
  488. "api": "http://www.88zyw.net/inc/api.php"
  489. },
  490. {
  491. "key": "天堂资源",
  492. "name": "天堂资源",
  493. "type": 0,
  494. "api": "http://vipmv.cc/api.php/provide/vod/at/xml"
  495. }, {
  496. "key": "BL视频",
  497. "name": "BL视频",
  498. "type": 0,
  499. "api": "https://bljiex.com/api.php/provide/vod/at/xml"
  500. },
  501. {
  502. "key": "网民电影",
  503. "name": "网民电影",
  504. "type": 0,
  505. "api": "https://www.prinevillesda.org/api.php/provide/vod/at/xml"
  506. }, {
  507. "key": "嗨哆咪影视",
  508. "name": "嗨哆咪影视",
  509. "type": 1,
  510. "api": "http://hdmys1.com/api.php/provide/vod/"
  511. }, {
  512. "key": "速影",
  513. "name": "速影",
  514. "type": 0,
  515. "api": "https://速影128.xyz/inc/api.php"
  516. },
  517. {
  518. "key": "私人",
  519. "name": "私人",
  520. "type": 0,
  521. "api": "http://107.150.5.146:39000/maccms10-main/api.php/provide/vod/at/xml"
  522. }, {
  523. "key": "八戒采集",
  524. "name": "八戒采集",
  525. "type": 0,
  526. "api": "http://cj.bajiecaiji.com/inc/bjm3u8.php"
  527. }, {
  528. "key": "飘花电影",
  529. "name": "飘花电影",
  530. "type": 0,
  531. "api": "http://www.zzrhgg.com/api.php/provide/vod/at/xml"
  532. }, {
  533. "key": "乐活影视",
  534. "name": "乐活影视",
  535. "type": 0,
  536. "api": "https://lehootv.com/api.php/provide/vod/at/xml"
  537. },
  538. {
  539. "key": "csp_appys_v1_DC影视",
  540. "name": "DC影视(搜)",
  541. "type": 3,
  542. "api": "csp_AppYs",
  543. "searchable": 1,
  544. "quickSearch": 1,
  545. "filterable": 1,
  546. "ext": "v1_DC影视"
  547. }, {
  548. "key": "csp_appys_v1_yoyo",
  549. "name": "悠悠影视(搜)",
  550. "type": 3,
  551. "api": "csp_AppYs",
  552. "searchable": 1,
  553. "quickSearch": 1,
  554. "filterable": 1,
  555. "ext": "v1_yoyo"
  556. }, {
  557. "key": "csp_xpath_jpys",
  558. "name": "极品影视(XPath)",
  559. "type": 3,
  560. "api": "csp_XPath",
  561. "searchable": 1,
  562. "quickSearch": 1,
  563. "filterable": 0,
  564. "ext": "https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/jpys.json"
  565. }, {
  566. "key": "csp_xpath_smdyy",
  567. "name": "神马电影(XPath)",
  568. "type": 3,
  569. "api": "csp_XPathMac",
  570. "searchable": 1,
  571. "quickSearch": 1,
  572. "filterable": 0,
  573. "ext": "https://gitee.com/CCSHCoder/APP/raw/master/XPath/smdyy.json"
  574. }, {
  575. "key": "csp_xpath_onedianshi",
  576. "name": "蓝光影院(XPath)",
  577. "type": 3,
  578. "api": "csp_XPathMac",
  579. "searchable": 1,
  580. "quickSearch": 0,
  581. "filterable": 0,
  582. "ext": "https://gitee.com/CCSHCoder/APP/raw/master/XPath/onedianshi.json"
  583. }, {
  584. "key": "csp_xpath_gimytv",
  585. "name": "Gimy(XPath)",
  586. "type": 3,
  587. "api": "csp_XPathMac",
  588. "searchable": 1,
  589. "quickSearch": 0,
  590. "filterable": 0,
  591. "ext": "https://gitee.com/CCSHCoder/APP/raw/master/XPath/gimytv.json"
  592. }, {
  593. "key": "csp_xpath_4kpianku",
  594. "name": "4k片库网(XPMac)",
  595. "type": 3,
  596. "api": "csp_XPathMac",
  597. "searchable": 1,
  598. "quickSearch": 0,
  599. "filterable": 0,
  600. "ext": "https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/4kpianku.json"
  601. }, {
  602. "key": "csp_appys_xiaogui_看365",
  603. "name": "看365(M)",
  604. "type": 3,
  605. "api": "csp_AppYs",
  606. "searchable": 1,
  607. "quickSearch": 0,
  608. "filterable": 1,
  609. "ext": "xiaogui_看365"
  610. }, {
  611. "key": "csp_appys_v1_柠柚影视",
  612. "name": "柠柚影视(M)",
  613. "type": 3,
  614. "api": "csp_AppYs",
  615. "searchable": 1,
  616. "quickSearch": 0,
  617. "filterable": 1,
  618. "ext": "v1_柠柚影视"
  619. }, {
  620. "key": "csp_appys_v1_豆渣影视",
  621. "name": "豆渣影视(M)",
  622. "type": 3,
  623. "api": "csp_AppYs",
  624. "searchable": 1,
  625. "quickSearch": 0,
  626. "filterable": 1,
  627. "ext": "v1_豆渣影视"
  628. }, {
  629. "key": "csp_Aidi",
  630. "name": "爱迪(爬虫)",
  631. "type": 3,
  632. "api": "csp_Aidi",
  633. "searchable": 1,
  634. "quickSearch": 0,
  635. "filterable": 1
  636. }, {
  637. "key": "csp_Auete",
  638. "name": "Auete(爬虫)",
  639. "type": 3,
  640. "api": "csp_Auete",
  641. "searchable": 1,
  642. "quickSearch": 0,
  643. "filterable": 1
  644. }, {
  645. "key": "八戒云",
  646. "name": "八戒",
  647. "type": 0,
  648. "api": "http://cj.bajiecaiji.com/inc/bjm3u8.php",
  649. "searchable": 1,
  650. "quickSearch": 1,
  651. "filterable": 1
  652. }, {
  653. "key": "csp_appys_v1_4K影院",
  654. "name": "4K影院",
  655. "type": 3,
  656. "api": "csp_AppYs",
  657. "searchable": 1,
  658. "quickSearch": 1,
  659. "filterable": 1,
  660. "ext": "v1_4K影院"
  661. }, {
  662. "key": "csp_appys_v1_1080p",
  663. "name": "1080p(搜)",
  664. "type": 3,
  665. "api": "csp_AppYs",
  666. "searchable": 1,
  667. "quickSearch": 1,
  668. "filterable": 1,
  669. "ext": "v1_1080p"
  670. }, {
  671. "key": "csp_appys_v1_CJT影院",
  672. "name": "CJT影院(搜)",
  673. "type": 3,
  674. "api": "csp_AppYs",
  675. "searchable": 1,
  676. "quickSearch": 1,
  677. "filterable": 1,
  678. "ext": "v1_CJT影院"
  679. }, {
  680. "key": "csp_xpath_555",
  681. "name": "555电影(XPath)",
  682. "type": 3,
  683. "api": "csp_XPath",
  684. "searchable": 1,
  685. "quickSearch": 1,
  686. "filterable": 0,
  687. "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/555.json"
  688. }, {
  689. "key": "csp_appys_v1_美剧虫",
  690. "name": "美剧虫(kuzmost)",
  691. "type": 3,
  692. "api": "csp_AppYs",
  693. "searchable": 1,
  694. "quickSearch": 1,
  695. "filterable": 1,
  696. "ext": "v1_美剧虫"
  697. }, {
  698. "key": "人人迷2",
  699. "name": "人人迷2",
  700. "type": 0,
  701. "searchable": 1,
  702. "quickSearch": 1,
  703. "api": "https://koko.renrenmi.cc/api.php/provide/vod/at/xml",
  704. "playUrl": "https://analysis.yikan.one/analysis/player/?uid=8&my=fjkmoqFJLORTVZ1359&url="
  705. }, {
  706. "key": "csp_appys_v1_小极影视",
  707. "name": "小极影视(M)",
  708. "type": 3,
  709. "api": "csp_AppYs",
  710. "searchable": 1,
  711. "quickSearch": 0,
  712. "filterable": 1,
  713. "ext": "v1_小极影视"
  714. }, {
  715. "key": "csp_appys_iptv_HG影视",
  716. "name": "HG影视(M)",
  717. "type": 3,
  718. "api": "csp_AppYs",
  719. "searchable": 1,
  720. "quickSearch": 0,
  721. "filterable": 1,
  722. "ext": "iptv_HG影视"
  723. }, {
  724. "key": "csp_appys_v1_HG影视",
  725. "name": "HG影视(M)",
  726. "type": 3,
  727. "api": "csp_AppYs",
  728. "searchable": 1,
  729. "quickSearch": 0,
  730. "filterable": 1,
  731. "ext": "v1_HG影视"
  732. }, {
  733. "key": "csp_appys_v1_益达影院",
  734. "name": "益达影院(M)",
  735. "type": 3,
  736. "api": "csp_AppYs",
  737. "searchable": 1,
  738. "quickSearch": 0,
  739. "filterable": 1,
  740. "ext": "v1_益达影院"
  741. }, {
  742. "key": "csp_appys_v1_影视热剧",
  743. "name": "影视热剧(M)",
  744. "type": 3,
  745. "api": "csp_AppYs",
  746. "searchable": 1,
  747. "quickSearch": 0,
  748. "filterable": 1,
  749. "ext": "v1_影视热剧"
  750. }, {
  751. "key": "淘片资源",
  752. "name": "淘片资源(xml)",
  753. "type": 0,
  754. "api": "https://taopianzy.com/home/cjapi/as/mc10/vod/xml/m3u8",
  755. "playUrl": ""
  756. }, {
  757. "key": "乐多资源网",
  758. "name": "乐多资源网(xml)",
  759. "type": 0,
  760. "api": "http://api.leduozy.com/inc/api.php",
  761. "playUrl": ""
  762. },
  763. {
  764. "key": "csp_appys_xiaogui_抹茶猪",
  765. "name": "抹茶猪(搜)",
  766. "type": 3,
  767. "api": "csp_AppYs",
  768. "searchable": 1,
  769. "quickSearch": 1,
  770. "filterable": 1,
  771. "ext": "xiaogui_抹茶猪"
  772. }, {
  773. "key": "csp_appys_v1_追剧猫",
  774. "name": "追剧猫(M)",
  775. "type": 3,
  776. "api": "csp_AppYs",
  777. "searchable": 1,
  778. "quickSearch": 0,
  779. "filterable": 1,
  780. "ext": "v1_追剧猫"
  781. }, {
  782. "key": "csp_appys_v1_雪人资源",
  783. "name": "雪人资源(搜)",
  784. "type": 3,
  785. "api": "csp_AppYs",
  786. "searchable": 1,
  787. "quickSearch": 1,
  788. "filterable": 1,
  789. "ext": "v1_雪人资源"
  790. }, {
  791. "key": "csp_appys_iptv_思奇TV",
  792. "name": "思奇TV(搜)",
  793. "type": 3,
  794. "api": "csp_AppYs",
  795. "searchable": 1,
  796. "quickSearch": 1,
  797. "filterable": 1,
  798. "ext": "iptv_思奇TV"
  799. }, {
  800. "key": "csp_appys_v1_暖光影视",
  801. "name": "暖光影视(M)",
  802. "type": 3,
  803. "api": "csp_AppYs",
  804. "searchable": 1,
  805. "quickSearch": 0,
  806. "filterable": 1,
  807. "ext": "v1_暖光影视"
  808. }, {
  809. "key": "csp_appys_xiaogui_躺平影视",
  810. "name": "躺平影视(搜)",
  811. "type": 3,
  812. "api": "csp_AppYs",
  813. "searchable": 1,
  814. "quickSearch": 1,
  815. "filterable": 1,
  816. "ext": "xiaogui_躺平影视"
  817. }, {
  818. "key": "csp_Buka",
  819. "name": "真不卡(爬虫)",
  820. "type": 3,
  821. "api": "csp_Buka",
  822. "searchable": 0,
  823. "quickSearch": 0,
  824. "filterable": 1
  825. }, {
  826. "key": "buka_spider",
  827. "name": "真不卡(搜)",
  828. "type": 3,
  829. "api": "csp_Buka",
  830. "searchable": 1,
  831. "quickSearch": 1,
  832. "filterable": 1,
  833. "ext": "https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/ext/buka.json"
  834. }, {
  835. "key": "auete_spider",
  836. "name": "Auete影视(爬虫)",
  837. "type": 3,
  838. "api": "csp_Auete",
  839. "searchable": 1,
  840. "quickSearch": 1,
  841. "filterable": 1,
  842. "ext": "https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/ext/auete.json"
  843. }, {
  844. "key": "cokemv_spider",
  845. "name": "Cokemv(爬虫)",
  846. "type": 3,
  847. "api": "csp_Cokemv",
  848. "searchable": 1,
  849. "quickSearch": 1,
  850. "filterable": 1,
  851. "ext": "https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/ext/cokemv.json"
  852. }, {
  853. "key": "csp_Cokemv",
  854. "name": "Cokemv(爬虫)",
  855. "type": 3,
  856. "api": "csp_Cokemv",
  857. "searchable": 1,
  858. "quickSearch": 0,
  859. "filterable": 1
  860. }, {
  861. "key": "csp_appys_xiaogui_爱迪影视",
  862. "name": "爱迪影视(搜)",
  863. "type": 3,
  864. "api": "csp_AppYs",
  865. "searchable": 1,
  866. "quickSearch": 1,
  867. "filterable": 1,
  868. "ext": "xiaogui_爱迪影视"
  869. }, {
  870. "key": "adys_spider",
  871. "name": "爱迪影视(爬虫)",
  872. "type": 3,
  873. "api": "csp_Aidi",
  874. "searchable": 1,
  875. "quickSearch": 1,
  876. "filterable": 1,
  877. "ext": "https://litecucumber.coding.net/p/cat/d/config/git/raw/master/pub/ext/aidi.json"
  878. }, {
  879. "key": "csp_appys_v1_奈非迷",
  880. "name": "奈非迷(主端口http://gg.gg/maotv)",
  881. "type": 3,
  882. "api": "csp_AppYs",
  883. "searchable": 1,
  884. "quickSearch": 1,
  885. "filterable": 1,
  886. "ext": "v1_奈非迷"
  887. }, {
  888. "key": "csp_Enlienli",
  889. "name": "嗯哩嗯哩(爬虫)",
  890. "type": 3,
  891. "api": "csp_Enlienli",
  892. "searchable": 1,
  893. "quickSearch": 0,
  894. "filterable": 1
  895. }, {
  896. "key": "csp_xpath_lranc",
  897. "name": "天天影视(kuzmost)",
  898. "type": 3,
  899. "api": "csp_XPathMac",
  900. "searchable": 1,
  901. "quickSearch": 1,
  902. "filterable": 0,
  903. "ext": "https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/lranc.json"
  904. }, {
  905. "key": "csp_appys_xiaogui_追剧达人",
  906. "name": "追剧达人(kuzmost)",
  907. "type": 3,
  908. "api": "csp_AppYs",
  909. "searchable": 1,
  910. "quickSearch": 1,
  911. "filterable": 1,
  912. "ext": "xiaogui_追剧达人"
  913. }, {
  914. "key": "csp_xpath_zjdr",
  915. "name": "追剧达人2(XPath)",
  916. "type": 3,
  917. "api": "csp_XPath",
  918. "searchable": 1,
  919. "quickSearch": 1,
  920. "filterable": 0,
  921. "ext": "https://gitee.com/CCSHCoder/APP/raw/master/XPath/vipmv.json"
  922. }, {
  923. "key": "csp_xpath_meiju56",
  924. "name": "美剧网(XPMac)",
  925. "type": 3,
  926. "api": "csp_XPathMac",
  927. "searchable": 1,
  928. "quickSearch": 1,
  929. "filterable": 1,
  930. "ext": "https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/meiju56.json"
  931. }, {
  932. "key": "csp_appys_v1_绿箭影视",
  933. "name": "绿箭影视(搜)",
  934. "type": 3,
  935. "api": "csp_AppYs",
  936. "searchable": 1,
  937. "quickSearch": 1,
  938. "filterable": 1,
  939. "ext": "v1_绿箭影视"
  940. }, {
  941. "key": "乐视",
  942. "name": "乐视",
  943. "type": 0,
  944. "api": "http://www.zycaiji.net:7788/api.php/provide/vod/from/letv/at/xml/",
  945. "playUrl": "",
  946. "searchable": 1,
  947. "quickSearch": 1,
  948. "filterable": 0,
  949. "categories": ["国产剧", "港台剧", "日韩剧", "欧美剧", "惊悚片", "综艺", "动漫", "动作片", "喜剧片", "爱情片", "科幻片", "恐怖片", "剧情片", "战争片", "纪录片", "犯罪片", "冒险片", "悬疑片", "奇幻片", "动画片"]
  950. }, {
  951. "key": "pptv",
  952. "name": "pptv",
  953. "type": 0,
  954. "api": "http://www.zycaiji.net:7788/api.php/provide/vod/from/pptv/at/xml/",
  955. "playUrl": "",
  956. "searchable": 1,
  957. "quickSearch": 1,
  958. "filterable": 0,
  959. "categories": ["国产剧", "港台剧", "日韩剧", "欧美剧", "惊悚片", "综艺", "动漫", "动作片", "喜剧片", "爱情片", "科幻片", "恐怖片", "剧情片", "战争片", "纪录片", "犯罪片", "冒险片", "悬疑片", "奇幻片", "动画片"]
  960. }, {
  961. "key": "2345",
  962. "name": "假2345",
  963. "type": 0,
  964. "api": "http://2345.tgzy.cc:1005/api.php/provide/vod/at/xml/",
  965. "searchable": 1,
  966. "quickSearch": 1,
  967. "filterable": 0
  968. }, {
  969. "key": "影视界",
  970. "name": "影视界",
  971. "type": 0,
  972. "api": "http://video.yingworld.vip/api.php/provide/vod/at/xml/",
  973. "playUrl": ""
  974. }, {
  975. "key": "1920官采",
  976. "name": "1920官采",
  977. "type": 0,
  978. "api": "http://zy.1920i.com/api.php/provide/vod/at/xml",
  979. "searchable": 1,
  980. "quickSearch": 1,
  981. "filterable": 0
  982. }, {
  983. "key": "无名",
  984. "name": "无名",
  985. "type": 0,
  986. "api": "http://tv.aitesucai.xyz/api.php/provide/vod/at/xml/",
  987. "searchable": 1,
  988. "quickSearch": 1,
  989. "filterable": 0
  990. }, {
  991. "key": "萌果",
  992. "name": "萌果",
  993. "type": 0,
  994. "api": "http://api.appearoo.top/api.php/provide/vod/at/xml/",
  995. "searchable": 1,
  996. "quickSearch": 1,
  997. "filterable": 0
  998. }, {
  999. "key": "七七电影",
  1000. "name": "七七电影",
  1001. "type": 0,
  1002. "api": "https://www.77diany.com/api.php/provide/vod/at/xml",
  1003. "searchable": 1,
  1004. "quickSearch": 1,
  1005. "filterable": 0
  1006. }, {
  1007. "key": "Nfuxs",
  1008. "name": "南府(P)",
  1009. "type": 3,
  1010. "api": "csp_XPathFilter",
  1011. "searchable": 1,
  1012. "quickSearch": 1,
  1013. "filterable": 1,
  1014. "ext": "https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Nfuxs.json"
  1015. }, {
  1016. "key": "这是神馬",
  1017. "name": "这是神馬",
  1018. "type": 0,
  1019. "api": "http://www.zitv.cc/api.php/provide/vod/at/xml/",
  1020. "playUrl": "",
  1021. "categories": [
  1022. ]
  1023. }, {
  1024. "key": "csp_appys_v1_爱看美剧",
  1025. "name": "爱看美剧(搜)",
  1026. "type": 3,
  1027. "api": "csp_AppYs",
  1028. "searchable": 1,
  1029. "quickSearch": 1,
  1030. "filterable": 1,
  1031. "ext": "v1_爱看美剧"
  1032. }, {
  1033. "key": "csp_appys_v1_影阅阁",
  1034. "name": "影阅阁(搜)",
  1035. "type": 3,
  1036. "api": "csp_AppYs",
  1037. "searchable": 1,
  1038. "quickSearch": 1,
  1039. "filterable": 1,
  1040. "ext": "v1_影阅阁"
  1041. }, {
  1042. "key": "csp_appys_v1_月色影视",
  1043. "name": "月色影视(M)",
  1044. "type": 3,
  1045. "api": "csp_AppYs",
  1046. "searchable": 1,
  1047. "quickSearch": 0,
  1048. "filterable": 1,
  1049. "ext": "v1_月色影视"
  1050. }, {
  1051. "key": "csp_appys_xiaogui_苍蓝资源",
  1052. "name": "苍蓝资源(M)",
  1053. "type": 3,
  1054. "api": "csp_AppYs",
  1055. "searchable": 1,
  1056. "quickSearch": 0,
  1057. "filterable": 1,
  1058. "ext": "xiaogui_苍蓝资源"
  1059. }, {
  1060. "key": "csp_appys_v1_淘剧社",
  1061. "name": "淘剧社(搜)",
  1062. "type": 3,
  1063. "api": "csp_AppYs",
  1064. "searchable": 1,
  1065. "quickSearch": 1,
  1066. "filterable": 1,
  1067. "ext": "v1_淘剧社"
  1068. }, {
  1069. "key": "csp_appys_v1_独播社",
  1070. "name": "独播社(M)",
  1071. "type": 3,
  1072. "api": "csp_AppYs",
  1073. "searchable": 1,
  1074. "quickSearch": 0,
  1075. "filterable": 1,
  1076. "ext": "v1_独播社"
  1077. }, {
  1078. "key": "csp_appys_v1_初心影视",
  1079. "name": "初心影视(搜)",
  1080. "type": 3,
  1081. "api": "csp_AppYs",
  1082. "searchable": 1,
  1083. "quickSearch": 1,
  1084. "filterable": 1,
  1085. "ext": "v1_初心影视"
  1086. }, {
  1087. "key": "csp_xpath_saohuotv",
  1088. "name": "骚火电影",
  1089. "type": 3,
  1090. "api": "csp_XPath",
  1091. "searchable": 1,
  1092. "quickSearch": 1,
  1093. "filterable": 1,
  1094. "ext": "https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/saohuotv2.json"
  1095. }, {
  1096. "key": "csp_xpath_pianku",
  1097. "name": "片库(XPath)",
  1098. "type": 3,
  1099. "api": "csp_XPath",
  1100. "searchable": 1,
  1101. "quickSearch": 1,
  1102. "filterable": 0,
  1103. "ext": "https://gitee.com/CCSHCoder/APP/raw/master/XPath/pianku.json"
  1104. }, {
  1105. "key": "csp_xpath_pianba",
  1106. "name": "片吧影院(XPMac)",
  1107. "type": 3,
  1108. "api": "csp_XPathMac",
  1109. "searchable": 1,
  1110. "quickSearch": 1,
  1111. "filterable": 0,
  1112. "ext": "https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/pianba.json"
  1113. }, {
  1114. "key": "csp_xpath_94sm",
  1115. "name": "94神马(XPMac)",
  1116. "type": 3,
  1117. "api": "csp_XPath",
  1118. "searchable": 1,
  1119. "quickSearch": 1,
  1120. "filterable": 1,
  1121. "ext": "https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/94sm.json"
  1122. }, {
  1123. "key": "csp_appys_xiaogui_神马影院",
  1124. "name": "神马影院(xiaogui)",
  1125. "type": 3,
  1126. "api": "csp_AppYs",
  1127. "searchable": 1,
  1128. "quickSearch": 1,
  1129. "filterable": 1,
  1130. "ext": "xiaogui_神马影院"
  1131. }, {
  1132. "key": "csp_appys_xiaogui_饭团影院",
  1133. "name": "饭团影院(搜)",
  1134. "type": 3,
  1135. "api": "csp_AppYs",
  1136. "searchable": 1,
  1137. "quickSearch": 1,
  1138. "filterable": 1,
  1139. "ext": "xiaogui_饭团影院"
  1140. }, {
  1141. "key": "csp_xpath_tvci",
  1142. "name": "大师兄(XPath)",
  1143. "type": 3,
  1144. "api": "csp_XPathFilter",
  1145. "searchable": 1,
  1146. "quickSearch": 1,
  1147. "filterable": 1,
  1148. "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/tvci.json"
  1149. }, {
  1150. "key": "csp_appys_xiaogui_星空影视",
  1151. "name": "星空影视(M)",
  1152. "type": 3,
  1153. "api": "csp_AppYs",
  1154. "searchable": 1,
  1155. "quickSearch": 0,
  1156. "filterable": 1,
  1157. "ext": "xiaogui_星空影视"
  1158. }, {
  1159. "key": "MBO影视",
  1160. "name": "MBO影视(xml)",
  1161. "type": 0,
  1162. "api": "https://www.mbomovie.com/api.php/provide/vod/at/xml"
  1163. }, {
  1164. "key": "乐多资源",
  1165. "name": "乐多资源(xml)",
  1166. "type": 0,
  1167. "api": "http://cj.leduocaiji.com/inc/seacmsapi.php",
  1168. "playUrl": "https://ldy.jx.cn/wp-api/ifr.php?vid="
  1169. }, {
  1170. "key": "番茄资源",
  1171. "name": "番茄资源(xml)",
  1172. "type": 0,
  1173. "api": "http://api.fqzy.cc/api.php/provide/vod/at/xml/?ac=list",
  1174. "playUrl": "https://dp.8b5q.cn/dplayer/?url="
  1175. }, {
  1176. "key": "无尽资源",
  1177. "name": "无尽资源(over)",
  1178. "type": 0,
  1179. "api": "https://wujinzy.com/api.php/provide/vod/at/xml",
  1180. "playUrl": "https://jx.xhswglobal.com/dplayer/?url="
  1181. }, {
  1182. "key": "csp_xpath_1010dy",
  1183. "name": "双十电影(XPath)",
  1184. "type": 3,
  1185. "api": "csp_XPathMac",
  1186. "searchable": 1,
  1187. "quickSearch": 0,
  1188. "filterable": 0,
  1189. "ext": "https://gitee.com/CCSHCoder/APP/raw/master/XPath/1010dy.json"
  1190. }, {
  1191. "key": "csp_appys_xiaogui_双十电影",
  1192. "name": "双十电影(主页“https://gitee.com/binbo1”获取最新信息)",
  1193. "type": 3,
  1194. "api": "csp_AppYs",
  1195. "searchable": 1,
  1196. "quickSearch": 0,
  1197. "filterable": 1,
  1198. "ext": "xiaogui_双十电影"
  1199. }, {
  1200. "key": "csp_xpath_newfii",
  1201. "name": "奈落(XPath)",
  1202. "type": 3,
  1203. "api": "csp_XPath",
  1204. "searchable": 1,
  1205. "quickSearch": 0,
  1206. "filterable": 1,
  1207. "ext": "https://gitee.com/CCSHCoder/APP/raw/master/XPath/newfii.json"
  1208. }, {
  1209. "key": "csp_xpath_1090ys2",
  1210. "name": "1090影视(XPMac)",
  1211. "type": 3,
  1212. "api": "csp_XPathMac",
  1213. "searchable": 1,
  1214. "quickSearch": 0,
  1215. "filterable": 1,
  1216. "ext": "https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/1090ys2.json"
  1217. }, {
  1218. "key": "csp_appys_v1_视听星球",
  1219. "name": "视听星球(M)",
  1220. "type": 3,
  1221. "api": "csp_AppYs",
  1222. "searchable": 1,
  1223. "quickSearch": 0,
  1224. "filterable": 1,
  1225. "ext": "v1_视听星球"
  1226. }, {
  1227. "key": "csp_appys_xiaogui_段友影视",
  1228. "name": "段友影视(M)",
  1229. "type": 3,
  1230. "api": "csp_AppYs",
  1231. "searchable": 1,
  1232. "quickSearch": 0,
  1233. "filterable": 1,
  1234. "ext": "xiaogui_段友影视"
  1235. }, {
  1236. "key": "csp_appys_v1_筋斗云",
  1237. "name": "筋斗云(M)",
  1238. "type": 3,
  1239. "api": "csp_AppYs",
  1240. "searchable": 1,
  1241. "quickSearch": 0,
  1242. "filterable": 1,
  1243. "ext": "v1_筋斗云"
  1244. }, {
  1245. "key": "csp_appys_v1_天天视频",
  1246. "name": "天天视频(M)",
  1247. "type": 3,
  1248. "api": "csp_AppYs",
  1249. "searchable": 1,
  1250. "quickSearch": 0,
  1251. "filterable": 1,
  1252. "ext": "v1_天天视频"
  1253. }, {
  1254. "key": "csp_appys_xiaogui_vip影院",
  1255. "name": "vip影院(M)",
  1256. "type": 3,
  1257. "api": "csp_AppYs",
  1258. "searchable": 1,
  1259. "quickSearch": 0,
  1260. "filterable": 1,
  1261. "ext": "xiaogui_vip影院"
  1262. }, {
  1263. "key": "csp_appys_xiaogui_皮皮影视",
  1264. "name": "皮皮影视(M)",
  1265. "type": 3,
  1266. "api": "csp_AppYs",
  1267. "searchable": 1,
  1268. "quickSearch": 0,
  1269. "filterable": 1,
  1270. "ext": "xiaogui_皮皮影视"
  1271. }, {
  1272. "key": "csp_appys_v1_看剧吧",
  1273. "name": "看剧吧(M)",
  1274. "type": 3,
  1275. "api": "csp_AppYs",
  1276. "searchable": 1,
  1277. "quickSearch": 0,
  1278. "filterable": 1,
  1279. "ext": "v1_看剧吧"
  1280. }, {
  1281. "key": "木偶TV",
  1282. "name": "木偶TV(xml)",
  1283. "type": 0,
  1284. "api": "http://vip.muoutv.com/api.php/provide/vod/at/xml"
  1285. }, {
  1286. "key": "csp_appys_v1_猪猪影院",
  1287. "name": "红牛影院(M)",
  1288. "type": 3,
  1289. "api": "csp_AppYs",
  1290. "searchable": 1,
  1291. "quickSearch": 0,
  1292. "filterable": 1,
  1293. "ext": "v1_猪猪影院"
  1294. }, {
  1295. "key": "csp_appys_v1_U5影视",
  1296. "name": "U5影视(M)",
  1297. "type": 3,
  1298. "api": "csp_AppYs",
  1299. "searchable": 1,
  1300. "quickSearch": 0,
  1301. "filterable": 1,
  1302. "ext": "v1_U5影视"
  1303. }, {
  1304. "key": "csp_appys_v1_渔渔影视",
  1305. "name": "渔渔影视(M)",
  1306. "type": 3,
  1307. "api": "csp_AppYs",
  1308. "searchable": 1,
  1309. "quickSearch": 0,
  1310. "filterable": 1,
  1311. "ext": "v1_渔渔影视"
  1312. }, {
  1313. "key": "csp_appys_xiaogui_快云影音",
  1314. "name": "快云影音(搜)",
  1315. "type": 3,
  1316. "api": "csp_AppYs",
  1317. "searchable": 1,
  1318. "quickSearch": 1,
  1319. "filterable": 1,
  1320. "ext": "xiaogui_快云影音"
  1321. }, {
  1322. "key": "csp_appys_xiaogui_小七影视",
  1323. "name": "小七影视(搜)",
  1324. "type": 3,
  1325. "api": "csp_AppYs",
  1326. "searchable": 1,
  1327. "quickSearch": 1,
  1328. "filterable": 1,
  1329. "ext": "xiaogui_小七影视"
  1330. }, {
  1331. "key": "csp_appys_v1_麻瓜视频",
  1332. "name": "麻瓜视频(搜)",
  1333. "type": 3,
  1334. "api": "csp_AppYs",
  1335. "searchable": 1,
  1336. "quickSearch": 1,
  1337. "filterable": 1,
  1338. "ext": "v1_麻瓜视频"
  1339. }, {
  1340. "key": "csp_appys_xiaogui_瓜皮TV",
  1341. "name": "瓜皮TV(M)",
  1342. "type": 3,
  1343. "api": "csp_AppYs",
  1344. "searchable": 1,
  1345. "quickSearch": 0,
  1346. "filterable": 1,
  1347. "ext": "xiaogui_瓜皮TV"
  1348. }, {
  1349. "key": "csp_appys_v1_奇趣影视",
  1350. "name": "奇趣影视2(搜)",
  1351. "type": 3,
  1352. "api": "csp_AppYs",
  1353. "searchable": 1,
  1354. "quickSearch": 1,
  1355. "filterable": 1,
  1356. "ext": "https://app.qiqu.me/mogai_api.php/v1.vod"
  1357. }, {
  1358. "key": "csp_appys_xiaogui_913e影视",
  1359. "name": "913e影视(M)",
  1360. "type": 3,
  1361. "api": "csp_AppYs",
  1362. "searchable": 1,
  1363. "quickSearch": 0,
  1364. "filterable": 1,
  1365. "ext": "xiaogui_913e影视"
  1366. }, {
  1367. "key": "csp_appys_xiaogui_萌蛋蛋",
  1368. "name": "萌蛋蛋(M)",
  1369. "type": 3,
  1370. "api": "csp_AppYs",
  1371. "searchable": 1,
  1372. "quickSearch": 0,
  1373. "filterable": 1,
  1374. "ext": "xiaogui_萌蛋蛋"
  1375. }, {
  1376. "key": "csp_appys_iptv_黑龙影视",
  1377. "name": "黑龙影视(M)",
  1378. "type": 3,
  1379. "api": "csp_AppYs",
  1380. "searchable": 1,
  1381. "quickSearch": 0,
  1382. "filterable": 1,
  1383. "ext": "iptv_黑龙影视"
  1384. }, {
  1385. "key": "csp_appys_iptv_聚多影视",
  1386. "name": "聚多影视(M)",
  1387. "type": 3,
  1388. "api": "csp_AppYs",
  1389. "searchable": 1,
  1390. "quickSearch": 0,
  1391. "filterable": 1,
  1392. "ext": "iptv_聚多影视"
  1393. }, {
  1394. "key": "csp_appys_iptv_小极TV",
  1395. "name": "小极TV(M)",
  1396. "type": 3,
  1397. "api": "csp_AppYs",
  1398. "searchable": 1,
  1399. "quickSearch": 0,
  1400. "filterable": 1,
  1401. "ext": "iptv_小极TV"
  1402. },
  1403. {
  1404. "key": "csp_appys_xiaogui_海胆影视",
  1405. "name": "海胆影视(M)",
  1406. "type": 3,
  1407. "api": "csp_AppYs",
  1408. "searchable": 1,
  1409. "quickSearch": 0,
  1410. "filterable": 1,
  1411. "ext": "xiaogui_海胆影视"
  1412. }, {
  1413. "key": "csp_appys_xiaogui_海棠视频",
  1414. "name": "海棠视频(M)",
  1415. "type": 3,
  1416. "api": "csp_AppYs",
  1417. "searchable": 1,
  1418. "quickSearch": 0,
  1419. "filterable": 1,
  1420. "ext": "xiaogui_海棠视频"
  1421. }, {
  1422. "key": "csp_appys_xiaogui_京广航",
  1423. "name": "京广航(M)",
  1424. "type": 3,
  1425. "api": "csp_AppYs",
  1426. "searchable": 1,
  1427. "quickSearch": 0,
  1428. "filterable": 1,
  1429. "ext": "xiaogui_京广航"
  1430. }, {
  1431. "key": "csp_appys_v1_爱影视",
  1432. "name": "爱影视(M)",
  1433. "type": 3,
  1434. "api": "csp_AppYs",
  1435. "searchable": 1,
  1436. "quickSearch": 0,
  1437. "filterable": 1,
  1438. "ext": "v1_爱影视"
  1439. }, {
  1440. "key": "csp_appys_v1_橘子影视",
  1441. "name": "橘子影视(M)",
  1442. "type": 3,
  1443. "api": "csp_AppYs",
  1444. "searchable": 1,
  1445. "quickSearch": 0,
  1446. "filterable": 1,
  1447. "ext": "v1_橘子影视"
  1448. }, {
  1449. "key": "csp_appys_v1_艾特影视",
  1450. "name": "艾特影视(M)",
  1451. "type": 3,
  1452. "api": "csp_AppYs",
  1453. "searchable": 1,
  1454. "quickSearch": 0,
  1455. "filterable": 1,
  1456. "ext": "v1_艾特影视"
  1457. }, {
  1458. "key": "csp_appys_v1_比邻影视",
  1459. "name": "比邻影视(M)",
  1460. "type": 3,
  1461. "api": "csp_AppYs",
  1462. "searchable": 1,
  1463. "quickSearch": 0,
  1464. "filterable": 1,
  1465. "ext": "v1_比邻影视"
  1466. },
  1467. {
  1468. "key": "csp_appys_v1_黄河影视",
  1469. "name": "黄河影视(M)",
  1470. "type": 3,
  1471. "api": "csp_AppYs",
  1472. "searchable": 1,
  1473. "quickSearch": 0,
  1474. "filterable": 1,
  1475. "ext": "v1_黄河影视"
  1476. },
  1477. {
  1478. "key": "csp_appys_v1_盒子影院",
  1479. "name": "盒子影院(M)",
  1480. "type": 3,
  1481. "api": "csp_AppYs",
  1482. "searchable": 1,
  1483. "quickSearch": 0,
  1484. "filterable": 1,
  1485. "ext": "v1_盒子影院"
  1486. }, {
  1487. "key": "csp_appys_xiaogui_播放呀",
  1488. "name": "播放呀(M)",
  1489. "type": 3,
  1490. "api": "csp_AppYs",
  1491. "searchable": 1,
  1492. "quickSearch": 0,
  1493. "filterable": 1,
  1494. "ext": "xiaogui_播放呀"
  1495. }, {
  1496. "key": "csp_appys_v1_冷视TV",
  1497. "name": "冷视TV(M)",
  1498. "type": 3,
  1499. "api": "csp_AppYs",
  1500. "searchable": 1,
  1501. "quickSearch": 0,
  1502. "filterable": 1,
  1503. "ext": "v1_冷视TV"
  1504. }, {
  1505. "key": "csp_appys_iptv_嘀哩嘀哩",
  1506. "name": "嘀哩嘀哩(M)",
  1507. "type": 3,
  1508. "api": "csp_AppYs",
  1509. "searchable": 1,
  1510. "quickSearch": 0,
  1511. "filterable": 1,
  1512. "ext": "iptv_嘀哩嘀哩"
  1513. }, {
  1514. "key": "csp_appys_iptv_大师兄",
  1515. "name": "大师兄(M)",
  1516. "type": 3,
  1517. "api": "csp_AppYs",
  1518. "searchable": 1,
  1519. "quickSearch": 0,
  1520. "filterable": 1,
  1521. "ext": "iptv_大师兄"
  1522. }, {
  1523. "key": "8k影视",
  1524. "name": "8k影视",
  1525. "type": 0,
  1526. "api": "http://vip.8kvod.com:888/8kvodapilgxc.php/provide/vod/at/xml"
  1527. }, {
  1528. "key": "晓峰影视",
  1529. "name": "晓峰影视",
  1530. "type": 0,
  1531. "api": "http://api.xxcr.tk/api.php/provide/vod/at/xml"
  1532. }, {
  1533. "key": "39影视",
  1534. "name": "39影视",
  1535. "type": 0,
  1536. "api": "https://www.39kan.com/api.php/provide/vod/at/xml",
  1537. "searchable": 0,
  1538. "quickSearch": 0,
  1539. "filterable": 0
  1540. }, {
  1541. "key": "人人资源",
  1542. "name": "人人资源",
  1543. "type": 0,
  1544. "api": "https://www.rrzyw.cc/api.php/provide/vod/from/rrm3u8/at/xml/"
  1545. }, {
  1546. "key": "天空云",
  1547. "name": "天空云",
  1548. "type": 0,
  1549. "api": "https://api.tiankongapi.com/api.php/provide/vod/at/xml/from/tkm3u8/"
  1550. }, {
  1551. "key": "快播云资源",
  1552. "name": "快播云资源",
  1553. "type": 0,
  1554. "api": "http://www.kuaibozy.com/api.php/provide/vod/from/kbm3u8/at/xml/"
  1555. },
  1556. {
  1557. "key": "6U资源",
  1558. "name": "6U资源",
  1559. "type": 0,
  1560. "api": "http://zy.ataoju.com/inc/api.php"
  1561. }, {
  1562. "key": "88",
  1563. "name": "88",
  1564. "type": 0,
  1565. "api": "http://www.88zy.live/inc/api.php"
  1566. }, {
  1567. "key": "csp_Juhi",
  1568. "name": "剧嗨(爬虫)",
  1569. "type": 3,
  1570. "api": "csp_Juhi",
  1571. "searchable": 1,
  1572. "quickSearch": 1,
  1573. "filterable": 1
  1574. },
  1575. {
  1576. "key": "csp_xpath_czspp_h",
  1577. "name": "@厂长资源_08",
  1578. "type": 3,
  1579. "api": "csp_XPath",
  1580. "searchable": 1,
  1581. "quickSearch": 0,
  1582. "filterable": 0,
  1583. "ext": "https://cdn.jsdelivr.net/gh/hstsws008/mao@master/xpath/czspp.json"
  1584. }, {
  1585. "key": "天空资源",
  1586. "name": "天空资源",
  1587. "type": 1,
  1588. "api": "http://api.tiankongapi.com/api.php/provide/vod/",
  1589. "playUrl": "",
  1590. "searchable": 1,
  1591. "quickSearch": 0,
  1592. "categories": []
  1593. }, {
  1594. "key": "闪电资源",
  1595. "name": "闪电资源",
  1596. "type": 1,
  1597. "api": "http://sdzyapi.com/api.php/provide/vod/",
  1598. "playUrl": "",
  1599. "searchable": 1,
  1600. "quickSearch": 0,
  1601. "categories": []
  1602. }, {
  1603. "key": "百度资源",
  1604. "name": "百度资源网",
  1605. "type": 1,
  1606. "api": "https://api.apibdzy.com/api.php/provide/vod/",
  1607. "playUrl": "",
  1608. "searchable": 1,
  1609. "quickSearch": 0,
  1610. "categories": []
  1611. }, {
  1612. "key": "快看客栈",
  1613. "name": "快看客栈",
  1614. "type": 1,
  1615. "api": "https://www.vp1127.com/api.php/provide/vod/",
  1616. "playUrl": "",
  1617. "searchable": 1,
  1618. "quickSearch": 1,
  1619. "categories": []
  1620. }, {
  1621. "key": "兔子窝",
  1622. "name": "兔子窝",
  1623. "type": 1,
  1624. "api": "http://cj.huimaojia.com:12345/api.php/provide/vod/",
  1625. "playUrl": "",
  1626. "searchable": 1,
  1627. "quickSearch": 0,
  1628. "categories": []
  1629. }, {
  1630. "key": "哇可可影视",
  1631. "name": "哇可可影视",
  1632. "type": 1,
  1633. "api": "https://www.zwcoco.com/api.php/provide/vod/",
  1634. "playUrl": "",
  1635. "searchable": 1,
  1636. "quickSearch": 0,
  1637. "categories": []
  1638. }, {
  1639. "key": "思古影院",
  1640. "name": "思古影院",
  1641. "type": 1,
  1642. "api": "https://www.siguyy.com/api.php/provide/vod/",
  1643. "playUrl": "",
  1644. "searchable": 1,
  1645. "quickSearch": 0,
  1646. "categories": []
  1647. },
  1648. {
  1649. "key": "测试",
  1650. "name": "测试",
  1651. "type": 1,
  1652. "api": "http://107.150.5.146:39000/maccms10-main/api.php/provide/vod/",
  1653. "playUrl": "",
  1654. "searchable": 1,
  1655. "quickSearch": 0,
  1656. "categories": []
  1657. }, {
  1658. "key": "清欢资源",
  1659. "name": "清欢资源",
  1660. "type": 1,
  1661. "api": "http://free.qinghuanzy.com/api.php/provide/vod/",
  1662. "playUrl": "",
  1663. "searchable": 1,
  1664. "quickSearch": 0,
  1665. "categories": []
  1666. }, {
  1667. "key": "速更资源",
  1668. "name": "速更资源",
  1669. "type": 1,
  1670. "api": "https://sugengzy.cn/api.php/provide/vod/",
  1671. "playUrl": "",
  1672. "searchable": 1,
  1673. "quickSearch": 0,
  1674. "categories": []
  1675. },
  1676. {
  1677. "key": "雪人官采",
  1678. "name": "雪人官采",
  1679. "type": 1,
  1680. "api": "https://zl.qd234.cn/api.php/provide/vod/",
  1681. "playUrl": "",
  1682. "searchable": 1,
  1683. "quickSearch": 0,
  1684. "categories": []
  1685. }, {
  1686. "key": "舒渡影视",
  1687. "name": "舒渡影视",
  1688. "type": 1,
  1689. "api": "http://www.lovctv.com/api.php/provide/vod/",
  1690. "playUrl": "",
  1691. "searchable": 1,
  1692. "quickSearch": 0,
  1693. "categories": []
  1694. }, {
  1695. "key": "随便看电影",
  1696. "name": "随便看电影",
  1697. "type": 1,
  1698. "api": "https://baobei666.com/inc/apijson_vod.php",
  1699. "playUrl": "",
  1700. "searchable": 1,
  1701. "quickSearch": 0,
  1702. "categories": []
  1703. }, {
  1704. "key": "酷点资源",
  1705. "name": "酷点资源网",
  1706. "type": 1,
  1707. "api": "https://api.kuapi.cc/api.php/provide/vod/",
  1708. "playUrl": "",
  1709. "searchable": 1,
  1710. "quickSearch": 0,
  1711. "categories": []
  1712. }, {
  1713. "key": "樱花资源",
  1714. "name": "樱花资源",
  1715. "type": 1,
  1716. "api": "https://m3u8.apiyhzy.com/api.php/provide/vod/",
  1717. "playUrl": "",
  1718. "searchable": 1,
  1719. "quickSearch": 0,
  1720. "categories": []
  1721. }, {
  1722. "key": "橘猫影视",
  1723. "name": "橘猫影视",
  1724. "type": 1,
  1725. "api": "http://www.zitv.cc/api.php/provide/vod/",
  1726. "playUrl": "",
  1727. "searchable": 1,
  1728. "quickSearch": 0,
  1729. "categories": []
  1730. }, {
  1731. "key": "*花椒资源",
  1732. "name": "*花椒资源",
  1733. "type": 1,
  1734. "api": "https://apihjzy.com/api.php/provide/vod/",
  1735. "searchable": 0,
  1736. "quickSearch": 0,
  1737. "filterable": 0
  1738. }, {
  1739. "key": "*银龙",
  1740. "name": "*银龙",
  1741. "type": 1,
  1742. "api": "https://yinlong.tv/api.php/provide/vod/",
  1743. "searchable": 0,
  1744. "quickSearch": 0,
  1745. "filterable": 0
  1746. }, {
  1747. "key": "*佳",
  1748. "name": "*佳",
  1749. "type": 0,
  1750. "api": "https://api.jializyzapi.com/inc/api.php",
  1751. "searchable": 0,
  1752. "quickSearch": 0,
  1753. "filterable": 0
  1754. }, {
  1755. "key": "*天",
  1756. "name": "*三级",
  1757. "type": 0,
  1758. "api": "http://bttcj.com/inc/sapi.php?ac=videolist",
  1759. "searchable": 0,
  1760. "quickSearch": 0,
  1761. "filterable": 0
  1762. }, {
  1763. "key": "*桃色资源",
  1764. "name": "*桃色资源",
  1765. "type": 1,
  1766. "api": "https://api.taoseapi.com/api.php/provide/vod/",
  1767. "searchable": 0,
  1768. "quickSearch": 0,
  1769. "filterable": 0
  1770. }, {
  1771. "key": "*博天堂",
  1772. "name": "*博天堂",
  1773. "type": 0,
  1774. "api": "http://bttcj.com/inc/sapi.php?ac=videolist",
  1775. "playUrl": "",
  1776. "categories": [],
  1777. "quickSearch": 0
  1778. }, {
  1779. "key": "*乐鱼资源",
  1780. "name": "*乐鱼资源",
  1781. "type": 1,
  1782. "api": "https://www.leyuzyapi.com/inc/apijson_vod.php",
  1783. "playUrl": "",
  1784. "categories": [],
  1785. "quickSearch": 0,
  1786. "searchable": 0
  1787. }, {
  1788. "key": "*76源",
  1789. "name": "*76源",
  1790. "type": 0,
  1791. "api": "http://m.7777688.com/inc/api.php"
  1792. }, {
  1793. "key": "*佳丽资源",
  1794. "name": "*佳丽资源",
  1795. "type": 0,
  1796. "api": "https://jialiapi.com/api.php/provide/vod/at/xml/"
  1797. }, {
  1798. "key": "*BT天堂",
  1799. "name": "*BT天堂",
  1800. "type": 0,
  1801. "api": "http://bttcj.com/inc/sapi.php"
  1802. }, {
  1803. "key": "*水蜜桃",
  1804. "name": "*水蜜桃",
  1805. "type": 1,
  1806. "api": "http://51smt4.xyz/api.php/provide/vod/"
  1807. },
  1808. {
  1809. "key": "*玖玖资源",
  1810. "name": "*玖玖资源",
  1811. "type": 0,
  1812. "api": "http://99zywcj.com/inc/sapi.php?ac=videolist"
  1813. },
  1814. {
  1815. "key": "*点点娱乐",
  1816. "name": "*点点娱乐",
  1817. "type": 0,
  1818. "api": "http://32ddtv.com/home/cjapi/c74d97b01eae257e44aa9d5bade97baf/vod/xml"
  1819. }, {
  1820. "key": "*老鸭福利",
  1821. "name": "*老鸭福利",
  1822. "type": 0,
  1823. "api": "https://api.apilyzy.com/api.php/provide/vod/at/xml"
  1824. },
  1825. {
  1826. "key": "*芒果福利",
  1827. "name": "*芒果福利",
  1828. "type": 0,
  1829. "api": "https://www.mgav1.cc/api.php/provide/vod/at/xml"
  1830. },
  1831. {
  1832. "key": "*S袜资源",
  1833. "name": "*S袜资源",
  1834. "type": 1,
  1835. "api": "https://siwazyw.net/api.php/provide/vod/"
  1836. },
  1837. {
  1838. "key": "*1024资源",
  1839. "name": "*1024资源",
  1840. "type": 0,
  1841. "api": "https://www.1024nf.com/api.php/provide/vod/at/xml"
  1842. },
  1843. {
  1844. "key": "*4000资源",
  1845. "name": "*4000资源",
  1846. "type": 0,
  1847. "api": "https://www.4000zy.com/inc/api.php"
  1848. },
  1849. {
  1850. "key": "*77资源",
  1851. "name": "*77资源",
  1852. "type": 0,
  1853. "api": "https://www.77zy.vip/inc/m3u8.php"
  1854. }, {
  1855. "key": "*天堂福利",
  1856. "name": "*天堂福利",
  1857. "type": 0,
  1858. "api": "https://bttcj.com/inc/sapi.php"
  1859. },
  1860. {
  1861. "key": "*探探资源",
  1862. "name": "*探探资源",
  1863. "type": 0,
  1864. "api": "https://apittzy.com/api.php/provide/vod/at/xml",
  1865. "playUrl": "https://jiexi.ttbfp1.com/m3u8/?url="
  1866. },
  1867. {
  1868. "key": "*乐鱼资源",
  1869. "name": "*乐鱼资源",
  1870. "type": 0,
  1871. "api": "https://www.leyuzyapi.com/inc/zyapimac.php",
  1872. "playUrl": "https://player.leyuzy.net/?url="
  1873. },
  1874. {
  1875. "key": "*523资源",
  1876. "name": "*523资源",
  1877. "type": 0,
  1878. "api": "https://caiji.523zyw.com/inc/api.php"
  1879. },
  1880. {
  1881. "key": "*秀色资源",
  1882. "name": "*秀色资源",
  1883. "type": 0,
  1884. "api": "https://api.xiuseapi.com/api.php/provide/vod/at/xml",
  1885. "playUrl": "https://player.leyuzy.net/?url="
  1886. },
  1887. {
  1888. "key": "*鲨鱼资源",
  1889. "name": "*鲨鱼资源",
  1890. "type": 0,
  1891. "api": "https://shayuapi.com/api.php/provide/vod/at/xml"
  1892. },
  1893. {
  1894. "key": "*色色资源",
  1895. "name": "*色色资源",
  1896. "type": 0,
  1897. "api": "http://m.7777688.com/inc/api.php/"
  1898. },
  1899. {
  1900. "key": "*利来资源",
  1901. "name": "*利来资源",
  1902. "type": 0,
  1903. "api": "http://llzxcj.com/inc/sck.php?ac=videolist"
  1904. },
  1905. {
  1906. "key": "*辣椒资源",
  1907. "name": "*辣椒资源",
  1908. "type": 0,
  1909. "api": "http://api.11bat.com/api.php/provide/vod/at/xml"
  1910. },
  1911. {
  1912. "key": "*辣椒资源2",
  1913. "name": "*辣椒资源2",
  1914. "type": 0,
  1915. "api": "http://www.lajiaozy18.com/api.php/provide/vod/at/xml"
  1916. }, {
  1917. "key": "*环亚资源",
  1918. "name": "*环亚资源",
  1919. "type": 0,
  1920. "api": "http://wmcj8.com/inc/sapi.php?ac=videolist"
  1921. },
  1922. {
  1923. "key": "*速度资源",
  1924. "name": "*速度资源",
  1925. "type": 0,
  1926. "api": "http://www.ggmmzy.com:9999/inc/xml"
  1927. },
  1928. {
  1929. "key": "*字幕网",
  1930. "name": "*字幕网",
  1931. "type": 0,
  1932. "api": "http://zmcj88.com/sapi?ac=videolist"
  1933. }, {
  1934. "key": "*小姐姐资源",
  1935. "name": "*小姐姐资源",
  1936. "type": 0,
  1937. "api": "https://86xjj.com/home/cjapi/70efdf2ec9b086079795c442636b55fb/vod/xml"
  1938. }, {
  1939. "key": "*JAV名优",
  1940. "name": "*JAV名优",
  1941. "type": 0,
  1942. "api": "http://mygzycj.com/api.php?ac=list"
  1943. },
  1944. {
  1945. "key": "*SS资源",
  1946. "name": "*SS资源",
  1947. "type": 0,
  1948. "api": "http://secj8.com/inc/sapi.php?ac=videolist"
  1949. },
  1950. {
  1951. "key": "*大地资源",
  1952. "name": "*大地资源",
  1953. "type": 0,
  1954. "api": "https://dadiapi.com/api.php/"
  1955. },
  1956. {
  1957. "key": "*乐播",
  1958. "name": "*乐播",
  1959. "type": 0,
  1960. "api": "https://lbapi9.com/api.php/provide/vod/at/xml"
  1961. },
  1962. {
  1963. "key": "*苍天",
  1964. "name": "*苍天",
  1965. "type": 0,
  1966. "api": "http://cj.cangtiancj.com/api.php/Seacms/vod"
  1967. }, {
  1968. "key": "*佳丽",
  1969. "name": "*佳丽",
  1970. "type": 0,
  1971. "api": "https://jialiapi.com/api.php/provide/vod/at/xml"
  1972. },
  1973. {
  1974. "key": "*狼少年",
  1975. "name": "*狼少年",
  1976. "type": 0,
  1977. "api": "http://cjmygzy.com/inc/sapi.php?ac=videolist"
  1978. },
  1979. {
  1980. "key": "*富二代资源",
  1981. "name": "*富二代资源",
  1982. "type": 0,
  1983. "api": "http://f2dcj6.com/sapi/?ac=videolist"
  1984. },
  1985. {
  1986. "key": "*番号资源",
  1987. "name": "*番号资源",
  1988. "type": 1,
  1989. "api": "http://fhapi9.com/api.php/provide/vod/"
  1990. }, {
  1991. "key": "*芒果",
  1992. "name": "*芒果",
  1993. "type": 0,
  1994. "api": "https://mgzyz1.com/api.php/provide/vod/at/xml"
  1995. },
  1996. {
  1997. "key": "*桃色",
  1998. "name": "*桃色",
  1999. "type": 0,
  2000. "api": "https://cj.taoseapi.com/inc/api.php"
  2001. },
  2002. {
  2003. "key": "*S猫资源",
  2004. "name": "*S猫资源",
  2005. "type": 0,
  2006. "api": "https://api.maozyapi.com/inc/api.php"
  2007. }, {
  2008. "key": "*BB资源",
  2009. "name": "*BB资源",
  2010. "type": 0,
  2011. "api": "http://bbzy.cc/inc/maccms10.php"
  2012. },
  2013. {
  2014. "key": "*100ai",
  2015. "name": "*100ai",
  2016. "type": 0,
  2017. "api": "http://www.010aizy.com/API/maxs.php"
  2018. }, {
  2019. "key": "*骚色资源",
  2020. "name": "*骚色资源",
  2021. "type": 1,
  2022. "api": "http://api.saosezy.icu/api.php/provide/vod/"
  2023. },
  2024. {
  2025. "key": "*速播资源",
  2026. "name": "*速播资源",
  2027. "type": 1,
  2028. "api": "http://api.suboapi.com/api.php/provide/vod/"
  2029. }, {
  2030. "key": "*一本D资源",
  2031. "name": "*一本D资源",
  2032. "type": 0,
  2033. "api": "http://caiji03.com/home/cjapi/44f683a84163b3523afe57c2e008bc8c/vod/xml"
  2034. },
  2035. {
  2036. "key": "*麻豆视频",
  2037. "name": "*麻豆视频",
  2038. "type": 0,
  2039. "api": "http://caiji04.com/home/cjapi/03afdbd66e7929b125f8597834fa83a4/vod/xml"
  2040. },
  2041. {
  2042. "key": "*青青草视频",
  2043. "name": "*青青草视频",
  2044. "type": 0,
  2045. "api": "http://caiji05.com/home/cjapi/ea5d2f1c4608232e07d3aa3d998e5135/vod/xml"
  2046. },
  2047. {
  2048. "key": "*久久热在线",
  2049. "name": "*久久热在线",
  2050. "type": 0,
  2051. "api": "http://caiji06.com/home/cjapi/fc490ca45c00b1249bbe3554a4fdf6fb/vod/xml"
  2052. },
  2053. {
  2054. "key": "*日本AV在线",
  2055. "name": "*日本AV在线",
  2056. "type": 0,
  2057. "api": "http://caiji07.com/home/cjapi/3295c76acbf4caaed33c36b1b5fc2cb1/vod/xml"
  2058. },
  2059. {
  2060. "key": "*鲍鱼AV",
  2061. "name": "*鲍鱼AV",
  2062. "type": 0,
  2063. "api": "http://caiji26.com/home/cjapi/9778d5d219c5080b9a6a17bef029331c/vod/xml"
  2064. }, {
  2065. "key": "*浪潮资源",
  2066. "name": "*浪潮资源",
  2067. "type": 1,
  2068. "api": "http://langchaozy6.com/api.php/provide/vod/"
  2069. }, {
  2070. "key": "*天噜啦资源",
  2071. "name": "*天噜啦资源",
  2072. "type": 0,
  2073. "api": "http://www.987caiji.com/api/max.php"
  2074. }, {
  2075. "key": "*我要啪啪",
  2076. "name": "*我要啪啪",
  2077. "type": 0,
  2078. "api": "http://www.caiji21.com/home/cjapi/28dd2c7955ce926456240b2ff0100bde/vod/xml"
  2079. },
  2080. {
  2081. "key": "*大D丝资源",
  2082. "name": "*大D丝资源",
  2083. "type": 0,
  2084. "api": "http://www.caiji24.com/home/cjapi/f033ab37c30201f73f142449d037028d/vod/xml"
  2085. },
  2086. {
  2087. "key": "*咪咪资源",
  2088. "name": "*咪咪资源",
  2089. "type": 0,
  2090. "api": "http://www.caiji25.com/home/cjapi/43ec517d68b6edd3015b3edc9a11367b/vod/xml"
  2091. }, {
  2092. "key": "*辣椒资源",
  2093. "name": "*辣椒资源",
  2094. "type": 1,
  2095. "api": "http://www.lajiaozy18.com/api.php/provide/vod?ac=list"
  2096. },
  2097. {
  2098. "key": "*天堂AV",
  2099. "name": "*天堂AV",
  2100. "type": 0,
  2101. "api": "http://www.njxinli.com/inc/api.php"
  2102. }, {
  2103. "key": "*R妻资源",
  2104. "name": "*R妻资源",
  2105. "type": 0,
  2106. "api": "http://www.yrqcaiji.com/home/cjapi/98dce83da57b0395e163467c9dae521b/vod/xml"
  2107. },
  2108. {
  2109. "key": "*小处N资源",
  2110. "name": "*小处N资源",
  2111. "type": 0,
  2112. "api": "http://xcncaiji.com/home/cjapi/812b4ba287f5ee0bc9d43bbf5bbe87fb/vod/xml"
  2113. }, {
  2114. "key": "*痴汉队长",
  2115. "name": "*痴汉队长",
  2116. "type": 1,
  2117. "api": "https://javcaptain.com/api.php/provide/vod/"
  2118. }, {
  2119. "key": "*精工厂资源",
  2120. "name": "*精工厂资源",
  2121. "type": 0,
  2122. "api": "https://www.016caiji.com/home/cjapi/7cbbc409ec990f19c78c75bd1e06f215/vod/xml"
  2123. }, {
  2124. "key": "*草榴视频",
  2125. "name": "*草榴视频",
  2126. "type": 0,
  2127. "api": "https://www.caiji02.com/home/cjapi/7f39f8317fbdb1988ef4c628eba02591/vod/xml"
  2128. }, {
  2129. "key": "*黄瓜TV资源",
  2130. "name": "*黄瓜TV资源",
  2131. "type": 0,
  2132. "api": "https://www.caiji10.com/home/cjapi/14bfa6bb14875e45bba028a21ed38046/vod/xml"
  2133. },
  2134. {
  2135. "key": "*AV集中营",
  2136. "name": "*AV集中营",
  2137. "type": 0,
  2138. "api": "https://www.caiji22.com/home/cjapi/35f4a8d465e6e1edc05f3d8ab658c551/vod/xml"
  2139. },
  2140. {
  2141. "key": "*夜夜撸资源",
  2142. "name": "*夜夜撸资源",
  2143. "type": 0,
  2144. "api": "https://www.caiji23.com/home/cjapi/d1fe173d08e959397adf34b1d77e88d7/vod/xml"
  2145. },
  2146. {
  2147. "key": "*水帘洞资源",
  2148. "name": "*水帘洞资源",
  2149. "type": 0,
  2150. "api": "https://www.sldcaiji.com/home/cjapi/f4b9ec30ad9f68f89b29639786cb62ef/vod/xml"
  2151. }, {
  2152. "key": "*百度资源",
  2153. "name": "*百度资源",
  2154. "type": 1,
  2155. "api": "http://llbdzy.com/api.php/provide/vod?ac=list"
  2156. },
  2157. {
  2158. "key": "*99资源",
  2159. "name": "*99资源",
  2160. "type": 1,
  2161. "api": "http://99zy.pw/api.php/provide/vod/"
  2162. },
  2163. {
  2164. "key": "*花椒",
  2165. "name": "*花椒",
  2166. "type": 0,
  2167. "api": "https://cj.apihjzy.com/inc/api.php"
  2168. }, {
  2169. "key": "环",
  2170. "name": "*环",
  2171. "type": 0,
  2172. "api": "http://wmcj8.com/inc/sapi.php?ac=videolist",
  2173. "playUrl": "",
  2174. "categories": [],
  2175. "quickSearch": 0
  2176. },
  2177. {
  2178. "key": "狼",
  2179. "name": "狼",
  2180. "type": 0,
  2181. "api": "http://cjmygzy.com/inc/sapi.php?ac=videolist",
  2182. "playUrl": "",
  2183. "categories": [],
  2184. "quickSearch": 0
  2185. },
  2186. {
  2187. "key": "富",
  2188. "name": "富",
  2189. "type": 0,
  2190. "api": "http://f2dcj6.com/sapi/?ac=videolist",
  2191. "playUrl": "",
  2192. "categories": [],
  2193. "quickSearch": 0
  2194. },
  2195. {
  2196. "key": "美",
  2197. "name": "美",
  2198. "type": 1,
  2199. "api": "https://www.msnii.com/api/json.php",
  2200. "playUrl": "",
  2201. "categories": [],
  2202. "quickSearch": 0
  2203. },
  2204. {
  2205. "key": "香",
  2206. "name": "香",
  2207. "type": 1,
  2208. "api": "https://www.gdlsp.com/api/json.php",
  2209. "playUrl": "",
  2210. "categories": [],
  2211. "quickSearch": 0
  2212. },
  2213. {
  2214. "key": "花",
  2215. "name": "花",
  2216. "type": 1,
  2217. "api": "https://apihjzy.com/api.php/provide/vod/",
  2218. "playUrl": "",
  2219. "categories": [],
  2220. "quickSearch": 0
  2221. },
  2222. {
  2223. "key": "探",
  2224. "name": "探",
  2225. "type": 1,
  2226. "api": "https://apittzy.com/api.php/provide/vod/",
  2227. "playUrl": "",
  2228. "categories": [],
  2229. "quickSearch": 0
  2230. },
  2231. {
  2232. "key": "A",
  2233. "name": "A",
  2234. "type": 0,
  2235. "api": "http://m.7777688.com/inc/api.php",
  2236. "playUrl": "",
  2237. "categories": [],
  2238. "quickSearch": 0
  2239. },
  2240. {
  2241. "key": "水",
  2242. "name": "水",
  2243. "type": 1,
  2244. "api": "https://www.xrbsp.com/api/json.php",
  2245. "playUrl": "",
  2246. "categories": [],
  2247. "quickSearch": 0
  2248. },
  2249. {
  2250. "key": "佳",
  2251. "name": "佳",
  2252. "type": 0,
  2253. "api": "https://api.jializyzapi.com/inc/api.php",
  2254. "playUrl": "",
  2255. "categories": [],
  2256. "quickSearch": 0
  2257. },
  2258. {
  2259. "key": "白",
  2260. "name": "白",
  2261. "type": 1,
  2262. "api": "https://www.kxgav.com/api/json.php",
  2263. "playUrl": "",
  2264. "categories": [],
  2265. "quickSearch": 0
  2266. },
  2267. {
  2268. "key": "鲨",
  2269. "name": "鲨",
  2270. "type": 1,
  2271. "api": "https://shayuapi.com/api.php/provide/vod/",
  2272. "playUrl": "",
  2273. "categories": [],
  2274. "quickSearch": 0
  2275. },
  2276. {
  2277. "key": "袜",
  2278. "name": "袜",
  2279. "type": 1,
  2280. "api": "https://siwazyw.net/api.php/provide/vod/",
  2281. "playUrl": "",
  2282. "categories": [],
  2283. "quickSearch": 0
  2284. },
  2285. {
  2286. "key": "乐",
  2287. "name": "乐",
  2288. "type": 1,
  2289. "api": "https://lbapi9.com/api.php/provide/vod/",
  2290. "playUrl": "",
  2291. "categories": [],
  2292. "quickSearch": 0
  2293. },
  2294. {
  2295. "key": "字",
  2296. "name": "字",
  2297. "type": 0,
  2298. "api": "http://zmcj88.com/sapi?ac=videolist",
  2299. "playUrl": "",
  2300. "categories": [],
  2301. "quickSearch": 0
  2302. },
  2303. {
  2304. "key": "J",
  2305. "name": "J",
  2306. "type": 0,
  2307. "api": "http://mygzycj.com/api.php?ac=list",
  2308. "playUrl": "",
  2309. "categories": [],
  2310. "quickSearch": 0
  2311. },
  2312. {
  2313. "key": "S",
  2314. "name": "S",
  2315. "type": 0,
  2316. "api": "http://secj8.com/inc/sapi.php?ac=videolist",
  2317. "playUrl": "",
  2318. "categories": [],
  2319. "quickSearch": 0
  2320. },
  2321. {
  2322. "key": "速",
  2323. "name": "速",
  2324. "type": 0,
  2325. "api": "http://www.ggmmzy.com:9999/inc/xml",
  2326. "playUrl": "",
  2327. "categories": [],
  2328. "quickSearch": 0,
  2329. "searchable": 0
  2330. },
  2331. {
  2332. "key": "天",
  2333. "name": "天",
  2334. "type": 0,
  2335. "api": "http://bttcj.com/inc/sapi.php?ac=videolist",
  2336. "playUrl": "",
  2337. "categories": [],
  2338. "quickSearch": 0
  2339. },
  2340. {
  2341. "key": "番",
  2342. "name": "番",
  2343. "type": 1,
  2344. "api": "http://fhapi9.com/api.php/provide/vod/",
  2345. "playUrl": "",
  2346. "categories": [],
  2347. "quickSearch": 0
  2348. },
  2349. {
  2350. "key": "来",
  2351. "name": "来",
  2352. "type": 0,
  2353. "api": "http://llzxcj.com/inc/sck.php?ac=videolist",
  2354. "playUrl": "",
  2355. "categories": [],
  2356. "quickSearch": 0
  2357. },
  2358. {
  2359. "key": "玖",
  2360. "name": "玖",
  2361. "type": 0,
  2362. "api": "http://99zywcj.com/inc/sapi.php?ac=videolist",
  2363. "playUrl": "",
  2364. "categories": [],
  2365. "quickSearch": 0
  2366. },
  2367. {
  2368. "key": "桃",
  2369. "name": "桃",
  2370. "type": 1,
  2371. "api": "https://api.taoseapi.com/api.php/provide/vod/",
  2372. "playUrl": "",
  2373. "categories": [],
  2374. "quickSearch": 0
  2375. },
  2376. {
  2377. "key": "秀",
  2378. "name": "秀",
  2379. "type": 1,
  2380. "api": "https://api.xiuseapi.com/api.php/provide/vod/",
  2381. "playUrl": "",
  2382. "categories": [],
  2383. "quickSearch": 0
  2384. },
  2385. {
  2386. "key": "*CK资源(VPN)",
  2387. "name": "*CK资源(VPN)",
  2388. "type": 1,
  2389. "api": "https://ckzy.me/api.php/provide/vod/",
  2390. "playUrl": "",
  2391. "categories": [],
  2392. "quickSearch": 0
  2393. }
  2394. ],
  2395. "lives": [{
  2396. "group": "凤凰卫视",
  2397. "channels": [{
  2398. "name": "凤凰中文",
  2399. "urls": ["http://playtv-live.ifeng.com/live/06OLEGEGM4G.m3u8", "http://223.110.245.138/PLTV/3/224/3221226922/index.m3u8", "http://ott.js.chinamobile.com/TVOD/3/224/3221228057/index.m3u8", "http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8$JS1080P"]
  2400. }, {
  2401. "name": "凤凰资讯",
  2402. "urls": ["http://playtv-live.ifeng.com/live/06OLEEWQKN4.m3u8", "http://ott.js.chinamobile.com/TVOD/3/224/3221228098/index.m3u8", "http://223.110.235.5/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8", "http://117.169.124.43:6610/ysten-businessmobile/live/fhzixun/index.m3u8", "http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8", "http://39.135.53.195/ott.fj.chinamobile.com/PLTV/88888888/224/3221225901/1.m3u8", "http://117.169.124.43:6610/ysten-businessmobile/live/fhzixun/index.m3u8", "http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8$JS1080P", "http://117.169.124.37:6610/ysten-businessmobile/live/fhzixun/1.m3u8"]
  2403. }, {
  2404. "name": "凤凰电影台",
  2405. "urls": ["http://iptv.tvfix.org/hls/fhdy.m3u8", "http://v.mp.haue.edu.cn/hls/fhdy.m3u8", "http://218.202.220.2:5000/nn_live.ts?id=NEWSASIA"]
  2406. }, {
  2407. "name": "凤凰香港",
  2408. "urls": ["http://ott.js.chinamobile.com/TVOD/3/224/3221228060/index.m3u8", "http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8"]
  2409. }]
  2410. }, {
  2411. "group": "家庭影院",
  2412. "channels": [{
  2413. "name": "北京电影频道",
  2414. "urls": ["http://117.148.179.176/PLTV/88888888/224/3221231565/index.m3u8"]
  2415. }, {
  2416. "name": "东方影视频道",
  2417. "urls": ["http://117.148.179.160/PLTV/88888888/224/3221231639/index.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225615/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225708/index.m3u8"]
  2418. }, {
  2419. "name": "黑莓电影频道",
  2420. "urls": ["http://111.40.196.9/PLTV/88888888/224/3221225610/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231621/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225708/index.m3u8"]
  2421. }, {
  2422. "name": "动作电影频道",
  2423. "urls": ["http://111.40.196.9/PLTV/88888888/224/3221225620/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231565/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231556/index.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225622/index.m3u8"]
  2424. }, {
  2425. "name": "超级电影频道",
  2426. "urls": ["http://117.148.179.160/PLTV/88888888/224/3221231568/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231564/index.m3u8", "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226233/1.m3u8"]
  2427. }, {
  2428. "name": "超燃电影频道",
  2429. "urls": ["http://117.148.179.176/PLTV/88888888/224/3221231565/index.m3u8"]
  2430. }, {
  2431. "name": "CHC高清电影",
  2432. "urls": ["https://zxtv.herokuapp.com/PLTV/sccn.php?id=lnwsCHC-HDH265_4000.m3u8", "http://39.134.18.82/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226463/index.m3u8"]
  2433. }, {
  2434. "name": "CHC动作电影",
  2435. "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=119&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "http://117.148.179.138/PLTV/88888888/224/3221231580/index.m3u8"]
  2436. }, {
  2437. "name": "CHC家庭影院",
  2438. "urls": ["http://117.148.179.151/PLTV/88888888/224/3221231799/index.m3u8"]
  2439. }, {
  2440. "name": "周星驰",
  2441. "urls": ["http://117.148.179.153/PLTV/88888888/224/3221231562/index.m3u8", "http://112.74.200.9:88/tv000000/m3u8.php?/migu/623338112", "http://dyscdnali1.douyucdn.cn/live/122402rK7MO9bXSq.flv?uuid=", "http://zzy789.xyz/douyu1.php?id=3990812", "http://106.53.212.251/daili/yy.php?id=38670875", "http://tx2play1.douyucdn.cn/live/122402rK7MO9bXSq.xs?uuid="]
  2442. }, {
  2443. "name": "刘德华",
  2444. "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", "http://183.232.171.91/tx.hls.huya.com/src/1394575547-1394575547-5989656366166310912-2789274550-10057-A-0-1.m3u8"]
  2445. }, {
  2446. "name": "周润发",
  2447. "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"]
  2448. }, {
  2449. "name": "成龙",
  2450. "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", "http://106.53.212.251/daili/yy.php?id=34460526", "http://183.232.171.91/tx.hls.huya.com/src/1394565191-1394565191-5989611887484993536-2789253838-10057-A-0-1-imgplus.m3u8"]
  2451. }, {
  2452. "name": "张国荣",
  2453. "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"]
  2454. }, {
  2455. "name": "香港赌片",
  2456. "urls": ["http://epg.112114.xyz/douyu/315457"]
  2457. }]
  2458. },
  2459. {
  2460. "group": "央视精选",
  2461. "channels": [{
  2462. "name": "CCTV-1",
  2463. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225726/1/index.m3u8?fmt=ts2hls", "http://39.135.34.150:8080/000000001000/1000000001000021973/1.m3u8?xtkg", "http://lives.jnnews.tv/video/s10001-CCTV-1/index.m3u8", "http://140.207.241.2:8080/live/program/live/cctv1hd/4000000/mnf.m3u8", "http://jwplay.hebyun.com.cn/live/cctv1/1500k/tzwj_video.m3u8", "http://39.135.32.29:6610/000000001000/1000000001000021973/1.m3u8?", "http://112.25.63.197:8080/gitv_live/G_CCTV-1-MD/G_CCTV-1-MD.m3u8?p=GITV&area=JS_CMCC_CP", "http://111.13.42.43/PLTV/88888888/224/3221226438/1.m3u8", "http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225490/1.m3u8", "http://223.110.243.159/ott.js.chinamobile.com/PLTV/3/224/3221227725/index.m3u8$8M1080P", "http://39.134.134.87/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226226/1.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231468/index.m3u8", "rtp://239.253.156.96:8550"]
  2464. }, {
  2465. "name": "CCTV-2",
  2466. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225706/1/index.m3u8?fmt=ts2hls", "http://39.135.138.60:18890/PLTV/88888910/224/3221225643/index.m3u8", "http://39.134.18.82/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226195/index.m3u8$5M1080P50F", "http://ott.js.chinamobile.com/TVOD/3/224/3221228118/index.m3u8", "http://39.130.202.81:6610/gitv_live/G_CCTV-2-HD/G_CCTV-2-HD/.m3u8", "http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225612/1.m3u8", "http://ott.js.chinamobile.com/TVOD/3/224/3221228118/index.m3u8", "http://202.204.118.254/hls/ch3.m3u8", "http://ott.js.chinamobile.com/TVOD/3/224/3221228094/index.m3u8", "http://39.130.202.81:6610/gitv_live/G_CCTV-2-HD/1.m3u8"]
  2467. }, {
  2468. "name": "CCTV-3",
  2469. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226008/1/index.m3u8?fmt=ts2hls", "http://39.135.32.39:6610/000000001000/1000000001000011218/1.m3u8?channel-id=ystenlive&Contentid=1000000001000011218&livemode=1&stbId=005203FF000360100001001A34C0CD33&userToken=4ef1f6fdd53988bdf19472c73151206f21vv&usergroup=g21077200000&version=1.0&owaccma", "http://117.148.179.37/PLTV/88888888/224/3221229875/index.m3u8", "http://39.134.18.82/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226397/index.m3u8$5M1080P50F", "http://111.40.196.9/PLTV/88888888/224/3221225588/index.m3u8", "http://39.130.202.81:6610/gitv_live/iptv-cctv3-hd/chunklist.m3u8", "http://39.130.202.81:6610/gitv_live/CCTV-3/CCTV-3.m3u8?", "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226040/1/index.m3u8?fmt=ts2hls", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/TVOD/88888888/224/3221226040/1/index.m3u8?fmt=ts2hls", "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226008/1/index.m3u8?fmt=ts2hls", "http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225611/1.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231682/index.m3u8"]
  2470. }, {
  2471. "name": "CCTV-4",
  2472. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225779/1/index.m3u8?fmt=ts2hls", "http://39.134.115.163:8080/PLTV/88888910/224/3221225621/index.m3u8", "http://39.134.18.82/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226191/index.m3u8$5M1080P", "http://ott.js.chinamobile.com/TVOD/3/224/3221228156/index.m3u8", "http://39.130.202.81:6610/gitv_live/G_CCTV-4-HD/G_CCTV-4-HD.m3u8", "http://223.110.245.142/ott.js.chinamobile.com/PLTV/3/224/3221227658/index.m3u8$5M1080P", "http://223.111.204.154:8080/gitv_live/G_CCTV-4-CQ/G_CCTV-4-CQ.m3u8?", "http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225610/1.m3u8"]
  2473. }, {
  2474. "name": "CCTV-5",
  2475. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226024/1/index.m3u8?fmt=ts2hls", "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv5/HD-8000k-1080P-cctv5", "http://111.40.196.9/PLTV/88888888/224/3221225743/index.m3u8", "http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225489/1.m3u8", "http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225489/1.m3u8", "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225801/index.m3u8", "http://39.134.39.37/PLTV/88888888/224/3221226146/index.m3u8"]
  2476. }, {
  2477. "name": "CCTV-5+",
  2478. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226171/1/index.m3u8?fmt=ts2hls", "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv05plus/HD-8000k-1080P-cctv05plus", "http://39.134.65.175/PLTV/88888888/224/3221225507/index.m3u8", "http://39.135.138.60:18890/PLTV/88888910/224/3221225649/index.m3u8", "http://39.135.138.60:18890/PLTV/88888910/224/3221225706/index.m3u8", "http://cctvalih5ca.v.myalicdn.com/live/cctv5plus_2/index.m3u8", "http://117.169.124.46:6410/ysten-businessmobile/live/hdcctv05plus/1.m3u8", "http://39.134.65.175/PLTV/88888888/224/3221225507/index.m3u8"]
  2479. }, {
  2480. "name": "CCTV-6",
  2481. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226011/1/index.m3u8?fmt=ts2hls", "http://183.207.248.71:80/cntv/live1/cctv-6/cctv-6", "http://183.207.248.71:80/cntv/live1/cctv-6/cctv-6", "http://223.110.246.70/ott.js.chinamobile.com/PLTV/4/224/3221227430/index.m3u8$8M1080P", "http://39.134.115.163:8080/PLTV/88888910/224/3221225632/index.m3u8$7M1080P", "http://39.134.18.82/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226393/index.m3u8$5M1080P50F", "http://39.135.138.58:18890/PLTV/88888888/224/3221225632/index.m3u8", "http://ott.js.chinamobile.com/TVOD/3/224/3221228185/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225632/index.m3u8", "http://202.204.118.254/hls/ch11.m3u8", "http://cg01.hrtn.net:9090/live/cctv6hd_4000.m3u8", "http://ott.js.chinamobile.com/TVOD/3/224/3221228185/index.m3u8", "http://223.110.244.204:6610/gitv/live1/G_CCTV-6-CQ/G_CCTV-6-CQ/", "http://39.135.138.58:18890/PLTV/88888888/224/3221225632/index.m3u8", "http://223.110.246.70/ott.js.chinamobile.com/PLTV/4/224/3221227430/index.m3u8$8M1080P", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/TVOD/88888888/224/3221226046/1/index.m3u8?fmt=ts2hls", "http://39.134.115.163:8080/PLTV/88888910/224/3221225632/index.m3u8", "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226011/1/index.m3u8?fmt=ts2hls"]
  2482. }, {
  2483. "name": "CCTV-7",
  2484. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225745/1/index.m3u8?fmt=ts2hls",
  2485. "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv7/HD-8000k-1080P-cctv7",
  2486. "http://39.134.24.24/PLTV/88888888/224/3221225855/index.m3u8",
  2487. "http://39.134.24.24/PLTV/88888888/224/3221225768/index.m3u8"
  2488. ]
  2489. }, {
  2490. "name": "CCTV-8",
  2491. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226005/1/index.m3u8?fmt=ts2hls", "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv8/HD-8000k-1080P-cctv8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225635/index.m3u8$4M1080P", "http://39.135.138.59:18890/PLTV/88888910/224/3221225631/index.m3u8", "http://ott.js.chinamobile.com/TVOD/3/224/3221228079/index.m3u8", "http://39.134.18.82/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226391/index.m3u8$5M1080P50F", "http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221227204/index.m3u8$4M1080P", "http://39.134.39.39/PLTV/88888888/224/3221226150/index.m3u8$3M1080P", "http://39.135.137.24:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226008/1.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225666/index.m3u8"]
  2492. }, {
  2493. "name": "CCTV-9",
  2494. "urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225626/index.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225502/index.m3u8", "http://39.135.46.246:6610/PLTV/77777777/224/3221225633/index.m3u8?hls", "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/20200324/cctv9hd/57/index.m3u8?&encrypt=1", "http://39.134.24.24/PLTV/88888888/224/3221225672/index.m3u8"]
  2495. },
  2496. {
  2497. "name": "CCTV-10",
  2498. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225685/1/index.m3u8?fmt=ts2hls",
  2499. "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv10/HD-8000k-1080P-cctv10",
  2500. "http://39.134.24.24/PLTV/88888888/224/3221225823/index.m3u8",
  2501. "http://39.134.24.24/PLTV/88888888/224/3221225782/index.m3u8"
  2502. ]
  2503. },
  2504. {
  2505. "name": "CCTV-11",
  2506. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225746/1/index.m3u8?fmt=ts2hls",
  2507. "http://183.207.248.71:80/cntv/live1/n-cctv-11/n-cctv-11",
  2508. "http://39.134.24.24/PLTV/88888888/224/3221225825/index.m3u8",
  2509. "http://39.134.24.24/PLTV/88888888/224/3221225774/index.m3u8"
  2510. ]
  2511. },
  2512. {
  2513. "name": "CCTV-12",
  2514. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225747/1/index.m3u8?fmt=ts2hls",
  2515. "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv12/HD-8000k-1080P-cctv12",
  2516. "http://39.134.24.24/PLTV/88888888/224/3221225702/index.m3u8"
  2517. ]
  2518. }, {
  2519. "name": "CCTV-13",
  2520. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225748/1/index.m3u8?fmt=ts2hls", "http://183.207.248.71:80/cntv/live1/cctv-13/cctv-13", "http://ott.js.chinamobile.com/TVOD/3/224/3221228224/index.m3u8", "http://newsbsh5ca.v.live.baishancdnx.cn/live/newscctv13_2_900.m3u8", "https://zxtv.herokuapp.com/PLTV/sccn.php?id=CCTV-xw_4000.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225504/index.m3u8", "http://ott.js.chinamobile.com/TVOD/3/224/3221228224/index.m3u8", "http://117.148.179.37/PLTV/88888888/224/3221229690/index.m3u8", "http://223.110.242.200:6610/gitv/live1/G_CCTV-13-CQ/G_CCTV-13-CQ", "http://ott.js.chinamobile.com/TVOD/3/224/3221228121/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225638/index.m3u8$3M1080P", "http://111.13.42.8/PLTV/88888888/224/3221226568/1.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225650/index.m3u8"]
  2521. }, {
  2522. "name": "CCTV-14",
  2523. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225727/1/index.m3u8?fmt=ts2hls",
  2524. "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv14/HD-8000k-1080P-cctv14",
  2525. "http://39.134.24.24/PLTV/88888888/224/3221225857/index.m3u8",
  2526. "http://39.134.24.24/PLTV/88888888/224/3221225658/index.m3u8"
  2527. ]
  2528. },
  2529. {
  2530. "name": "CCTV-15",
  2531. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225749/1/index.m3u8?fmt=ts2hls",
  2532. "http://183.207.248.71:80/cntv/live1/n-cctv-15/n-cctv-15",
  2533. "http://39.134.24.24/PLTV/88888888/224/3221225636/index.m3u8"
  2534. ]
  2535. }, {
  2536. "name": "CCTV-16",
  2537. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225919/index.m3u8?fmt=ts2hls", "http://liveop.cctv.cn/hls/CCTV16HD/playlist.m3u8"]
  2538. },
  2539. {
  2540. "name": "CCTV-17",
  2541. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226027/1/index.m3u8?fmt=ts2hls",
  2542. "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv17/HD-8000k-1080P-cctv17",
  2543. "http://39.134.24.24/PLTV/88888888/224/3221225859/index.m3u8"
  2544. ]
  2545. }
  2546. ]
  2547. },
  2548. {
  2549. "group": "省级卫视",
  2550. "channels": [{
  2551. "name": "北京卫视",
  2552. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225754/1/index.m3u8?fmt=ts2hls", "http://223.110.246.72/ott.js.chinamobile.com/PLTV/4/224/3221227694/index.m3u8$4M1080P", "http://223.110.246.72/ott.js.chinamobile.com/PLTV/4/224/3221227694/index.m3u8", "http://223.110.244.200:6610/gitv/live1/G_BEIJING-CQ/G_BEIJING-CQ/", "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226436/1.m3u8", "http://39.134.39.37/PLTV/88888888/224/3221226161/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225646/index.m3u8"]
  2553. }, {
  2554. "name": "深圳卫视",
  2555. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225712/1/index.m3u8?fmt=ts2hls", "http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-shenzhenstv/HD-2500k-1080P-shenzhenstv", "http://223.110.246.71/ott.js.chinamobile.com/PLTV/4/224/3221227695/index.m3u8", "http://223.110.244.148:6610/gitv/live1/G_SHENZHEN-CQ/G_SHENZHEN-CQ/", "http://39.134.39.37/PLTV/88888888/224/3221226199/index.m3u8", "http://39.134.39.39/PLTV/88888888/224/3221226199/index.m3u8", "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226245/1.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225602/index.m3u8"]
  2556. }, {
  2557. "name": "东方卫视",
  2558. "urls": ["http://223.110.243.142/ott.js.chinamobile.com/PLTV/3/224/3221227597/index.m3u8", "http://223.110.242.152:6610/gitv/live1/G_DONGFANG-CQ/G_DONGFANG-CQ/", "http://39.135.138.59:18890/PLTV/88888910/224/3221225658/index.m3u8", "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226237/1.m3u8", "http://39.135.138.59:18890/PLTV/88888910/224/3221225658/index.m3u8", "http://39.135.138.59:18890/PLTV/88888910/224/3221225659/index.m3u8", "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/hddfws/2300000/mnf.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225542/index.m3u8"]
  2559. }, {
  2560. "name": "江苏卫视",
  2561. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225751/1/index.m3u8?fmt=ts2hls", "http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-jiangsustv/HD-2500k-1080P-jiangsustv", "http://223.110.246.82/ott.js.chinamobile.com/PLTV/4/224/3221227689/index.m3u8", "http://223.110.242.158:6610/gitv/live1/G_JIANGSU-CQ/G_JIANGSU-CQ/", "http://111.40.196.9/PLTV/88888888/224/3221225596/index.m3u8", "http://39.135.138.59:18890/PLTV/88888910/224/3221225743/index.m3u8", "http://39.134.18.82/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225800/index.m3u8$3M1080P", "http://117.148.179.160/PLTV/88888888/224/3221231447/index.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225578/index.m3u8"]
  2562. }, {
  2563. "name": "浙江卫视",
  2564. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225750/1/index.m3u8?fmt=ts2hls", "http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225780/1/index.m3u8?fmt=ts2hls", "http://223.110.246.73/ott.js.chinamobile.com/PLTV/4/224/3221227692/index.m3u8$4M1080P", "http://39.134.18.82/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225798/index.m3u8$3M1080P", "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225612/1.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225538/index.m3u8"]
  2565. }, {
  2566. "name": "天津卫视",
  2567. "urls": ["http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-tianjinstv/HD-2500k-1080P-tianjinstv", "http://117.148.179.37/PLTV/88888888/224/3221228818/index.m3u8", "http://cdn2.ynumc.com:8278/tjws/playlist.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225756/1/index.m3u8?fmt=ts2hls"]
  2568. }, {
  2569. "name": "安徽卫视",
  2570. "urls": ["http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-anhuistv/HD-8000k-1080P-anhuistv", "http://39.134.39.39/PLTV/88888888/224/3221226205/index.m3u8", "http://39.135.138.59:18890/PLTV/88888910/224/3221225691/index.m3u8", "http://39.134.39.37/PLTV/88888888/224/3221226205/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225638/index.m3u8"]
  2571. }, {
  2572. "name": "辽宁卫视",
  2573. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225717/1/index.m3u8?fmt=ts2hls", "http://ott.js.chinamobile.com/TVOD/3/224/3221228162/index.m3u8", "http://39.135.138.59:18890/PLTV/88888910/224/3221225696/index.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225593/index.m3u8"]
  2574. }, {
  2575. "name": "黑龙江卫视",
  2576. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225758/1/index.m3u8?fmt=ts2hls", "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-heilongjiangstv/HD-8000k-1080P-heilongjiangstv", "http://39.135.138.59:18890/PLTV/88888910/224/3221225736/index.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225539/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231967/index.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225541/index.m3u8"]
  2577. }, {
  2578. "name": "吉林卫视",
  2579. "urls": ["http://39.136.66.39/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225753/1/index.m3u8?fmt=ts2hls", "rtsp://183.252.166.199/PLTV/88888888/224/3221226792/48616745.smil", "http://39.134.24.24/PLTV/88888888/224/3221225804/index.m3u8"]
  2580. }, {
  2581. "name": "山东卫视",
  2582. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225728/1/index.m3u8?fmt=ts2hls", "http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-shandongstv/HD-2500k-1080P-shandongstv", "http://59.49.111.212/live.aishang.ctlcdn.com/00000110240254_1/encoder/0/playlist.m3u8?CONTENTID=00000110240254_1", "http://39.135.138.59:18890/PLTV/88888910/224/3221225697/index.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225546/index.m3u8"]
  2583. }, {
  2584. "name": "重庆卫视",
  2585. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225686/1/index.m3u8?fmt=ts2hls", "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-chongqingstv/HD-8000k-1080P-chongqingstv", "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-chongqingstv/HD-8000k-1080P-chongqingstv", "http://39.135.138.59:18890/PLTV/88888910/224/3221225734/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225592/index.m3u8"]
  2586. }, {
  2587. "name": "东南卫视",
  2588. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225739/1/index.m3u8?fmt=ts2hls", "http://183.207.248.71:80/cntv/live1/n-dongnanstv/n-dongnanstv", "http://39.135.138.59:18890/PLTV/88888910/224/3221225657/index.m3u8", "http://223.110.243.162/ott.js.chinamobile.com/PLTV/3/224/3221227553/index.m3u8$4M1080P", "http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226496/1.m3u8"]
  2589. }, {
  2590. "name": "江西卫视",
  2591. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225710/1/index.m3u8?fmt=ts2hls", "http://183.207.248.71:80/cntv/live1/jiangxistv/jiangxistv", "http://39.134.39.39/PLTV/88888888/224/3221226207/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231964/index.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225591/index.m3u8"]
  2592. }, {
  2593. "name": "海峡卫视",
  2594. "urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226128/10000100000000060000000002434539_0.smil"]
  2595. }, {
  2596. "name": "广西卫视",
  2597. "urls": ["http://39.130.202.76:6610/gitv_live/G_GUANGXI-HD/G_GUANGXI-HD.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225518/index.m3u8"]
  2598. }, {
  2599. "name": "贵州卫视",
  2600. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225703/1/index.m3u8?fmt=ts2hls", "http://cdn2.ynumc.com:8278/gzws/playlist.m3u8", "http://39.130.202.76:6610/gitv_live/G_GUIZHOU-HD/G_GUIZHOU-HD.m3u8", "http://cdn1.ynumc.com:8278/gzws/playlist.m3u8"]
  2601. }, {
  2602. "name": "河北卫视",
  2603. "urls": ["http://ott.js.chinamobile.com/TVOD/3/224/3221228159/index.m3u8", "http://39.134.66.66/PLTV/88888888/224/3221225867/index.m3u8", "http://39.134.66.66/PLTV/88888888/224/3221225867/index.m3u8"]
  2604. }, {
  2605. "name": "河南卫视",
  2606. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225709/1/index.m3u8?fmt=ts2hls", "http://ott.js.chinamobile.com/TVOD/3/224/3221228221/index.m3u8", "rtsp://183.252.176.54:554/PLTV/88888888/224/3221226076/10000100000000060000000002296917_0.smil", "http://39.134.24.24/PLTV/88888888/224/3221225716/index.m3u8"]
  2607. }, {
  2608. "name": "湖北卫视",
  2609. "urls": ["http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-hubeistv/HD-2500k-1080P-hubeistv", "http://39.135.138.59:18890/PLTV/88888910/224/3221225699/index.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225566/index.m3u8"]
  2610. }, {
  2611. "name": "云南卫视",
  2612. "urls": ["rtsp://183.252.176.54:554/PLTV/88888888/224/3221226108/10000100000000060000000002310150_0.smil", "http://183.207.248.71:80/cntv/live1/n-yntv1/n-yntv1", "rtsp://183.252.166.199/PLTV/88888888/224/3221226108/10000100000000060000000002310150_0.smil", "http://39.134.24.24/PLTV/88888888/224/3221225696/index.m3u8"]
  2613. }, {
  2614. "name": "青海卫视",
  2615. "urls": ["http://live.geermurmt.com/qhws/sd/live.m3u8", "http://183.207.248.71:80/cntv/live1/n-qinghaistv/n-qinghaistv", "http://39.134.24.24/PLTV/88888888/224/3221225606/index.m3u8"]
  2616. }, {
  2617. "name": "广东卫视",
  2618. "urls": ["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225720/1/index.m3u8?fmt=ts2hls", "http://183.207.248.71:80/cntv/live1/n-guangdongstv/n-guangdongstv", "http://39.135.138.60:18890/PLTV/88888910/224/3221225701/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225692/index.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225533/index.m3u8", "http://111.40.196.9/PLTV/88888888/224/3221225531/index.m3u8"]
  2619. }]
  2620. },
  2621. {
  2622. "group": "经典回顾",
  2623. "channels": [{
  2624. "name": "辽宁春晚",
  2625. "urls": ["http://epg.112114.xyz/douyu/9322175"]
  2626. }, {
  2627. "name": "水浒",
  2628. "urls": ["http://epg.112114.xyz/douyu/3758762"]
  2629. }, {
  2630. "name": "西游记",
  2631. "urls": ["http://epg.112114.xyz/douyu/9518204"]
  2632. }, {
  2633. "name": "三国演义",
  2634. "urls": ["http://epg.112114.xyz/douyu/434971"]
  2635. }, {
  2636. "name": "隋唐寅义",
  2637. "urls": ["http://epg.112114.xyz/douyu/7552568"]
  2638. }, {
  2639. "name": "神乐华语4Y",
  2640. "urls": ["http://epg.112114.xyz/douyu/85894", "http://epg.112114.xyz/douyu/122402", "http://epg.112114.xyz/douyu/20415", "http://epg.112114.xyz/douyu/6566671"]
  2641. }, {
  2642. "name": "贝爷影院4Y",
  2643. "urls": ["http://epg.112114.xyz/douyu/4332", "http://epg.112114.xyz/douyu/252802", "http://epg.112114.xyz/douyu/36337", "http://epg.112114.xyz/douyu/925724"]
  2644. }, {
  2645. "name": "国语译制",
  2646. "urls": ["http://epg.112114.xyz/douyu/2436390"]
  2647. }, {
  2648. "name": "金庸",
  2649. "urls": ["http://epg.112114.xyz/douyu/338759"]
  2650. }, {
  2651. "name": "香港赌片",
  2652. "urls": ["http://epg.112114.xyz/douyu/315457"]
  2653. }, {
  2654. "name": "经典喜剧",
  2655. "urls": ["http://epg.112114.xyz/douyu/9650887"]
  2656. }, {
  2657. "name": "周末经典",
  2658. "urls": ["http://epg.112114.xyz/douyu/3637765"]
  2659. }, {
  2660. "name": "女神金",
  2661. "urls": ["http://epg.112114.xyz/douyu/747764"]
  2662. }, {
  2663. "name": "特辑影院",
  2664. "urls": ["http://epg.112114.xyz/douyu/3637778"]
  2665. }, {
  2666. "name": "国产大片",
  2667. "urls": ["http://epg.112114.xyz/douyu/8986148"]
  2668. }]
  2669. }, {
  2670. "group": "弯弯的月亮",
  2671. "channels": [{
  2672. "name": "中天新闻",
  2673. "urls": ["http://211.23.114.106:8541/http/60.251.39.91:8081/hls/78/80/ch63max.m3u8", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv009"]
  2674. }, {
  2675. "name": "TVBS HD",
  2676. "urls": ["http://211.23.114.106:8545/http/116.50.42.19:8081/hls/64/806/ch15.m3u8"]
  2677. }, {
  2678. "name": "東森新聞",
  2679. "urls": ["http://211.23.114.106:8540/http/60.251.39.91:8081/hls/63/805/ch10.m3u8", "http://66.90.88.132:8080/hls/ph00319/index.m3u8", "rtmp://45.88.148.178/channel/6100144cf0618408855f36e1?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2680. }, {
  2681. "name": "环宇新闻",
  2682. "urls": ["http://211.23.114.106:8547/http/116.50.42.19:8081/hls/76/818/ch62.m3u8", "http://58.99.33.16:1935/liveedge17/live_163_3.stream/chunklist.m3u8", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn15"]
  2683. }, {
  2684. "name": "年代新聞",
  2685. "urls": ["http://211.23.114.106:8517/http/60.251.39.91:8081/hls/67/809/ch27.m3u8"]
  2686. }, {
  2687. "name": "壹新闻",
  2688. "urls": ["http://211.23.114.106:8548/http/116.50.42.19:8081/hls/66/808/ch24.m3u8", "http://50.7.61.147:30080/Entry/etv"]
  2689. }, {
  2690. "name": "民视新闻",
  2691. "urls": ["http://211.23.114.106:8542/http/60.251.39.91:8081/hls/73/815/ch51.m3u8", "http://66.90.88.132:8080/hls/ph00322/index.m3u8"]
  2692. }, {
  2693. "name": "中視新聞",
  2694. "urls": ["http://66.90.88.132:8080/hls/ph00323/index.m3u8"]
  2695. },
  2696. {
  2697. "name": "台視新聞",
  2698. "urls": ["http://66.90.88.132:8080/hls/ph00324/index.m3u8"]
  2699. },
  2700. {
  2701. "name": "华視新聞",
  2702. "urls": ["http://66.90.88.132:8080/hls/ph00325/index.m3u8"]
  2703. },
  2704. {
  2705. "name": "三立新聞",
  2706. "urls": ["http://211.23.114.106:8543/http/60.251.39.91:8081/hls/65/807/ch18.m3u8", "http://66.90.88.132:8080/hls/ph00320/index.m3u8"]
  2707. }, {
  2708. "name": "東森綜合",
  2709. "urls": ["http://211.23.114.106:8524/http/60.251.39.91:8081/hls/63/805/ch12.m3u8", "rtmp://45.88.148.122/channel/60b4e50239e1b02e8b910d86?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2710. }, {
  2711. "name": "東森戲劇",
  2712. "urls": ["http://211.23.114.106:8530/http/60.251.39.91:8081/hls/64/806/ch13.m3u8", "rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d88", "rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d88?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2713. }, {
  2714. "name": "八大第一",
  2715. "urls": ["http://211.23.114.106:8536/http/61.221.81.94:8088/hls/66/808/ch22.m3u8", "rtmp://104.149.131.118/channel/60c31d07961593122ebaf92d?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2716. }, {
  2717. "name": "八大綜合",
  2718. "urls": ["http://211.23.114.106:8520/http/61.221.81.94:8088/hls/66/808/ch21.m3u8", "rtmp://45.83.118.242/channel/60c31c5a961593122ebaf92b?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv039"]
  2719. }, {
  2720. "name": "八大戲劇",
  2721. "urls": ["http://211.23.114.106:8531/http/60.251.39.91:8081/hls/66/808/ch23.m3u8", "rtmp://45.83.118.242/channel/60c31d53961593122ebaf92f?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2722. }, {
  2723. "name": "八大娛樂",
  2724. "urls": ["rtmp://45.88.148.122/channel/60c31db1961593122ebaf931?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2725. }, {
  2726. "name": "八大精彩",
  2727. "urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv034"]
  2728. }, {
  2729. "name": "TVBS歡樂台",
  2730. "urls": ["rtmp://9wv7.mine.nu/sat/tv421", "rtmp://59.124.75.138/sat/tv421", "rtmp://59.124.75.138:1935/sat/tv421", "http://211.23.114.106:8532/http/60.251.39.91:8081/hls/65/807/ch17.m3u8", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv068"]
  2731. }, {
  2732. "name": "WAKUWAKUJAPAN",
  2733. "urls": ["http://211.23.114.106:8538/http/60.251.39.91:8081/hls/61/803/ch03.m3u8"]
  2734. }, {
  2735. "name": "中天娱乐",
  2736. "urls": ["http://211.23.114.106:8527/http/60.251.39.91:8081/hls/67/809/ch26.m3u8"]
  2737. }
  2738. ]
  2739. }, {
  2740. "group": "弯弯的太阳",
  2741. "channels": [{
  2742. "name": "CNN",
  2743. "urls": ["https://cnn-cnninternational-1-de.samsung.wurl.com/manifest/playlist_1280x720_3000k.m3u8"]
  2744. }, {
  2745. "name": "VOA",
  2746. "urls": ["https://voa-lh.akamaihd.net/i/voa_mpls_tvmc6@320298/index_1080_av-p.m3u8?sd=10&rebase=on"]
  2747. }, {
  2748. "name": "BBC",
  2749. "urls": ["http://103.199.161.254/Content/bbcworld/Live/Channel(BBCworld)/index.m3u8"]
  2750. }, {
  2751. "name": "CNBC",
  2752. "urls": ["http://211.23.114.106:8550/http/116.50.42.19:8078/hls/24/80/cnbc90.m3u8"]
  2753. }, {
  2754. "name": "DW",
  2755. "urls": ["https://dwamdstream102.akamaized.net/hls/live/2015525/dwstream102/stream05/streamPlaylist.m3u8"]
  2756. }, {
  2757. "name": "FOX NEWS",
  2758. "urls": ["https://fox-foxnewsnow-samsungus.amagi.tv/playlist.m3u8"]
  2759. }, {
  2760. "name": "sky新聞",
  2761. "urls": ["http://66.90.88.132:8080/hls/ph00212/index.m3u8"]
  2762. },
  2763. {
  2764. "name": "NHK",
  2765. "urls": ["http://211.23.114.106:8552/http/116.50.42.19:8081/hls/62/804/ch06.m3u8", "http://210.210.155.35:80/uq2663/h/h19/01.m3u8", "https://nhkwlive-ojp.akamaized.net/hls/live/2003459/nhkwlive-ojp-en/index_4M.m3u8",
  2766. "https://nhkw-zh-hlscomp.akamaized.net/8thz5iufork8wjip/playlist.m3u8"
  2767. ]
  2768. }, {
  2769. "name": "Bloomberg",
  2770. "urls": ["http://211.23.114.106:8551/http/116.50.42.19:8078/hls/43/80/bloomber.m3u8"]
  2771. }, {
  2772. "name": "JPKINO",
  2773. "urls": ["https://movie.mcas.jp/mcas/smil:wn1.smil/master.m3u8",
  2774. "http://movie.mcas.jp/mcas/wn1_2/master.m3u8"
  2775. ]
  2776. }, {
  2777. "name": "NHK 华语",
  2778. "urls": ["https://nhkworld.webcdn.stream.ne.jp/www11/nhkworld-tv/zh/725580/livecom_zh.m3u8", "https://nhkw-zh-hlscomp.akamaized.net/8thz5iufork8wjip/playlist.m3u8"]
  2779. },
  2780. {
  2781. "name": "全天新闻 日",
  2782. "urls": [
  2783. "https://n24-cdn-live.ntv.co.jp/ch01/index.m3u8", "https://n24-cdn-live.ntv.co.jp/ch01/High.m3u8",
  2784. "http://www.news24.jp/livestream/index.m3u8"
  2785. ]
  2786. },
  2787. {
  2788. "name": "Animax HD",
  2789. "urls": [
  2790. "https://livecdn.fptplay.net/hda3/animaxport_hls.smil/chunklist.m3u8"
  2791. ]
  2792. },
  2793. {
  2794. "name": "Atx",
  2795. "urls": [
  2796. "https://sub2.neetball.net/live/neet.m3u8"
  2797. ]
  2798. },
  2799. {
  2800. "name": "Gunma",
  2801. "urls": [
  2802. "https://movie.mcas.jp/switcher/smil:mcas8.smil/master.m3u8"
  2803. ]
  2804. },
  2805. {
  2806. "name": "宝石GHTV",
  2807. "urls": [
  2808. "https://gemstv.wide-stream.net/gemstv01/smil:gemstv01.smil/chunklist_w1860888413_b600000.m3u8"
  2809. ]
  2810. },
  2811. {
  2812. "name": "声优广播",
  2813. "urls": [
  2814. "http://www.uniqueradio.jp/agplayerf/hls/Active.m3u8"
  2815. ]
  2816. },
  2817. {
  2818. "name": "QVC",
  2819. "urls": [
  2820. "http://cdn-live1.qvc.jp/iPhone/800/800.m3u8"
  2821. ]
  2822. }
  2823. ]
  2824. },{
  2825. "group": "CCCP Золотая коллекция",
  2826. "channels": [{
  2827. "name": "CCCP HD",
  2828. "urls": ["http://s1.sr-vk.online/online/sssrhd/index.m3u8?cur=kuku_5065&key=7c58j770jilig80ek0i2ce6"]
  2829. }, {
  2830. "name": "СССР 1",
  2831. "urls": ["http://s1.sr-vk.online/online/sssr1/index.m3u8?cur=kuku_5065&key=63gkd9cbecela86g6g20226"]
  2832. }, {
  2833. "name": "СССР 2",
  2834. "urls": ["http://s1.sr-vk.online/online/sssr2/index.m3u8?cur=kuku_5065&key=66cee4al07248cia2i828k6"]
  2835. }, {
  2836. "name": "СССР",
  2837. "urls": ["http://s1.sr-vk.online/online/sssr/index.m3u8?cur=kuku_5065&key=780ai0l4efdfa8268ei0ac6"]
  2838. }, {
  2839. "name": "МОСФИЛЬМ",
  2840. "urls": ["http://s1.sr-vk.online/online/mosfilm/index.m3u8?cur=kuku_5065&key=1f6e692i6cl4g20kc80a4e7","http://31.128.129.224:4023/udp/239.1.10.22:1234?22"]
  2841. }, {
  2842. "name": "Беларусьфильм",
  2843. "urls": ["http://s1.sr-vk.online/online/belarusfilm/index.m3u8?cur=kuku_5065&key=1f3kijf6kakhekcik2ii806"]
  2844. }, {
  2845. "name": "ЛЕНФИЛЬМ",
  2846. "urls": ["http://s1.sr-vk.online/online/lenfilm/index.m3u8?cur=kuku_5065&key=476hdhh4119e0k604c8i8g6"]
  2847. },
  2848. {
  2849. "name": "Комедия СССР",
  2850. "urls": ["http://s1.sr-vk.online/online/comedy/index.m3u8?cur=kuku_5065&key=2efk8je30b19ik4ckgaag66"]
  2851. },
  2852. {
  2853. "name": "Cоветский дубляж",
  2854. "urls": ["http://s1.sr-vk.online/online/zarubez/index.m3u8?cur=kuku_5065&key=6gbe2b9hi7680g6a0c88ai12"]
  2855. },{
  2856. "name": "Милицейский канал",
  2857. "urls": ["http://s1.sr-vk.online/online/mentfilm/index.m3u8?cur=kuku_5065&key=6k7ahf9i8b8b6kci00e0406"]
  2858. }, {
  2859. "name": "Украинская ССР",
  2860. "urls": ["http://s1.sr-vk.online/online/ussr/index.m3u8?cur=kuku_5065&key=7194h07elfe3k84g6022686"]
  2861. }, {
  2862. "name": "Фильмы 90x",
  2863. "urls": ["http://s1.sr-vk.online/online/90x/index.m3u8?cur=kuku_5065&key=2kga8e27e75gci4a082kg47"]
  2864. }, {
  2865. "name": "Мульт",
  2866. "urls": ["http://s1.sr-vk.online/online/mult/index.m3u8?cur=kuku_5065&key=31egg5ga436d2022c2k64g7"]
  2867. }, {
  2868. "name": "Киностудия М.Горького",
  2869. "urls": ["http://s1.sr-vk.online/online/gor/index.m3u8?cur=kuku_5065&key=45da80jl4ieh20i2a664ei7"]
  2870. }, {
  2871. "name": "Свердловская киностудия",
  2872. "urls": ["http://s1.sr-vk.online/online/sverdlovsk/index.m3u8?cur=kuku_5065&key=80f61ga2j2172kig24042a7"]
  2873. }, {
  2874. "name": "Рижская киностудия",
  2875. "urls": ["http://s1.sr-vk.online/online/riga/index.m3u8?cur=kuku_5065&key=159ih8bacfl96ge844e0a67"]
  2876. }, {
  2877. "name": "Одесская киностудия",
  2878. "urls": ["http://s1.sr-vk.online/online/odessa/index.m3u8?cur=kuku_5065&key=11jgbcg9hj9hc2i28ka8ii7"]
  2879. }
  2880. ]
  2881. }
  2882. ],
  2883. "parses": [{
  2884. "name": "Json并发",
  2885. "type": 2,
  2886. "url": "Parallel"
  2887. }, {
  2888. "name": "瓜瓜优选",
  2889. "type": 2,
  2890. "url": "Preference"
  2891. }, {
  2892. "name": "Json轮询",
  2893. "type": 2,
  2894. "url": "Sequence"
  2895. }, {
  2896. "name": "瓜瓜免嗅",
  2897. "type": 2,
  2898. "url": "Cucumber"
  2899. }, {
  2900. "name": "看剧吧1",
  2901. "type": 1,
  2902. "url": "https://svip.renrenmi.cc:2222/api/?key=fI3YQ3vxF5uREfNpDU&url=",
  2903. "t": 204,
  2904. "i": "checkat2021-12-2018:43:35"
  2905. }, {
  2906. "name": "影阅阁",
  2907. "type": 1,
  2908. "url": "http://api1.json.vin:4433/api/?key=WPDh6vf0aT0ahepWzW&url=",
  2909. "t": 721,
  2910. "i": "check at 2021-12-28 19:44:27"
  2911. }, {
  2912. "name": "影阅阁1",
  2913. "type": 1,
  2914. "url": "https://json.pangujiexi.com:12345/json.php?url=",
  2915. "t": 184,
  2916. "i": "check at 2021-12-28 19:44:30"
  2917. }, {
  2918. "name": "影阅阁2",
  2919. "type": 1,
  2920. "url": "https://svip.renrenmi.cc:2222/api/?key=82KErJogweliHPt7Yp&url=",
  2921. "t": 123,
  2922. "i": "check at 2021-12-28 19:44:31"
  2923. }, {
  2924. "name": "影阅阁3",
  2925. "type": 1,
  2926. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=594615&key=bcehpqtxCEGKMT0248&url=",
  2927. "t": 236,
  2928. "i": "check at 2021-12-28 19:44:31"
  2929. }, {
  2930. "name": "影阅阁3",
  2931. "type": 1,
  2932. "url": "https://svip.renrenmi.cc:2222/api/?key=82KErJogweliHPt7Yp&url=",
  2933. "t": 235,
  2934. "i": "checkat2021-12-2018:44:00"
  2935. }, {
  2936. "name": "艾特影视",
  2937. "type": 1,
  2938. "url": "http://kelejiexi.aitee.cc/api/?key=Q5eOz72aSDAfZgbZit&url=",
  2939. "t": 522,
  2940. "i": "checkat2021-12-2018:44:31"
  2941. }, {
  2942. "name": "抹茶猪",
  2943. "type": 1,
  2944. "url": "https://svip.renrenmi.cc:2222/api/?key=mmh63jk67yRHfWc8lE&url=",
  2945. "t": 564,
  2946. "i": "checkat2021-12-2018:42:55"
  2947. }, {
  2948. "name": "月色影视",
  2949. "type": 1,
  2950. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=7743764&key=acgjlopuxACEHJLT48&url=",
  2951. "t": 565,
  2952. "i": "checkat2021-12-2018:43:24"
  2953. }, {
  2954. "name": "4K影院1",
  2955. "type": 1,
  2956. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1095368&key=cdgjpsuDFLNRTUVY03&url=",
  2957. "t": 583,
  2958. "i": "checkat2021-12-2018:43:30"
  2959. }, {
  2960. "name": "土豆TV",
  2961. "type": 1,
  2962. "url": "https://cs.024zs.com:4433/api/?key=mqGHkqM4qxhV5ddEzg&url=",
  2963. "t": 588,
  2964. "i": "checkat2021-12-2018:42:58"
  2965. }, {
  2966. "name": "段友影视",
  2967. "type": 1,
  2968. "url": "http://1.12.218.245/1696263602.php/?url=",
  2969. "t": 589,
  2970. "i": "check at 2021-12-20 18:43:44"
  2971. }, {
  2972. "name": "播放呀",
  2973. "type": 1,
  2974. "url": "https://i.hexh.ink/home/api?type=ys&uid=1767561&key=bdelmsvwBDEHMNQXYZ&url=",
  2975. "t": 591,
  2976. "i": "check at 2021-12-20 18:44:16"
  2977. }, {
  2978. "name": "蓝光视频",
  2979. "type": 1,
  2980. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1931000&key=gktuvyzABEORSYZ135&url=",
  2981. "t": 619,
  2982. "i": "check at 2021-12-20 18:43:48"
  2983. }, {
  2984. "name": "筋斗云",
  2985. "type": 1,
  2986. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1494542&key=ijmqvwxABEHILMOT48&url=",
  2987. "t": 621,
  2988. "i": "check at 2021-12-20 18:43:06"
  2989. }, {
  2990. "name": "追剧吧2",
  2991. "type": 1,
  2992. "url": "https://cs.024zs.com:4433/api/?key=YWgNNsISMq3Au9YhcH&url=",
  2993. "t": 632,
  2994. "i": "check at 2021-12-20 18:42:56"
  2995. }, {
  2996. "name": "看剧吧",
  2997. "type": 1,
  2998. "url": "http://vip.mengx.vip/home/api?type=ys&uid=3714324&key=adhmprtwyzBCHLSUX1&url=",
  2999. "t": 645,
  3000. "i": "check at 2021-12-20 18:43:35"
  3001. }, {
  3002. "name": "小强TV",
  3003. "type": 1,
  3004. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=867242&key=bchmpswDGLOQTXZ168&url=",
  3005. "t": 650,
  3006. "i": "check at 2021-12-20 18:42:58"
  3007. }, {
  3008. "name": "段友影视",
  3009. "type": 1,
  3010. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=998036&key=afhlnuvzDJLMOX3689&url=",
  3011. "t": 701,
  3012. "i": "check at 2021-12-20 18:43:40"
  3013. }, {
  3014. "name": "抹茶猪1",
  3015. "type": 1,
  3016. "url": "https://json.nbjx.vip:4399/?wap=0&url=",
  3017. "t": 705,
  3018. "i": "check at 2021-12-20 18:42:56"
  3019. }, {
  3020. "name": "疯狂看",
  3021. "type": 1,
  3022. "url": "https://a.zhuijula.top/yun_api.php?url=",
  3023. "t": 706,
  3024. "i": "check at 2021-12-20 18:44:28"
  3025. }, {
  3026. "name": "01",
  3027. "type": 0,
  3028. "url": "https://play.tkys.tv/?url="
  3029. }, {
  3030. "name": "02",
  3031. "type": 0,
  3032. "url": "https://jx.ysgc.xyz/?url="
  3033. }, {
  3034. "name": "03",
  3035. "type": 0,
  3036. "url": "https://jx.ysgc.xyz/?url="
  3037. }, {
  3038. "name": "04",
  3039. "type": 0,
  3040. "url": "http://dm.199cn.cn/vip/?url="
  3041. }, {
  3042. "name": "05",
  3043. "type": 0,
  3044. "url": "https://vip.2ktvb.com/player/?url="
  3045. }, {
  3046. "name": "m3u8",
  3047. "url": "https://jx.m3u8.tv/jiexi/?url="
  3048. },
  3049. {
  3050. "name": "003",
  3051. "type": 1,
  3052. "url": "http://47.94.137.151:8089/?url="
  3053. }, {
  3054. "name": "parwix",
  3055. "url": "https://jx.parwix.com:4433/player/?url="
  3056. }, {
  3057. "name": "易看",
  3058. "url": "https://analysis.yikan.one/analysis/player/?uid=8&my=fjkmoqFJLORTVZ1359&url="
  3059. },
  3060. {
  3061. "name": "追剧达人",
  3062. "url": "https://vip123kan.vip/m3u8.php?url="
  3063. }, {
  3064. "name": "虾米",
  3065. "url": "https://jx.xmflv.com/?url="
  3066. },
  3067. {
  3068. "name": "专用1",
  3069. "type": 1,
  3070. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1285201&key=bcikqtwxyADEGKUX36&url="
  3071. },
  3072. {
  3073. "name": "专用2",
  3074. "type": 1,
  3075. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1494542&key=ijmqvwxABEHILMOT48&url="
  3076. },
  3077. {
  3078. "name": "专用3",
  3079. "type": 1,
  3080. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1931000&key=gktuvyzABEORSYZ135&url="
  3081. },
  3082. {
  3083. "name": "专用4",
  3084. "type": 1,
  3085. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1095368&key=cdgjpsuDFLNRTUVY03&url="
  3086. },
  3087. {
  3088. "name": "专用5",
  3089. "type": 1,
  3090. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1095368&key=cdgjpsuDFLNRTUVY03&url="
  3091. },
  3092. {
  3093. "name": "专用6",
  3094. "type": 1,
  3095. "url": "https://api.qq755758836.xyz/295m3u8.php?url="
  3096. },
  3097. {
  3098. "name": "专用7",
  3099. "type": 1,
  3100. "url": " http://jx.kuanjv.com/mp4/5.1?url="
  3101. },{
  3102. "name": "猫群专用1",
  3103. "type": 1,
  3104. "url": "https://jhjx.kuanjv.com/?url="
  3105. }, {
  3106. "name": "猫群专用2",
  3107. "type": 1,
  3108. "url": "https://vip.kpjx.cc/api/?key=VU93wdaptITbCRaVbG&url="
  3109. }, {
  3110. "name": "猫群专用3",
  3111. "type": 1,
  3112. "url": "http://ts.yjhan.com:8090/api/?key=njU0bfiF05eODFfktq&url="
  3113. }, {
  3114. "name": "猫群专用4",
  3115. "type": 1,
  3116. "url": "https://jx.parwix.com:4433/player/?url="
  3117. }, {
  3118. "name": "猫群专用5",
  3119. "type": 1,
  3120. "url": "http://120.77.94.20/jx?url="
  3121. }, {
  3122. "name": "猫群专用6",
  3123. "type": 1,
  3124. "url": "https://svip.msdv.cn/api/?key=YAUhZt7TmZg2BUTQC2&url="
  3125. }, {
  3126. "name": "猫群专用7",
  3127. "type": 1,
  3128. "url": "http://ts.yjhan.com:8090/api/?key=1BVRnXqJv5WOma49ti&url="
  3129. }, {
  3130. "name": "猫群专用8",
  3131. "type": 1,
  3132. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1931000&key=gktuvyzABEORSYZ135&url="
  3133. },{
  3134. "name": "01",
  3135. "type": 1,
  3136. "url": "http://cx99999.cn/rxjson.php?url="
  3137. }, {
  3138. "name": "02",
  3139. "type": 1,
  3140. "url": "https://jx.renrenmi.cc/?url="
  3141. }, {
  3142. "name": "03",
  3143. "type": 1,
  3144. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1931000&key=gktuvyzABEORSYZ135&url="
  3145. }, {
  3146. "name": "04",
  3147. "type": 1,
  3148. "url": "https://lt.kpjx.cc/Mao.php?url="
  3149. }, {
  3150. "name": "05",
  3151. "type": 1,
  3152. "url": "https://vip.aiaine.com/api/?key=XiRCZOXcjcpxDI3spr&url="
  3153. }, {
  3154. "name": "06",
  3155. "type": 1,
  3156. "url": "http://47.113.126.237:1234/jiexi/meitian.php/?url="
  3157. }, {
  3158. "name": "07",
  3159. "type": 1,
  3160. "url": "http://47.100.138.210:92/?url="
  3161. }, {
  3162. "name": "08",
  3163. "type": 1,
  3164. "url": "http://47.100.138.210:91/home/api?type=ys&uid=7593435&key=ehortuyAHMNQTWX457&url="
  3165. }, {
  3166. "name": "09",
  3167. "type": 1,
  3168. "url": "https://jx.kupu.cc/json/jxbanyung.php/?url="
  3169. }, {
  3170. "name": "10",
  3171. "type": 1,
  3172. "url": "https://jsap.attakids.com/?url="
  3173. }, {
  3174. "name": "21",
  3175. "type": 1,
  3176. "url": "https://vip.bljiex.com/?url="
  3177. }, {
  3178. "name": "22",
  3179. "type": 1,
  3180. "url": "https://player.s9d.cn/?url="
  3181. }, {
  3182. "name": "23",
  3183. "type": 1,
  3184. "url": "https://jhpc.manduhu.com/j1217.php?url="
  3185. }, {
  3186. "name": "24",
  3187. "type": 1,
  3188. "url": "https://app.okmedcos.com/4k/?url="
  3189. }, {
  3190. "name": "25",
  3191. "type": 1,
  3192. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=7631191&key=cdemqsxFGKLNRVXYZ9&url="
  3193. }, {
  3194. "name": "ok3389",
  3195. "url": "https://api.okjx.cc:3389/jx.php?url="
  3196. },
  3197. {
  3198. "name": "游艺",
  3199. "url": "https://api.u1o.net/?url="
  3200. }, {
  3201. "name": "Preference",
  3202. "type": 1,
  3203. "url": "qq#段友影视$$抹茶猪1$$雪人影视$$小强TV$$追剧吧4$$555TV$$雨果影视$$琳琅影视$$Vip影院$$影阅阁3$$看剧吧1$$阿姨追剧$$雨果影视1$$饭后电影$$南府影视$$小极影视$$林谷影视$$爱影视$$艾特影视$$抹茶猪$$绿箭影视$$抹茶猪2$$土豆TV$$播放呀$$月色影视$$4K影院1$$追剧吧2$$段友影视1$$筋斗云$$追剧吧1$$疯狂看$$看剧吧$$蓝光视频$$快云影音$$麻瓜视频$$林谷影视1$$影阅阁||bl#Vip影院$$看剧吧1$$影阅阁3$$追剧吧4$$琳琅影视$$追剧吧5$$雨果影视$$雪人影视$$雨果影视1$$饭后电影$$阿姨追剧$$段友影视1$$南府影视$$小极影视$$艾特影视$$爱影视$$抹茶猪$$抹茶猪2$$土豆TV$$播放呀$$4K影院1$$月色影视$$追剧吧2$$筋斗云$$段友影视$$小强TV$$追剧吧1$$蓝光视频$$林谷影视1$$影阅阁$$555TV$$麻瓜视频||mg#雨果影视$$555TV$$琳琅影视$$Vip影院$$追剧吧5$$绿箭影视$$影阅阁3$$看剧吧1$$雨果影视1$$饭后电影$$雪人影视$$阿姨追剧$$段友影视1$$南府影视$$小极影视$$艾特影视$$爱影视$$林谷影视$$抹茶猪$$4K影院1$$月色影视$$抹茶猪2$$段友影视$$蓝光视频$$土豆TV$$筋斗云$$追剧吧2$$小强TV$$抹茶猪1$$看剧吧$$播放呀$$追剧吧1$$疯狂看$$快云影音$$林谷影视1$$麻瓜视频$$影阅阁$$追剧吧4||pp#琳琅影视$$绿箭影视$$雨果影视$$Vip影院$$555TV$$雪人影视$$看剧吧1$$影阅阁3$$追剧吧4$$追剧吧5$$饭后电影$$雨果影视1$$阿姨追剧$$段友影视1$$南府影视$$艾特影视$$爱影视$$抹茶猪$$抹茶猪2$$林谷影视$$4K影院1$$小极影视$$土豆TV$$月色影视$$段友影视$$筋斗云$$蓝光视频$$播放呀$$追剧吧2$$看剧吧$$小强TV$$疯狂看$$追剧吧1$$快云影音$$林谷影视1$$影阅阁$$麻瓜视频||qy#琳琅影视$$Vip影院$$555TV$$雨果影视$$影阅阁3$$看剧吧1$$雪人影视$$绿箭影视$$林谷影视$$南府影视$$抹茶猪$$小极影视$$艾特影视$$蓝光视频$$段友影视$$筋斗云$$小强TV$$土豆TV$$抹茶猪1$$追剧吧1$$疯狂看$$看剧吧$$麻瓜视频$$快云影音$$播放呀$$追剧吧2||1905#看剧吧1$$影阅阁3$$追剧吧4$$饭后电影$$追剧吧5$$雨果影视1$$阿姨追剧$$雪人影视$$段友影视1$$小极影视$$艾特影视$$爱影视$$抹茶猪$$林谷影视$$抹茶猪2$$土豆TV$$播放呀$$追剧吧2$$看剧吧$$抹茶猪1$$快云影音$$影阅阁$$林谷影视1||yk#555TV$$Vip影院$$雨果影视$$琳琅影视$$影阅阁3$$看剧吧1$$雪人影视$$追剧吧4$$饭后电影$$追剧吧5$$阿姨追剧$$雨果影视1$$林谷影视$$小极影视$$南府影视$$段友影视1$$爱影视$$抹茶猪$$艾特影视$$抹茶猪2$$土豆TV$$4K影院1$$月色影视$$段友影视$$筋斗云$$追剧吧2$$蓝光视频$$抹茶猪1$$小强TV$$播放呀$$看剧吧$$追剧吧1$$快云影音$$林谷影视1$$影阅阁$$疯狂看||sh#雨果影视$$555TV$$琳琅影视$$Vip影院$$绿箭影视$$追剧吧4$$饭后电影$$雨果影视1$$阿姨追剧$$追剧吧5$$南府影视$$小极影视$$爱影视$$抹茶猪2$$艾特影视$$4K影院1$$土豆TV$$月色影视$$段友影视$$蓝光视频$$筋斗云$$追剧吧2$$播放呀$$小强TV$$疯狂看$$追剧吧1$$林谷影视1$$麻瓜视频||cctv#雨果影视$$555TV$$Vip影院$$绿箭影视$$琳琅影视$$看剧吧1$$追剧吧4$$影阅阁3$$雪人影视$$饭后电影$$阿姨追剧$$雨果影视1$$南府影视$$林谷影视$$追剧吧5$$小极影视$$艾特影视$$抹茶猪$$爱影视$$土豆TV$$4K影院1$$段友影视$$月色影视$$蓝光视频$$筋斗云$$追剧吧2$$播放呀$$小强TV$$追剧吧1$$快云影音$$抹茶猪1$$林谷影视1$$影阅阁$$看剧吧$$麻瓜视频||mp#绿箭影视$$林谷影视$$4K影院1$$月色影视$$蓝光视频$$筋斗云$$播放呀$$小强TV$$追剧吧1$$抹茶猪1||le#追剧吧4$$追剧吧5$$雨果影视1$$饭后电影$$阿姨追剧$$林谷影视$$小极影视$$艾特影视$$爱影视$$播放呀$$土豆TV$$追剧吧2$$疯狂看$$林谷影视1$$影阅阁||ac#追剧吧5$$追剧吧4$$雨果影视1$$饭后电影$$阿姨追剧$$小极影视$$艾特影视$$爱影视$$土豆TV$$播放呀$$追剧吧2||migu#绿箭影视$$4K影院1$$段友影视$$蓝光视频$$筋斗云$$小强TV$$土豆TV$$追剧吧1$$麻瓜视频$$追剧吧2$$播放呀"
  3204. }
  3205. ],
  3206. "flags": ["youku", "qq", "iqiyi", "qiyi", "letv", "sohu", "tudou", "pptv", "mgtv", "wasu", "bilibili"],
  3207. "ijk": [{
  3208. "group": "软解码",
  3209. "options": [{
  3210. "category": 4,
  3211. "name": "opensles",
  3212. "value": "0"
  3213. }, {
  3214. "category": 4,
  3215. "name": "overlay-format",
  3216. "value": "842225234"
  3217. }, {
  3218. "category": 4,
  3219. "name": "framedrop",
  3220. "value": "1"
  3221. }, {
  3222. "category": 4,
  3223. "name": "soundtouch",
  3224. "value": "1"
  3225. }, {
  3226. "category": 4,
  3227. "name": "start-on-prepared",
  3228. "value": "1"
  3229. }, {
  3230. "category": 1,
  3231. "name": "http-detect-range-support",
  3232. "value": "0"
  3233. }, {
  3234. "category": 1,
  3235. "name": "fflags",
  3236. "value": "fastseek"
  3237. }, {
  3238. "category": 2,
  3239. "name": "skip_loop_filter",
  3240. "value": "48"
  3241. }, {
  3242. "category": 4,
  3243. "name": "reconnect",
  3244. "value": "1"
  3245. }, {
  3246. "category": 4,
  3247. "name": "enable-accurate-seek",
  3248. "value": "0"
  3249. }, {
  3250. "category": 4,
  3251. "name": "mediacodec",
  3252. "value": "0"
  3253. }, {
  3254. "category": 4,
  3255. "name": "mediacodec-auto-rotate",
  3256. "value": "0"
  3257. }, {
  3258. "category": 4,
  3259. "name": "mediacodec-handle-resolution-change",
  3260. "value": "0"
  3261. }, {
  3262. "category": 4,
  3263. "name": "mediacodec-hevc",
  3264. "value": "0"
  3265. }, {
  3266. "category": 1,
  3267. "name": "dns_cache_timeout",
  3268. "value": "600000000"
  3269. }]
  3270. }, {
  3271. "group": "硬解码",
  3272. "options": [{
  3273. "category": 4,
  3274. "name": "opensles",
  3275. "value": "0"
  3276. }, {
  3277. "category": 4,
  3278. "name": "overlay-format",
  3279. "value": "842225234"
  3280. }, {
  3281. "category": 4,
  3282. "name": "framedrop",
  3283. "value": "1"
  3284. }, {
  3285. "category": 4,
  3286. "name": "soundtouch",
  3287. "value": "1"
  3288. }, {
  3289. "category": 4,
  3290. "name": "start-on-prepared",
  3291. "value": "1"
  3292. }, {
  3293. "category": 1,
  3294. "name": "http-detect-range-support",
  3295. "value": "0"
  3296. }, {
  3297. "category": 1,
  3298. "name": "fflags",
  3299. "value": "fastseek"
  3300. }, {
  3301. "category": 2,
  3302. "name": "skip_loop_filter",
  3303. "value": "48"
  3304. }, {
  3305. "category": 4,
  3306. "name": "reconnect",
  3307. "value": "1"
  3308. }, {
  3309. "category": 4,
  3310. "name": "enable-accurate-seek",
  3311. "value": "0"
  3312. }, {
  3313. "category": 4,
  3314. "name": "mediacodec",
  3315. "value": "1"
  3316. }, {
  3317. "category": 4,
  3318. "name": "mediacodec-auto-rotate",
  3319. "value": "1"
  3320. }, {
  3321. "category": 4,
  3322. "name": "mediacodec-handle-resolution-change",
  3323. "value": "1"
  3324. }, {
  3325. "category": 4,
  3326. "name": "mediacodec-hevc",
  3327. "value": "1"
  3328. }, {
  3329. "category": 1,
  3330. "name": "dns_cache_timeout",
  3331. "value": "600000000"
  3332. }]
  3333. }],
  3334. "ads": ["mimg.0c1q0l.cn", "www.googletagmanager.com", "www.google-analytics.com", "mc.usihnbcq.cn", "mg.g1mm3d.cn", "mscs.svaeuzh.cn", "cnzz.hhttm.top", "tp.vinuxhome.com", "cnzz.mmstat.com", "www.baihuillq.com", "s23.cnzz.com", "z3.cnzz.com", "c.cnzz.com", "stj.v1vo.top", "z12.cnzz.com", "img.mosflower.cn", "tips.gamevvip.com", "ehwe.yhdtns.com", "xdn.cqqc3.com", "www.jixunkyy.cn", "sp.chemacid.cn", "hm.baidu.com", "s9.cnzz.com", "z6.cnzz.com", "um.cavuc.com", "mav.mavuz.com", "wofwk.aoidf3.com", "z5.cnzz.com", "xc.hubeijieshikj.cn", "tj.tianwenhu.com", "xg.gars57.cn", "k.jinxiuzhilv.com", "cdn.bootcss.com", "ppl.xunzhuo123.com", "xomk.jiangjunmh.top", "img.xunzhuo123.com", "z1.cnzz.com", "s13.cnzz.com", "xg.huataisangao.cn", "z7.cnzz.com", "xg.huataisangao.cn", "z2.cnzz.com", "s96.cnzz.com", "q11.cnzz.com", "thy.dacedsfa.cn", "xg.whsbpw.cn", "s19.cnzz.com", "z8.cnzz.com", "s4.cnzz.com", "f5w.as12df.top", "ae01.alicdn.com", "www.92424.cn", "k.wudejia.com", "vivovip.mmszxc.top", "qiu.xixiqiu.com", "cdnjs.hnfenxun.com", "cms.qdwght.com"]
  3335. }