maoys.json 144 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341
  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": "РОССИЯ-24",
  2625. "urls": ["http://live-vestinn.cdnvideo.ru/vestinn/vestinn/playlist.m3u8",
  2626. "http://radio-live-mg.rtr-vesti.ru/live/smil:r24.smil/chunklist_b1200000.m3u8",
  2627. "http://cdnmg.secure.live.rtr-vesti.ru/hls/russia_24/playlist_3.m3u8",
  2628. "http://cdnmg.secure.live.rtr-vesti.ru/hls/russia_24/playlist_2.m3u8",
  2629. "http://radio-live-mg.rtr-vesti.ru/vgtrkrtmp/smil:penza_r24.smil/chunklist_b1000000.m3u8",
  2630. "http://radio-live-mg.rtr-vesti.ru/vgtrkrtmp/omsk_r24.smil/chunklist_b1800000_slrus.m3u8",
  2631. "http://radio-live-mg.rtr-vesti.ru/vgtrkrtmp/smil:chel_r24.smil/chunklist_b1200000.m3u8",
  2632. "http://radio-live-mg.rtr-vesti.ru/vgtrkrtmp/kuban_r24.smil/chunklist_b1200000.m3u8",
  2633. "http://radio-live-mg.rtr-vesti.ru/vgtrkrtmp/kaluga_r24.smil/chunklist_b1200000.m3u8",
  2634. "http://radio-live-mg.rtr-vesti.ru/vgtrkrtmp/smil:r24_lipetsk.smil/chunklist_b1600000.m3u8",
  2635. "http://radio-live-mg.rtr-vesti.ru/hls/russia_24/playlist_3.m3u8",
  2636. "http://radio-live-mg.rtr-vesti.ru/hls/russia_24/playlist_1.m3u8",
  2637. "http://radio-live-mg.rtr-vesti.ru/hls/russia_24/playlist_2.m3u8",
  2638. "http://a3569458063-s26881.cdn.ngenix.net/live/smil:r24.smil/chunklist_b1200000.m3u8",
  2639. "http://a1311338364-s26881.cdn.ngenix.net/vgtrkrtmp/smil:penza_r24.smil/chunklist_b1000000.m3u8",
  2640. "http://a1311338364-s26881.cdn.ngenix.net/hls/russia_24/playlist_3.m3u8",
  2641. "http://a3569458063-s26881.cdn.ngenix.net/hls/russia_24/playlist_3.m3u8",
  2642. "http://a3569458063-s26881.cdn.ngenix.net/vgtrkrtmp/smil:penza_r24.smil/chunklist_b1000000.m3u8",
  2643. "http://a3569458063-s26881.cdn.ngenix.net/vgtrkrtmp/smil:chel_r24.smil/chunklist_b1200000.m3u8",
  2644. "http://a3569458063-s26881.cdn.ngenix.net/vgtrkrtmp/smil:r24_lipetsk.smil/chunklist_b1600000.m3u8",
  2645. "http://rtmp.gtrk.tv/720/tv720.m3u8", "http://gtrk-volga.ru/media/hr24/stream1.m3u8",
  2646. "http://gtrkchita.ru:8080/hls/r24-chita_576p.m3u8",
  2647. "http://chgtrk.code-red.ru/hls/R24_720p/index.m3u8",
  2648. "http://gtrk-volga.ru/media/hr24/stream1.m3u8",
  2649. "http://tv-online.gtrkchita.ru:8080/hls/r24-chita_360p.m3u8",
  2650. "http://uiptv.do.am/1ufc/000000006/playlist.m3u8",
  2651. "http://87.226.185.237:8080/hls/r24-chita_576p.m3u8",
  2652. "http://87.226.185.237:8080/hls/r24-chita_360p.m3u8",
  2653. "http://tv-online.gtrkchita.ru:8080/hls/r24-chita_576p.m3u8", "https://gtrkchita.ru:8081/hls/r24-chita_576p.m3u8",
  2654. "http://tv-online.gtrkchita.ru:8080/hls/r24-chita_360p.m3u8"
  2655. ]
  2656. }, {
  2657. "name": "Первый канал",
  2658. "urls": ["http://46.43.244.225:4022/udp/239.255.1.1:1234?1",
  2659. "http://94.19.220.168:81/udp/239.239.3.50:5239?0",
  2660. "http://31.128.129.224:4023/udp/239.1.8.1:1234?22",
  2661. "http://91.192.168.251:5050"]
  2662. },
  2663. {
  2664. "name": "РОССИЯ PRP",
  2665. "urls": [
  2666. "http://radio-live-mg.rtr-vesti.ru/live/smil:rtrp.smil/chunklist_b1600000.m3u8",
  2667. "https://a3569456481-s26881.cdn.ngenix.net/live/smil:rtrp.smil/chunklist_b800000.m3u8",
  2668. "http://a1311338364-s26881.cdn.ngenix.net/live/smil:rtrp.smil/chunklist_b400000.m3u8",
  2669. "http://a3569458063-s26881.cdn.ngenix.net/live/smil:rtrp.smil/chunklist_b1600000.m3u8",
  2670. "http://cdnmg.secure.live.rtr-vesti.ru/live/smil:rtrp.smil/chunklist_b800000.m3u8",
  2671. "http://cdnmg.secure.live.rtr-vesti.ru/live/smil:rtrp.smil/playlist_3.m3u8",
  2672. "http://cdnmg.secure.live.rtr-vesti.ru/live/smil:rtrp.smil/chunklist_b1600000.m3u8"
  2673. ]
  2674. },
  2675. {
  2676. "name": "КУРТУРА",
  2677. "urls": ["http://cdnmg.secure.live.rtr-vesti.ru/hls/russia_k/playlist_2.m3u8",
  2678. "http://radio-live-mg.rtr-vesti.ru/live/smil:rk.smil/chunklist_b1600000.m3u8",
  2679. "http://cdnmg.secure.live.rtr-vesti.ru/live/smil:rk.smil/chunklist_b1600000.m3u8",
  2680. "http://a3569458063-s26881.cdn.ngenix.net/hls/russia_k/playlist_3.m3u8",
  2681. "http://a3569458063-s26881.cdn.ngenix.net/live/smil:russiak.smil/chunklist_b1600000.m3u8",
  2682. "http://a3569458063-s26881.cdn.ngenix.net/live/smil:rk.smil/chunklist_b1600000.m3u8",
  2683. "http://cdnmg.secure.live.rtr-vesti.ru/hls/russia_k/playlist_3.m3u8",
  2684. "http://uiptv.do.am/1ufc/000000005/playlist.m3u8"
  2685. ]
  2686. },
  2687. {
  2688. "name": "ЗВЕЗДА",
  2689. "urls": ["http://tvzvezda.bonus-tv.ru/cdn/tvzvezda/playlist_sdhigh.m3u8",
  2690. "http://tvchannelstream1.tvzvezda.ru/cdn/tvzvezda/playlist_sdhigh.m3u8",
  2691. "http://tvchannelstream1.tvzvezda.ru/cdn/tvzvezda/playlist_hdhigh.m3u8",
  2692. "http://tvchannelstream1.tvzvezda.ru/cdn/tvzvezda/playlist_hdlow.m3u8",
  2693. "http://tvchannelstream1.tvzvezda.ru/cdn/tvzvezda/playlist.m3u8"
  2694. ]
  2695. },
  2696. {
  2697. "name": "РОССИЯ-1",
  2698. "urls": ["https://gtrkchita.ru:8081/hls/r1-chita_360p.m3u8", "https://a3569455792-s26881.cdn.ngenix.net/hls/russia1_plus1/playlist_3.m3u8",
  2699. "http://83tpjqlujs1.a.trbcdn.net/livemaster/tftrm1v2h9_stream1/playlist.m3u8",
  2700. "http://radio-live-mg.rtr-vesti.ru/hls/russia1_plus4/playlist_3.m3u8",
  2701. "http://radio-live-mg.rtr-vesti.ru/hls/russia1_plus1/playlist_3.m3u8",
  2702. "http://radio-live-mg.rtr-vesti.ru/hls/russia1_plus2/playlist_3.m3u8",
  2703. "http://radio-live-mg.rtr-vesti.ru/hls/russia1_plus3/playlist_3.m3u8",
  2704. "http://radio-live-mg.rtr-vesti.ru/vgtrkrtmp/smil:r1_lipetsk.smil/chunklist_b1500000.m3u8",
  2705. "http://cdnmg.secure.live.rtr-vesti.ru/vgtrkrtmp/smil:kaluga_r1.smil/chunklist_b400000.m3u",
  2706. "http://a3569458063-s26881.cdn.ngenix.net/live/smil:rhd.smil/chunklist_b1800000.m3u8",
  2707. "http://gtrkmariel-live.cdnvideo.ru/gtrkmariel/gtrkmariel/playlist.m3u8",
  2708. "http://cdnmg.secure.live.rtr-vesti.ru/live/smil:r1.smil/chunklist_b1600000.m3u8",
  2709. "http://a3569458063-s26881.cdn.ngenix.net/hls/russia_hd/playlist_4.m3u8",
  2710. "http://a3569458063-s26881.cdn.ngenix.net/vgtrkrtmp/smil:r1_lipetsk.smil/chunklist_b1500000.m3u8",
  2711. "http://a3569458063-s26881.cdn.ngenix.net/vgtrkrtmp/smil:nnov.smil/chunklist_b1600000.m3u8",
  2712. "http://a3569458063-s26881.cdn.ngenix.net/vgtrkrtmp/smil:penza_r1.smil/chunklist_b1200000.m3u8",
  2713. "http://tv-online.gtrkchita.ru:8080/hls/r1-chita_360p.m3u8",
  2714. "http://tv-online.gtrkchita.ru:8080/hls/r1-chita_180p.m3u8",
  2715. "http://radio-live-mg.rtr-vesti.ru/vgtrkrtmp/rtmp_tula1/playlist.m3u8",
  2716. "http://radio-live-mg.rtr-vesti.ru/vgtrkrtmp/kuban_r1.smil/chunklist_b1200000.m3u8",
  2717. "http://sochi.camera:8080/cam_255/tracks-v1a1/index.m3u8",
  2718. "http://radio-live-mg.rtr-vesti.ru/vgtrkrtmp/smil:nnov.smil/chunklist_b1600000.m3u8",
  2719. "http://radio-live-mg.rtr-vesti.ru/vgtrkrtmp/rtmp_tula1/playlist.m3u8"
  2720. ]
  2721. },
  2722. {
  2723. "name": "РОССИЯ-1 HD",
  2724. "urls": ["http://cdnmg.secure.live.rtr-vesti.ru/live/smil:rhd.smil/chunklist_b1200000.m3u8",
  2725. "http://a3569458063-s26881.cdn.ngenix.net/hls/russia_hd/playlist_3.m3u8",
  2726. "http://cdnmg.secure.live.rtr-vesti.ru/live/smil:rhd.smil/chunklist_b1800000.m3u8",
  2727. "http://cdnmg.secure.live.rtr-vesti.ru/live/smil:r1.smil/chunklist_b1600000.m3u8",
  2728. "http://cdnmg.secure.live.rtr-vesti.ru/hls/russia_hd/playlist_4.m3u8",
  2729. "http://a3569458063-s26881.cdn.ngenix.net/hls/russia_hd/playlist_1.m3u8",
  2730. "http://a3569458063-s26881.cdn.ngenix.net/hls/russia_hd/playlist_2.m3u8",
  2731. "http://a3569457661-s26881.cdn.ngenix.net/hls/russia_hd/playlist_3.m3u8",
  2732. "http://a3569458063-s26881.cdn.ngenix.net/hls/russia_hd/playlist_4.m3u8",
  2733. "http://radio-live-mg.rtr-vesti.ru/hls/russia_hd/playlist_4.m3u8"
  2734. ]
  2735. }, {
  2736. "name": "12 Канал",
  2737. "urls": ["http://12channel.bonus-tv.ru/cdn/omskchannel/playlist.m3u8", "http://12channel.bonus-tv.ru/cdn/12channel/playlist_hdhigh.m3u8"]
  2738. }, {
  2739. "name": "Липецкое Время",
  2740. "urls": ["http://serv25.vintera.tv:8081/liptime/liptime/playlist.m3u8"]
  2741. }, {
  2742. "name": "Новое Телевидение",
  2743. "urls": [
  2744. "http://serv25.vintera.tv:8081/novoetv/nov_tv/playlist.m3u8"
  2745. ]
  2746. }, {
  2747. "name": "360 Новости",
  2748. "urls": ["https://edge-tv-ll.facecast.io/evacoder_hls_hi/UBZfFgtKB1JwTwoDERNQVGGs/index.m3u8", "https://edge-tv-ll.facecast.io/evacoder_hls_hi/UBZfFgtKB1JwTwoDERNQVGGs/2.m3u8", "https://edge2-tv-ll.facecast.io/evacoder_hls_hi/CkxfR1xNUAJwTgtXTBZTAJli/index.m3u8", "https://edge-tv-ll.facecast.io/evacoder_hls_hi/UBZfFgtKB1JwTwoDERNQVGGs/1080.m3u8"]
  2749. }, {
  2750. "name": "CGTN Русский",
  2751. "urls": ["https://liveru.cgtn.com/1000r/prog_index.m3u8"]
  2752. }, {
  2753. "name": "Родной канал",
  2754. "urls": [
  2755. "https://n1.slavmir.tv/live/slavmir/playlist.m3u8"
  2756. ]
  2757. },
  2758. {
  2759. "name": "Новороссия HD",
  2760. "urls": [
  2761. "http://ott.inmart.tv:8081/19/index.m3u8"
  2762. ]
  2763. },
  2764. {
  2765. "name": "Евроновости",
  2766. "urls": ["http://evronovosti.mediacdn.ru/sr1/evronovosti/playlist.m3u8"]
  2767. },
  2768. {
  2769. "name": "Мир HD",
  2770. "urls": [
  2771. "http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv_2500/playlist.m3u8"
  2772. ]
  2773. },
  2774. {
  2775. "name": "Мир 24",
  2776. "urls": [
  2777. "http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/hd/playlist.m3u8", "http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mirtv3_2500/playlist.m3u8", "http://144.76.203.62:8080/mir24/manifest.m3u8",
  2778. "http://hls.mirtv.cdnvideo.ru/mirtv-parampublish/mir24_2500/playlist.m3u8"
  2779. ]
  2780. },
  2781. {
  2782. "name": "Пер Евразия",
  2783. "urls": [
  2784. "http://stream.euroasia.lfstrm.tv/perviy_evrasia/1/index.m3u8",
  2785. "http://1tvkz-stream.daitsuna.net/1tvkz/1tv_720/index.m3u8"
  2786. ]
  2787. },
  2788. {
  2789. "name": "МОСКВА-24",
  2790. "urls": ["http://cdnmg.secure.live.rtr-vesti.ru/hls/moscow_24/playlist_2.m3u8", "https://radio-live-mg.rtr-vesti.ru/hls/moscow_24/playlist.m3u8",
  2791. "http://radio-live-mg.rtr-vesti.ru/hls/moscow_24/playlist_3.m3u8",
  2792. "http://radio-live-mg.rtr-vesti.ru/live/smil:m24.smil/chunklist_b1600000.m3u8",
  2793. "http://cdnmg.secure.live.rtr-vesti.ru/live/smil:m24.smil/chunklist_b1600000.m3u8",
  2794. "http://a3569458063-s26881.cdn.ngenix.net/live/smil:m24.smil/chunklist_b1600000.m3u8"
  2795. ]
  2796. }, {
  2797. "name": "ЕНИСЕЙ",
  2798. "urls": [
  2799. "http://hls-eniseytv.cdnvideo.ru/eniseytv/stream1/playlist.m3u8"
  2800. ]
  2801. },
  2802. {
  2803. "name": "Ростов-папа",
  2804. "urls": [
  2805. "http://live-rostovpapa.cdnvideo.ru/rostovpapa/rostovpapa.sdp/playlist.m3u8",
  2806. "http://rusevertv.ru/576/rs_crf28_.m3u8"
  2807. ]
  2808. },
  2809. {
  2810. "name": "Башкортостан 24",
  2811. "urls": [
  2812. "http://live.gtrk.tv/hls/b24-hls.m3u8"
  2813. ]
  2814. }, {
  2815. "name": "Тюменское время",
  2816. "urls": [
  2817. "http://streams.sibinformburo.cdnvideo.ru/sibinformburo/sibinformburo.sdp/playlist.m3u8"
  2818. ]
  2819. }, {
  2820. "name": "ОТВ (Одинцово)",
  2821. "urls": [
  2822. "http://185.18.4.16/live/3m/playlist.m3u8"
  2823. ]
  2824. }, {
  2825. "name": "Сочи 24 HD",
  2826. "urls": [
  2827. "http://serv30.vintera.tv:8081/sochi/sochi24/playlist.m3u8"
  2828. ]
  2829. },
  2830. {
  2831. "name": "Саратов 24 ",
  2832. "urls": [
  2833. "https://saratov24.tv/online/playlist.php"
  2834. ]
  2835. },
  2836. {
  2837. "name": "КРАСНАЯ ЛИНИЯ",
  2838. "urls": [
  2839. "http://kprf-htlive.cdn.ngenix.net/live/_definst_/stream_high/chunklist.m3u8",
  2840. "http://kprf-htlive.cdn.ngenix.net/live/_definst_/stream_high/playlist.m3u8",
  2841. "rtmp://kprf-htlive-rts.cdn.ngenix.net/live/_definst_/stream_high",
  2842. "https://kprf-htlive.cdn.ngenix.net/live/_definst_/stream_high/chunklist.m3u8",
  2843. "rtmp://kprf-htlive-rts.cdn.ngenix.net/live/_definst_/stream_low"
  2844. ]
  2845. },
  2846. {
  2847. "name": "МОЯ ПЛАНЕТА",
  2848. "urls": [
  2849. "http://radio-live-mg.rtr-vesti.ru/live/smil:mplan.smil/chunklist_b1600000.m3u8",
  2850. "http://a1311338364-s26881.cdn.ngenix.net/live/smil:mplan.smil/chunklist_b1600000.m3u8",
  2851. "http://a3569458063-s26881.cdn.ngenix.net/live/smil:mplan.smil/chunklist_b1600000.m3u8",
  2852. "http://a3569456481-s26881.cdn.ngenix.net/live/smil:mplan.smil/chunklist_b1600000.m3u8", "http://cdnmg.secure.live.rtr-vesti.ru/live/smil:mplan.smil/chunklist_b800000.m3u8",
  2853. "http://cdnmg.secure.live.rtr-vesti.ru/live/smil:mplan.smil/chunklist_b1600000.m3u8"
  2854. ]
  2855. },
  2856. {
  2857. "name": "КРЫМ 1",
  2858. "urls": [
  2859. "http://mrlive.1tvcrimea.ru:8080/1tvcrimea.m3u8",
  2860. "http://mr2live.1tvcrimea.ru:8080/1tvcrimea.m3u8"
  2861. ]
  2862. },
  2863. {
  2864. "name": "КРЫМ-24",
  2865. "urls": [
  2866. "http://dmitry-tv.my1.ru/his/01/CH_24KRYM.m3u8",
  2867. "http://dmitry-tv.my1.ru/his/01/CH_24KRYMHD.m3u8",
  2868. "http://live.1tvcrimea.ru:8080/24tvcrimea.m3u8",
  2869. "http://live.1tvcrimea.ru:8080/switcher.m3u8",
  2870. "http://mr2live.1tvcrimea.ru:8080/24tvcrimea.m3u8"
  2871. ]
  2872. },
  2873. {
  2874. "name": "МОЯ УДМУРА",
  2875. "urls": [
  2876. "http://hls-myudm.cdnvideo.ru/myudm-live/myudm.sdp/playlist.m3u8",
  2877. "http://hls-myudm.cdnvideo.ru/myudm-live/myudm.sdp/chunklist.m3u8"
  2878. ]
  2879. },
  2880. {
  2881. "name": "МОЛДАВИЯ",
  2882. "urls": ["https://live-mordovia24.cdnvideo.ru/mordovia24/streamtr/playlist.m3u8",
  2883. "http://live-mordovia24.cdnvideo.ru/mordovia24/streamtr/playlist.m3u8"
  2884. ]
  2885. },
  2886. {
  2887. "name": "Известия HD",
  2888. "urls": [
  2889. "http://hls-igi.cdnvideo.ru/igi/igi_sq/playlist.m3u8",
  2890. "http://hls-igi.cdnvideo.ru/igi/igi_hq/playlist.m3u8",
  2891. "http://hls-igi.cdnvideo.ru/igi/igi_hq/chunklist.m3u8"
  2892. ]
  2893. },
  2894. {
  2895. "name": "КРАСНОЯРСК 8",
  2896. "urls": [
  2897. "http://v4.proofix.ru/8tv-russia/tracks-v1a1/mono.m3u8",
  2898. "http://v4.proofix.ru/8tv-europe/tracks-v1a1/mono.m3u8"
  2899. ]
  2900. },
  2901. {
  2902. "name": "Междуреченск",
  2903. "urls": [
  2904. "http://212.77.128.179:8089/www_mezhdunet/mezhdunet/playlist.m3u8"
  2905. ]
  2906. },
  2907. {
  2908. "name": "ТВС",
  2909. "urls": [
  2910. "http://tvc-hls.cdnvideo.ru/tvc-res/smil:vd9221_2.smil/chunklist_b1703000.m3u8"
  2911. ]
  2912. },
  2913. {
  2914. "name": "Егорьевское",
  2915. "urls": [
  2916. "http://video.platformcraft.ru/hls/etv/egorievsk-tv/playlist.m3u8"
  2917. ]
  2918. },
  2919. {
  2920. "name": "Первый СССР",
  2921. "urls": [
  2922. "http://serv25.vintera.tv:8081/1pnk/1pnk/playlist.m3u8",
  2923. "http://62.76.27.70:8081/1pnk/1pnk/playlist.m3u8"
  2924. ]
  2925. },
  2926. {
  2927. "name": "Псковский",
  2928. "urls": [
  2929. "http://ott.inmart.tv:8081/54/index.m3u8",
  2930. "http://ott.inmart.tv:8081/17/index.m3u8"
  2931. ]
  2932. }, {
  2933. "name": "Донбас",
  2934. "urls": [
  2935. "http://176.110.1.30:1935/live/donbasonline/playlist.m3u8"
  2936. ]
  2937. },
  2938. {
  2939. "name": "Вечерняя Москва",
  2940. "urls": ["https://vmvideo.gcdn.co/streams/1503_161/playlist.m3u8",
  2941. "http://vmvideo.gcdn.co/streams/1503_161/1080n/index.m3u8"
  2942. ]
  2943. },
  2944. {
  2945. "name": "НижНовг24",
  2946. "urls": [
  2947. "http://live-vestinn.cdnvideo.ru/vestinn/nn24/playlist.m3u8"
  2948. ]
  2949. },
  2950. {
  2951. "name": "Волгоград",
  2952. "urls": [
  2953. "http://hls.volgograd1vtv.cdnvideo.ru/volgograd1vtv/volgograd1vtv.sdp/playlist.m3u8"
  2954. ]
  2955. },
  2956. {
  2957. "name": "Пер Ростовский",
  2958. "urls": [
  2959. "http://live-yugmedia.cdnvideo.ru/yugmedia/streamtr_480/playlist.m3u8",
  2960. "http://live-yugmedia.cdnvideo.ru/yugmedia/streamtr/playlist.m3u8"
  2961. ]
  2962. },
  2963. {
  2964. "name": "ПерЯросл",
  2965. "urls": ["http://yaroslavl.mediacdn.ru/cdn/pervyaroslavsk/playlist_hdlow.m3u8",
  2966. "http://yaroslavl.mediacdn.ru/cdn/pervyaroslavsk/playlist.m3u8",
  2967. "http://yaroslavl.mediacdn.ru/cdn/pervyaroslavsk/playlist_hdhigh.m3u8"
  2968. ]
  2969. }, {
  2970. "name": "Кузбасс 1",
  2971. "urls": ["https://www.10kanal.ru:1443/10kanal/k24/playlist.m3u8",
  2972. "http://kuzbass1.ru:8082/10kanal/k24_576/playlist.m3u8"
  2973. ]
  2974. }, {
  2975. "name": "10 канал (Новокузнецк)",
  2976. "urls": [
  2977. "http://kuzbass1.ru:8082/10kanal/10kanal_720/playlist.m3u8"
  2978. ]
  2979. }, {
  2980. "name": "Камчатка 1",
  2981. "urls": [
  2982. "http://77.82.82.244/kamchatka1/tracks-v1a1/mono.m3u8"
  2983. ]
  2984. }, {
  2985. "name": "Саратов 24",
  2986. "urls": [
  2987. "http://saratov24.tv:80/online/playlist.php"
  2988. ]
  2989. },
  2990. {
  2991. "name": "Аист Иркутск",
  2992. "urls": ["http://141.101.205.134:8080/hls/tvaist.m3u8",
  2993. "http://live2-aisttv.cdnvideo.ru/aisttv2/aisttv.sdp/playlist.m3u8"
  2994. ]
  2995. }, {
  2996. "name": "Арис 24",
  2997. "urls": [
  2998. "http://serv25.vintera.tv:8081/test/aris/playlist.m3u8"
  2999. ]
  3000. },
  3001. {
  3002. "name": "Севастополь 24",
  3003. "urls": [
  3004. "http://stv92-live.cdnvideo.ru/stv92/stv92/playlist.m3u8"
  3005. ]
  3006. },
  3007. {
  3008. "name": "Севастопол",
  3009. "urls": [
  3010. "http://live-ikstv.cdnvideo.ru/ikstv/ikstv/playlist.m3u8"
  3011. ]
  3012. },
  3013. {
  3014. "name": "РАТНИК",
  3015. "urls": [
  3016. "http://live-ratnik.cdnvideo.ru/ratnik/ratnik2.sdp/playlist.m3u8",
  3017. "http://live-ratnik.cdnvideo.ru/ratnik/ratnik.sdp/playlist.m3u8",
  3018. "http://live-ratnik.cdnvideo.ru/ratnik/ratnik2.sdp/chunklist.m3u8",
  3019. "http://live-ratnik.cdnvideo.ru/ratnik/ratnik.sdp/chunklist.m3u8"
  3020. ]
  3021. },
  3022. {
  3023. "name": "Рязань",
  3024. "urls": [
  3025. "http://live.tkr.cdnvideo.ru/tkr/tkr.sdp/playlist.m3u8"
  3026. ]
  3027. },
  3028. {
  3029. "name": "НИКА",
  3030. "urls": [
  3031. "http://live-nikatv.cdnvideo.ru/nikatv/nikatv.sdp/playlist.m3u8",
  3032. "http://live-nikatv.cdnvideo.ru/nikatv/nikatv.sdp/chunklist.m3u8?hls_proxy_host=pub1.rtmp.s01.l.nikatv"
  3033. ]
  3034. }, {
  3035. "name": "Суббота! HD",
  3036. "urls": [
  3037. "https://bl.uma.media/live/317845/HLS/4614144_3,2883584_2,1153024_1/1613109268/2fb2de98a984b4b86bc2cdd980da3430/playlist.m3u8"
  3038. ]
  3039. }, {
  3040. "name": "Пятница HD",
  3041. "urls": [
  3042. "https://bl.uma.media/live/410336/HLS_R/6307840_7,4280320_6,2703360_5,1408000_4,1070080_3,732160_2,394240_1/1613010957/e2cf94524a064ecb46389bb54a359d9a/playlist.m3u8"
  3043. ]
  3044. }, {
  3045. "name": "ТВ-3 FHD",
  3046. "urls": [
  3047. "https://bl.uma.media/live/407373/HLS/6307840_7,4280320_6,2703360_5,1408000_4,1070080_3,732160_2,394240_1/1613013859/5fdc4b8080160a4e56933b0402133da4/playlist.m3u8"
  3048. ]
  3049. }, {
  3050. "name": "ТНТ 4 HD",
  3051. "urls": [
  3052. "https://bl.uma.media/live/317849/HLS/4614144_3,2883584_2,1153024_1/1613027671/d161f37174905bc712e81b60d3411fc1/playlist.m3u8"
  3053. ]
  3054. }, {
  3055. "name": "ТНТ HD",
  3056. "urls": [
  3057. "https://bl.uma.media/live/410338/HLS/6307840_7,4280320_6,2703360_5,1408000_4,1070080_3,732160_2,394240_1/1613013807/79ad96b5b87fdce129191b83aaf2fb46/playlist.m3u8"
  3058. ]
  3059. }, {
  3060. "name": "СССР ТВ",
  3061. "urls": ["https://v2.catcast.tv/content/38821/index.m3u8"]
  3062. },
  3063. {
  3064. "name": "Детское Кино",
  3065. "urls": ["http://v2.catcast.me/content/38720/index.m3u8", "https://v2.catcast.tv/content/38144/index.m3u8"]
  3066. },
  3067. {
  3068. "name": "Кинозал 17 (VHS 90s)",
  3069. "urls": [
  3070. "https://v2.catcast.tv/content/37925/index.m3u8"
  3071. ]
  3072. },
  3073. {
  3074. "name": "Кинозал 27 (akudji)",
  3075. "urls": [
  3076. "https://hls.goodgame.ru/hls/5346.m3u8"
  3077. ]
  3078. },
  3079. {
  3080. "name": "SC TV FHD",
  3081. "urls": [
  3082. "http://cdnhls.goodgame.ru/hls/61358.m3u8"
  3083. ]
  3084. },
  3085. {
  3086. "name": "Kino Watch",
  3087. "urls": [
  3088. "https://ed-nl-01.mycdn.video/fresh/tracks-v1a1/mono.m3u8", "https://ed-nl-01.mycdn.video/hit/tracks-v1a1/mono.m3u8", "https://ed-nl-01.mycdn.video/docu/tracks-v1a1/mono.m3u8"
  3089. ]
  3090. },
  3091. {
  3092. "name": "TV PRO",
  3093. "urls": [
  3094. "http://rtmp.tvpro-online.ru/hls/ch1.m3u8"
  3095. ]
  3096. },
  3097. {
  3098. "name": "Dacha",
  3099. "urls": [
  3100. "http://144.76.203.62:8080/dacha/manifest.m3u8"
  3101. ]
  3102. },
  3103. {
  3104. "name": "Usadba",
  3105. "urls": [
  3106. "http://144.76.203.62:8080/usadba/manifest.m3u8"
  3107. ]
  3108. },
  3109. {
  3110. "name": "Kinomenu HD",
  3111. "urls": [
  3112. "http://144.76.203.62:8080/kinomenu/manifest.m3u8"
  3113. ]
  3114. },
  3115. {
  3116. "name": "Nat Geo WILD Russia",
  3117. "urls": [
  3118. "https://sc.id-tv.kz/NatGeoWildHD_34_35.m3u8"
  3119. ]
  3120. }, {
  3121. "name": "ПОБЕДА",
  3122. "urls": [
  3123. "https://sc.id-tv.kz/Pobeda.m3u8"
  3124. ]
  3125. }, {
  3126. "name": "ТУРАН",
  3127. "urls": [
  3128. "https://sc.id-tv.kz/TuranTV.m3u8"
  3129. ]
  3130. }, {
  3131. "name": "Эхо",
  3132. "urls": [
  3133. "http://live-echotv.cdnvideo.ru/echotv/echotv.sdp/chunklist.m3u8"
  3134. ]
  3135. },
  3136. {
  3137. "name": "АЛМАЗНЫЙ КРАЙ",
  3138. "urls": [
  3139. "https://stream.almaz-media.tv:8080/hls/576.m3u8"
  3140. ]
  3141. }, {
  3142. "name": "МТВ Волгоград",
  3143. "urls": [
  3144. "http://hls.volgograd1vtv.cdnvideo.ru/volgograd1vtv/volgograd1vtv.sdp/playlist.m3u8"
  3145. ]
  3146. },
  3147. {
  3148. "name": "ЕврОрск",
  3149. "urls": [
  3150. "http://infochhdcdn.trkeurasia.ru/orsk-infochhd/infochhd/playlist.m3u8"
  3151. ]
  3152. },
  3153. {
  3154. "name": "КИНО 24",
  3155. "urls": [
  3156. "http://85.192.10.131/hls/Kino24Ru/playlist.m3u8"
  3157. ]
  3158. },
  3159. {
  3160. "name": "Кино",
  3161. "urls": [
  3162. "https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=1548", "http://cdnhls.goodgame.ru/hls/163253.m3u8", "http://1hdru-hls-otcnet.cdnvideo.ru/kinosem/index.m3u8"
  3163. ]
  3164. },
  3165. {
  3166. "name": "Еврокино",
  3167. "urls": [
  3168. "http://46.34.209.243/btv/SWM/Eurokino/Eurokino_576p_2000kbps.m3u8"
  3169. ]
  3170. },
  3171. {
  3172. "name": "Феникс кино",
  3173. "urls": [
  3174. "http://188.40.68.167/russia/fenix/playlist.m3u8"
  3175. ]
  3176. },
  3177. {
  3178. "name": "THT4",
  3179. "urls": [
  3180. "http://92.245.103.126:1935/live/live.stream/playlist.m3u8"
  3181. ]
  3182. }, {
  3183. "name": "8 Канал Европа",
  3184. "urls": [
  3185. "http://v4.proofix.ru:80/8tv-europe/index.m3u8"
  3186. ]
  3187. },
  3188. {
  3189. "name": "33 канал",
  3190. "urls": [
  3191. "http://33tvv.ml/33chanel/live/index.m3u8"
  3192. ]
  3193. },
  3194. {
  3195. "name": "ГубСамара",
  3196. "urls": [
  3197. "http://live.guberniatv.cdnvideo.ru/guberniatv/guberniatv.sdp/playlist.m3u8",
  3198. "http://live.guberniatv.cdnvideo.ru/guberniatv/guberniatv.sdp/chunklist.m3u8"
  3199. ]
  3200. },
  3201. {
  3202. "name": "Татарстан 24",
  3203. "urls": [
  3204. "http://stream.efir24.tv:1935/live/efir24tv/playlist.m3u8"
  3205. ]
  3206. },
  3207. {
  3208. "name": "ГубВладимир",
  3209. "urls": [
  3210. "http://live-trc33.cdnvideo.ru/trc33/trc33.sdp/playlist.m3u8",
  3211. "http://live-trc33.cdnvideo.ru/trc33/trc33.sdp/chunklist.m3u8"
  3212. ]
  3213. },
  3214. {
  3215. "name": "ГубВоронеж",
  3216. "urls": [
  3217. "http://tvgubernia-htlive.cdn.ngenix.net/live/mp4:tv-gubernia-live/playlist.m3u8"
  3218. ]
  3219. },
  3220. {
  3221. "name": "ГубХабаровск",
  3222. "urls": [
  3223. "https://media1.gubernia.com/hls/live.m3u8"
  3224. ]
  3225. },
  3226. {
  3227. "name": "Сергиев Посад24",
  3228. "urls": ["https://live-tvr24.cdnvideo.ru/tvr24/tvr24.sdp/playlist.m3u8",
  3229. "http://live-tvr24.cdnvideo.ru/tvr24/tvr24.sdp/playlist.m3u8",
  3230. "http://live-tvr24.cdnvideo.ru/tvr24/tvr24.sdp/chunklist.m3u8?hls_proxy_host=pub1.rtmp.s01.l.tvr24"
  3231. ]
  3232. },
  3233. {
  3234. "name": "Севастополь",
  3235. "urls": [
  3236. "http://live-ikstv.cdnvideo.ru/ikstv/ikstv/playlist.m3u8"
  3237. ]
  3238. },
  3239. {
  3240. "name": "УрФО 24 HD",
  3241. "urls": [
  3242. "http://live-urfo24.cdnvideo.ru/urfo24/urfo24.sdp/playlist.m3u8",
  3243. "http://live-urfo24.cdnvideo.ru/urfo24/urfo24.sdp/chunklist.m3u8"
  3244. ]
  3245. },
  3246. {
  3247. "name": "Брянская губерния",
  3248. "urls": [
  3249. "http://tvgubernia-htlive.cdn.ngenix.net/live/mp4:tv-gubernia-live/chunklist.m3u8"
  3250. ]
  3251. },
  3252. {
  3253. "name": "НижнНовгород",
  3254. "urls": ["https://live-vestinn.cdnvideo.ru/vestinn/nn24-khl/playlist.m3u8", "http://140hotstp28.a.trbcdn.net/livemaster/cfd99gu0ai_nntv_tv/playlist.m3u8"]
  3255. },
  3256. {
  3257. "name": "ЯКУТИЯ",
  3258. "urls": [
  3259. "http://live-saha.cdnvideo.ru/saha/yak24/playlist.m3u8",
  3260. "http://live-saha.cdnvideo.ru/saha2/yak24pub7/playlist.m3u8",
  3261. "http://live-saha.cdnvideo.ru/saha/saha/chunklist.m3u8?hls_proxy_host=pub1.rtmp.s01.l.saha",
  3262. "http://live-saha.cdnvideo.ru/saha/yak24rtmp_torig/playlist.m3u8"
  3263. ]
  3264. },
  3265. {
  3266. "name": "Учалы ТВ",
  3267. "urls": [
  3268. "http://live-uchalytv.cdnvideo.ru/uchalytv/uchalytv.sdp/playlist.m3u8"
  3269. ]
  3270. },
  3271. {
  3272. "name": "Ямал-Регион",
  3273. "urls": [
  3274. "http://live-yamalregion.cdnvideo.ru/yamalregion_mc/yamalregion_mc.smil/playlist.m3u8",
  3275. "http://live-yamalregion.cdnvideo.ru/yamalregion_mc/yamalregion_mc/chunklist.m3u8",
  3276. "http://live-yamalregion.cdnvideo.ru/yamalregion_mc/yamalregionhd/playlist.m3u8"
  3277. ]
  3278. },
  3279. {
  3280. "name": "360",
  3281. "urls": [
  3282. "https://cdn-evacoder-tv.facecast.io/evacoder_hls_hi/CkxfR1xNUAJwTgtXTBZTAJli/2.m3u8",
  3283. "http://edge-tv-ll.facecast.io/evacoder_hls_hi/CkxfR1xNUAJwTgtXTBZTAJli/1.m3u8"
  3284. ]
  3285. },
  3286. {
  3287. "name": "Астрахань 24",
  3288. "urls": ["http://astrakhan24.mediacdn.ru/cdn/astrakhan24/playlist_hdlow.m3u8", "http://streaming.astrakhan.ru/astrakhan24/index.m3u8",
  3289. "http://streaming.astrakhan.ru/astrakhan24/tracks-v2a1/index.m3u8",
  3290. "http://streaming.astrakhan.ru/astrakhan24/tracks-v1a1/index.m3u8"
  3291. ]
  3292. },
  3293. {
  3294. "name": "А1",
  3295. "urls": ["http://cdn1.live-tv.od.ua:8081/a1od/a1od-abr/a1od/a1od-720p/chunks.m3u8",
  3296. "http://cdn1.live-tv.od.ua:8081/a1od/a1od-abr/a1od/a1od-480p/playlist.m3u8",
  3297. "http://cdn1.live-tv.od.ua:8081/a1od/a1od-abr/a1od/a1od-720p/playlist.m3u8",
  3298. "http://cdn1.live-tv.od.ua:8081/a1od/a1od-720p/playlist.m3u8"
  3299. ]
  3300. },
  3301. {
  3302. "name": "VNS90S",
  3303. "urls": [
  3304. "http://v2.catcast.tv/content/37925/index.m3u8"
  3305. ]
  3306. },
  3307. {
  3308. "name": "ВОЛОГДА 1",
  3309. "urls": [
  3310. "http://hls.volgograd1vtv.cdnvideo.ru/volgograd1vtv/volgograd1vtv.sdp/chunklist.m3u8"
  3311. ]
  3312. },
  3313. {
  3314. "name": "НТМ HD",
  3315. "urls": [
  3316. "http://live-ntm13.cdnvideo.ru/ntm13/smil:ntm13.smil/playlist.m3u8",
  3317. "http://live-ntm13.cdnvideo.ru/ntm13/smil:ntm13.smil/chunklist_b3128000.m3u8",
  3318. "http://live-ntm13.cdnvideo.ru/ntm13/smil:ntm13.smil/chunklist_b628000.m3u8"
  3319. ]
  3320. },
  3321. {
  3322. "name": "НТС Севастополь",
  3323. "urls": [
  3324. "http://peqk71plnjy.a.trbcdn.net/livemaster/w4kz7pki62_nts_tv/playlist.m3u8"
  3325. ]
  3326. },
  3327. {
  3328. "name": "THB",
  3329. "urls": [
  3330. "http://tnv.bonus-tv.ru/cdn/tnvplanet/tracks-v1a1/mono.m3u8"
  3331. ]
  3332. },
  3333. {
  3334. "name": "КРИК",
  3335. "urls": ["http://cdn-01.bonus-tv.ru:8080/kriktv_edge/tracks-v1a1/index.m3u8",
  3336. "http://cdn-01.bonus-tv.ru:8080/kriktv_edge/index.m3u8",
  3337. "http://hls-rictv.cdnvideo.ru/rictv/rictv.sdp/playlist.m3u8",
  3338. "http://hls-rictv.cdnvideo.ru/rictv/rictv.sdp/chunklist.m3u8"
  3339. ]
  3340. },
  3341. {
  3342. "name": "Красногорск",
  3343. "urls": [
  3344. "http://live-krtv.cdnvideo.ru/krtv/krtv.sdp/playlist.m3u8"
  3345. ]
  3346. },
  3347. {
  3348. "name": "Вместе",
  3349. "urls": [
  3350. "http://vmesterf.bonus-tv.ru:80/cdn/vmesterf/tracks-v1a1/index.m3u8", "http://cdn-01.bonus-tv.ru:8080/vmesterf/index.m3u8", "http://vmesterf.bonus-tv.ru:80/cdn/vmesterf/tracks-v1a1/index.m3u8"
  3351. ]
  3352. },
  3353. {
  3354. "name": "Кварц Подольс",
  3355. "urls": ["https://video.quartztelecom.ru:18080/hls/2386168/71fe656b993c510f39a5/playlist.m3u8",
  3356. "http://streamer1.podolsknet.ru/Infochannel/video.m3u8"
  3357. ]
  3358. },
  3359. {
  3360. "name": "БелРос",
  3361. "urls": [
  3362. "http://live2.mediacdn.ru/sr1/tro/playlist.m3u8", "http://live2.mediacdn.ru/sr1/tro/playlist_1.5M.m3u8"
  3363. ]
  3364. }, {
  3365. "name": "Белгород 24 HD",
  3366. "urls": [
  3367. "http://belnovosti.cdn.easyhoster.ru:8080/stream.m3u8"
  3368. ]
  3369. }, {
  3370. "name": "Дагестан",
  3371. "urls": ["https://dagestan.mediacdn.ru/cdn/dagestan/playlist.m3u8",
  3372. "http://dagestan.mediacdn.ru/cdn/dagestan/playlist_hdlow.m3u8"
  3373. ]
  3374. },
  3375. {
  3376. "name": "СГДФ 24",
  3377. "urls": [
  3378. "http://live.sgdf24.cdnvideo.ru/sgdf24/sgdf24.sdp/chunklist.m3u8"
  3379. ]
  3380. },
  3381. {
  3382. "name": "Ставрополь",
  3383. "urls": [
  3384. "http://hls.atvmedia.ru/atv800.m3u8"
  3385. ]
  3386. },
  3387. {
  3388. "name": "АЛ МАТА",
  3389. "urls": [
  3390. "http://sc.id-tv.kz/Almaty_38_39.m3u8",
  3391. "http://live-almatytv.cdnvideo.ru/almatytv/almatytv.sdp/playlist.m3u8"
  3392. ]
  3393. },
  3394. {
  3395. "name": "Жетысу",
  3396. "urls": [
  3397. "https://sc.id-tv.kz/ZhuldyzTV_38_39.m3u8",
  3398. "http://92.46.127.146:8080/Zhetysu-L3-TRANS/index.m3u8"
  3399. ]
  3400. },
  3401. {
  3402. "name": "ЮТВ",
  3403. "urls": ["http://46.174.83.66/U/mpegts",
  3404. "http://serv24.vintera.tv:8081/utv/Stream/playlist.m3u8"
  3405. ]
  3406. }, {
  3407. "name": "Югран",
  3408. "urls": [
  3409. "http://yurgan.bonus-tv.ru/cdn/yurgan/playlist.m3u8"
  3410. ]
  3411. },
  3412. {
  3413. "name": "Югра",
  3414. "urls": [
  3415. "http://live.ugratv.cdnvideo.ru/ugratv/smil:ugrastream1.smil/chunklist_b7192000.m3u8",
  3416. "http://live.ugratv.cdnvideo.ru/ugratv/smil:ugrastream1.smil/playlist.m3u8",
  3417. "http://live.ugratv.cdnvideo.ru/ugratv/smil:ugrastream1.smil/chunklist_b1596000.m3u8",
  3418. "http://live.ugratv.cdnvideo.ru/ugratv/smil:ugrastream1.smil/chunklist_b2628000.m3u8"
  3419. ]
  3420. },
  3421. {
  3422. "name": "Сургут 24",
  3423. "urls": [
  3424. "http://video1.in-news.ru/c24/index.m3u8"
  3425. ]
  3426. },
  3427. {
  3428. "name": "Новосибирск 8",
  3429. "urls": [
  3430. "http://hls-8knsk.cdnvideo.ru/8knsk-mpegts/stream1/playlist.m3u8",
  3431. "rtmp://8knsk.cdnvideo.ru/8knsk-mpegts/stream1"
  3432. ]
  3433. },
  3434. {
  3435. "name": "Славск Мир",
  3436. "urls": [
  3437. "http://n1.slavmir.tv:1935/live/ngrp:Cinegy.stream_all/playlist.m3u8"
  3438. ]
  3439. },
  3440. {
  3441. "name": "SVERDENOV 24",
  3442. "urls": [
  3443. "http://live.sgdf24.cdnvideo.ru/sgdf24/sgdf24.sdp/chunklist.m3u8"
  3444. ]
  3445. },
  3446. {
  3447. "name": "Щелковское",
  3448. "urls": [
  3449. "http://stream0.tv41.ru/live.m3u8"
  3450. ]
  3451. }, {
  3452. "name": "Ветта 24 Пермь",
  3453. "urls": [
  3454. "http://serv24.vintera.tv:8081/vetta/vetta_office/playlist.m3u8"
  3455. ]
  3456. },
  3457. {
  3458. "name": "Полевской 11",
  3459. "urls": [
  3460. "http://hjplb2qzsf8.a.trbcdn.net/livemaster/qm9inc7byc_stream1/playlist.m3u8"
  3461. ]
  3462. },
  3463. {
  3464. "name": "Вестник Надыма",
  3465. "urls": [
  3466. "http://live-trknadym.cdnvideo.ru/trknadym-pub/trknadym.sdp/playlist.m3u8"
  3467. ]
  3468. },
  3469. {
  3470. "name": "ЗАЛОТОЙ КИРПИЧ",
  3471. "urls": [
  3472. "http://brics.bonus-tv.ru/cdn/brics/russian/tracks-v1a1/index.m3u8"
  3473. ]
  3474. },
  3475. {
  3476. "name": "Лотос 24",
  3477. "urls": [
  3478. "http://streaming.astrakhan.ru/live/vgtrk/tracks-v1a1/index.m3u8"
  3479. ]
  3480. },
  3481. {
  3482. "name": "Воронеж 41",
  3483. "urls": [
  3484. "http://4kfp3cm483g.a.trbcdn.net/livemaster/rxu69_live-d7gbc25zefk.smil/playlist.m3u8"
  3485. ]
  3486. },
  3487. {
  3488. "name": "УНИВЕР",
  3489. "urls": [
  3490. "http://cdn.universmotri.ru/live/mq.sdp/chunklist_w1872316275.m3u8",
  3491. "http://cdn.universmotri.ru/live/hq.sdp/chunklist_w883464801.m3u8",
  3492. "http://cdn.universmotri.ru/live/univer.sdp_576p/playlist.m3u8", "http://cdn.universmotri.ru/live/univer.sdp_1080p/playlist.m3u8",
  3493. "http://cdn.universmotri.ru/live/hq.sdp/playlist.m3u8"
  3494. ]
  3495. },
  3496. {
  3497. "name": "Черноморс",
  3498. "urls": [
  3499. "http://live-blackseatv.cdnvideo.ru/blackseatv/blackseatv.sdp/playlist.m3u8"
  3500. ]
  3501. },
  3502. {
  3503. "name": "ИншийОдесса",
  3504. "urls": [
  3505. "http://cdn1.live-tv.od.ua:8081/ktkod/ktkod-abr/ktkod/ktkod/playlist.m3u8"
  3506. ]
  3507. },
  3508. {
  3509. "name": "Измаил",
  3510. "urls": [
  3511. "http://cdn10.live-tv.od.ua:8081/izod/izod-abr/playlist.m3u8"
  3512. ]
  3513. },
  3514. {
  3515. "name": "Карусель",
  3516. "urls": [
  3517. "http://radio-live-mg.rtr-vesti.ru/hls/karusel/playlist_3.m3u8"
  3518. ]
  3519. }, {
  3520. "name": "112 Украина HD",
  3521. "urls": [
  3522. "http://app.live.112.events/hls-ua/112hd_hi/index.m3u8"
  3523. ]
  3524. }, {
  3525. "name": "Bambarbia TV HD",
  3526. "urls": [
  3527. "http://cdn1.live-tv.od.ua:8081/bbb/bbbtv-abr/bbb/bbbtv-720p/playlist.m3u8"
  3528. ]
  3529. }, {
  3530. "name": "WOW!TV HD",
  3531. "urls": [
  3532. "http://cdn.elsalvadordigital.com:1935/wowtv/wowtv/chunklist_w84588335.m3u8"
  3533. ]
  3534. }, {
  3535. "name": "СК1 HD (Житомир)",
  3536. "urls": [
  3537. "https://cdn10.live-tv.od.ua:8083/sk1zt/sk1zt-abr/sk1zt/sk1zt720p/chunks.m3u8"
  3538. ]
  3539. }, {
  3540. "name": "Три Ангела HD",
  3541. "urls": [
  3542. "http://hls.tv.3angels.ru/stream/HQ.m3u8"
  3543. ]
  3544. }, {
  3545. "name": "С1 HD (Сургут)",
  3546. "urls": [
  3547. "http://sitv.ru/hls/stv1024.m3u8"
  3548. ]
  3549. }, {
  3550. "name": "7 канал (KZ) HD",
  3551. "urls": [
  3552. "http://cdn10.live-tv.od.ua:8081/7tvod/7tvod-abr-lq/playlist.m3u8"
  3553. ]
  3554. }, {
  3555. "name": "Южная Волна HD",
  3556. "urls": [
  3557. "http://cdn1.live-tv.od.ua:8081/wave/wave-abr/playlist.m3u8"
  3558. ]
  3559. }, {
  3560. "name": "ТРК Рудана HD",
  3561. "urls": [
  3562. "https://live.rudana.com.ua/hls/stream_FHD.m3u8"
  3563. ]
  3564. }, {
  3565. "name": "Думская ТВ HD",
  3566. "urls": [
  3567. "http://cdn1.live-tv.od.ua:8081/dumska/dumska-abr/playlist.m3u8"
  3568. ]
  3569. }, {
  3570. "name": "Архат ТВ HD",
  3571. "urls": [
  3572. "http://arhat.tv/public/720p/index.m3u8"
  3573. ]
  3574. }, {
  3575. "name": "ТIС (Одесса)",
  3576. "urls": [
  3577. "http://cdn10.live-tv.od.ua:8081/riood/tisod-abr/riood/tisod240/playlist.m3u8"
  3578. ]
  3579. }, {
  3580. "name": "Первый Городской (Одесса)",
  3581. "urls": [
  3582. "http://91.194.79.46:8081/stream1/channel1/playlist.m3u8"
  3583. ]
  3584. },
  3585. {
  3586. "name": "УА Одесса",
  3587. "urls": [
  3588. "http://cdn10.live-tv.od.ua:8081/odtrkod/odtrkod-abr/odtrkod/odtrkod-sub/playlist.m3u8"
  3589. ]
  3590. },
  3591. {
  3592. "name": "Орбита",
  3593. "urls": [
  3594. "http://ftp.orbita.dn.ua/hls/orbita.m3u8"
  3595. ]
  3596. },
  3597. {
  3598. "name": "Кубань 24",
  3599. "urls": [
  3600. "https://stream.kuban24.tv:1500/hls/stream.m3u8"
  3601. ]
  3602. },
  3603. {
  3604. "name": "Клуб Стихи",
  3605. "urls": [
  3606. "http://hls-rossp.cdnvideo.ru/hls/5aac88ffdc96bf05a7f78899/720p.m3u8"
  3607. ]
  3608. },
  3609. {
  3610. "name": "Клуб Проза",
  3611. "urls": [
  3612. "http://hls-rossp.cdnvideo.ru/hls/5ace67f0dc96bf0a90d8a2b7/720p.m3u8"
  3613. ]
  3614. },
  3615. {
  3616. "name": "Клуб Слово",
  3617. "urls": [
  3618. "http://hls-rossp.cdnvideo.ru/hls/5ace6814e563f22e4ddc1f44/720p.m3u8"
  3619. ]
  3620. }
  3621. ]
  3622. }, {
  3623. "group": "经典回顾",
  3624. "channels": [{
  3625. "name": "辽宁春晚",
  3626. "urls": ["http://epg.112114.xyz/douyu/9322175"]
  3627. }, {
  3628. "name": "水浒",
  3629. "urls": ["http://epg.112114.xyz/douyu/3758762"]
  3630. }, {
  3631. "name": "西游记",
  3632. "urls": ["http://epg.112114.xyz/douyu/9518204"]
  3633. }, {
  3634. "name": "三国演义",
  3635. "urls": ["http://epg.112114.xyz/douyu/434971"]
  3636. }, {
  3637. "name": "隋唐寅义",
  3638. "urls": ["http://epg.112114.xyz/douyu/7552568"]
  3639. }, {
  3640. "name": "神乐华语4Y",
  3641. "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"]
  3642. }, {
  3643. "name": "贝爷影院4Y",
  3644. "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"]
  3645. }, {
  3646. "name": "国语译制",
  3647. "urls": ["http://epg.112114.xyz/douyu/2436390"]
  3648. }, {
  3649. "name": "金庸",
  3650. "urls": ["http://epg.112114.xyz/douyu/338759"]
  3651. }, {
  3652. "name": "香港赌片",
  3653. "urls": ["http://epg.112114.xyz/douyu/315457"]
  3654. }, {
  3655. "name": "经典喜剧",
  3656. "urls": ["http://epg.112114.xyz/douyu/9650887"]
  3657. }, {
  3658. "name": "周末经典",
  3659. "urls": ["http://epg.112114.xyz/douyu/3637765"]
  3660. }, {
  3661. "name": "女神金",
  3662. "urls": ["http://epg.112114.xyz/douyu/747764"]
  3663. }, {
  3664. "name": "特辑影院",
  3665. "urls": ["http://epg.112114.xyz/douyu/3637778"]
  3666. }, {
  3667. "name": "国产大片",
  3668. "urls": ["http://epg.112114.xyz/douyu/8986148"]
  3669. }]
  3670. }, {
  3671. "group": "弯弯的月亮",
  3672. "channels": [{
  3673. "name": "中天新闻",
  3674. "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"]
  3675. }, {
  3676. "name": "TVBS HD",
  3677. "urls": ["http://211.23.114.106:8545/http/116.50.42.19:8081/hls/64/806/ch15.m3u8"]
  3678. }, {
  3679. "name": "東森新聞",
  3680. "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"]
  3681. }, {
  3682. "name": "环宇新闻",
  3683. "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"]
  3684. }, {
  3685. "name": "年代新聞",
  3686. "urls": ["http://211.23.114.106:8517/http/60.251.39.91:8081/hls/67/809/ch27.m3u8"]
  3687. }, {
  3688. "name": "壹新闻",
  3689. "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"]
  3690. }, {
  3691. "name": "民视新闻",
  3692. "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"]
  3693. }, {
  3694. "name": "中視新聞",
  3695. "urls": ["http://66.90.88.132:8080/hls/ph00323/index.m3u8"]
  3696. },
  3697. {
  3698. "name": "台視新聞",
  3699. "urls": ["http://66.90.88.132:8080/hls/ph00324/index.m3u8"]
  3700. },
  3701. {
  3702. "name": "华視新聞",
  3703. "urls": ["http://66.90.88.132:8080/hls/ph00325/index.m3u8"]
  3704. },
  3705. {
  3706. "name": "三立新聞",
  3707. "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"]
  3708. }, {
  3709. "name": "東森綜合",
  3710. "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"]
  3711. }, {
  3712. "name": "東森戲劇",
  3713. "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"]
  3714. }, {
  3715. "name": "八大第一",
  3716. "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"]
  3717. }, {
  3718. "name": "八大綜合",
  3719. "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"]
  3720. }, {
  3721. "name": "八大戲劇",
  3722. "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"]
  3723. }, {
  3724. "name": "八大娛樂",
  3725. "urls": ["rtmp://45.88.148.122/channel/60c31db1961593122ebaf931?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  3726. }, {
  3727. "name": "八大精彩",
  3728. "urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv034"]
  3729. }, {
  3730. "name": "TVBS歡樂台",
  3731. "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"]
  3732. }, {
  3733. "name": "WAKUWAKUJAPAN",
  3734. "urls": ["http://211.23.114.106:8538/http/60.251.39.91:8081/hls/61/803/ch03.m3u8"]
  3735. }, {
  3736. "name": "中天娱乐",
  3737. "urls": ["http://211.23.114.106:8527/http/60.251.39.91:8081/hls/67/809/ch26.m3u8"]
  3738. }
  3739. ]
  3740. }, {
  3741. "group": "弯弯的太阳",
  3742. "channels": [{
  3743. "name": "CNN",
  3744. "urls": ["https://cnn-cnninternational-1-de.samsung.wurl.com/manifest/playlist_1280x720_3000k.m3u8"]
  3745. }, {
  3746. "name": "VOA",
  3747. "urls": ["https://voa-lh.akamaihd.net/i/voa_mpls_tvmc6@320298/index_1080_av-p.m3u8?sd=10&rebase=on"]
  3748. }, {
  3749. "name": "BBC",
  3750. "urls": ["http://103.199.161.254/Content/bbcworld/Live/Channel(BBCworld)/index.m3u8"]
  3751. }, {
  3752. "name": "CNBC",
  3753. "urls": ["http://211.23.114.106:8550/http/116.50.42.19:8078/hls/24/80/cnbc90.m3u8"]
  3754. }, {
  3755. "name": "DW",
  3756. "urls": ["https://dwamdstream102.akamaized.net/hls/live/2015525/dwstream102/stream05/streamPlaylist.m3u8"]
  3757. }, {
  3758. "name": "FOX NEWS",
  3759. "urls": ["https://fox-foxnewsnow-samsungus.amagi.tv/playlist.m3u8"]
  3760. }, {
  3761. "name": "sky新聞",
  3762. "urls": ["http://66.90.88.132:8080/hls/ph00212/index.m3u8"]
  3763. },
  3764. {
  3765. "name": "NHK",
  3766. "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",
  3767. "https://nhkw-zh-hlscomp.akamaized.net/8thz5iufork8wjip/playlist.m3u8"
  3768. ]
  3769. }, {
  3770. "name": "Bloomberg",
  3771. "urls": ["http://211.23.114.106:8551/http/116.50.42.19:8078/hls/43/80/bloomber.m3u8"]
  3772. }, {
  3773. "name": "JPKINO",
  3774. "urls": ["https://movie.mcas.jp/mcas/smil:wn1.smil/master.m3u8",
  3775. "http://movie.mcas.jp/mcas/wn1_2/master.m3u8"
  3776. ]
  3777. }, {
  3778. "name": "NHK 华语",
  3779. "urls": ["https://nhkworld.webcdn.stream.ne.jp/www11/nhkworld-tv/zh/725580/livecom_zh.m3u8", "https://nhkw-zh-hlscomp.akamaized.net/8thz5iufork8wjip/playlist.m3u8"]
  3780. },
  3781. {
  3782. "name": "全天新闻 日",
  3783. "urls": [
  3784. "https://n24-cdn-live.ntv.co.jp/ch01/index.m3u8", "https://n24-cdn-live.ntv.co.jp/ch01/High.m3u8",
  3785. "http://www.news24.jp/livestream/index.m3u8"
  3786. ]
  3787. },
  3788. {
  3789. "name": "Animax HD",
  3790. "urls": [
  3791. "https://livecdn.fptplay.net/hda3/animaxport_hls.smil/chunklist.m3u8"
  3792. ]
  3793. },
  3794. {
  3795. "name": "Atx",
  3796. "urls": [
  3797. "https://sub2.neetball.net/live/neet.m3u8"
  3798. ]
  3799. },
  3800. {
  3801. "name": "Gunma",
  3802. "urls": [
  3803. "https://movie.mcas.jp/switcher/smil:mcas8.smil/master.m3u8"
  3804. ]
  3805. },
  3806. {
  3807. "name": "宝石GHTV",
  3808. "urls": [
  3809. "https://gemstv.wide-stream.net/gemstv01/smil:gemstv01.smil/chunklist_w1860888413_b600000.m3u8"
  3810. ]
  3811. },
  3812. {
  3813. "name": "声优广播",
  3814. "urls": [
  3815. "http://www.uniqueradio.jp/agplayerf/hls/Active.m3u8"
  3816. ]
  3817. },
  3818. {
  3819. "name": "QVC",
  3820. "urls": [
  3821. "http://cdn-live1.qvc.jp/iPhone/800/800.m3u8"
  3822. ]
  3823. }
  3824. ]
  3825. },{
  3826. "group": "CCCP Золотая коллекция",
  3827. "channels": [{
  3828. "name": "CCCP HD",
  3829. "urls": ["http://s1.sr-vk.online/online/sssrhd/index.m3u8?cur=kuku_5065&key=7c58j770jilig80ek0i2ce6"]
  3830. }, {
  3831. "name": "СССР 1",
  3832. "urls": ["http://s1.sr-vk.online/online/sssr1/index.m3u8?cur=kuku_5065&key=63gkd9cbecela86g6g20226"]
  3833. }, {
  3834. "name": "СССР 2",
  3835. "urls": ["http://s1.sr-vk.online/online/sssr2/index.m3u8?cur=kuku_5065&key=66cee4al07248cia2i828k6"]
  3836. }, {
  3837. "name": "СССР",
  3838. "urls": ["http://s1.sr-vk.online/online/sssr/index.m3u8?cur=kuku_5065&key=780ai0l4efdfa8268ei0ac6"]
  3839. }, {
  3840. "name": "МОСФИЛЬМ",
  3841. "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"]
  3842. }, {
  3843. "name": "Беларусьфильм",
  3844. "urls": ["http://s1.sr-vk.online/online/belarusfilm/index.m3u8?cur=kuku_5065&key=1f3kijf6kakhekcik2ii806"]
  3845. }, {
  3846. "name": "ЛЕНФИЛЬМ",
  3847. "urls": ["http://s1.sr-vk.online/online/lenfilm/index.m3u8?cur=kuku_5065&key=476hdhh4119e0k604c8i8g6"]
  3848. },
  3849. {
  3850. "name": "Комедия СССР",
  3851. "urls": ["http://s1.sr-vk.online/online/comedy/index.m3u8?cur=kuku_5065&key=2efk8je30b19ik4ckgaag66"]
  3852. },
  3853. {
  3854. "name": "Cоветский дубляж",
  3855. "urls": ["http://s1.sr-vk.online/online/zarubez/index.m3u8?cur=kuku_5065&key=6gbe2b9hi7680g6a0c88ai12"]
  3856. },{
  3857. "name": "Милицейский канал",
  3858. "urls": ["http://s1.sr-vk.online/online/mentfilm/index.m3u8?cur=kuku_5065&key=6k7ahf9i8b8b6kci00e0406"]
  3859. }, {
  3860. "name": "Украинская ССР",
  3861. "urls": ["http://s1.sr-vk.online/online/ussr/index.m3u8?cur=kuku_5065&key=7194h07elfe3k84g6022686"]
  3862. }, {
  3863. "name": "Фильмы 90x",
  3864. "urls": ["http://s1.sr-vk.online/online/90x/index.m3u8?cur=kuku_5065&key=2kga8e27e75gci4a082kg47"]
  3865. }, {
  3866. "name": "Мульт",
  3867. "urls": ["http://s1.sr-vk.online/online/mult/index.m3u8?cur=kuku_5065&key=31egg5ga436d2022c2k64g7"]
  3868. }, {
  3869. "name": "Киностудия М.Горького",
  3870. "urls": ["http://s1.sr-vk.online/online/gor/index.m3u8?cur=kuku_5065&key=45da80jl4ieh20i2a664ei7"]
  3871. }, {
  3872. "name": "Свердловская киностудия",
  3873. "urls": ["http://s1.sr-vk.online/online/sverdlovsk/index.m3u8?cur=kuku_5065&key=80f61ga2j2172kig24042a7"]
  3874. }, {
  3875. "name": "Рижская киностудия",
  3876. "urls": ["http://s1.sr-vk.online/online/riga/index.m3u8?cur=kuku_5065&key=159ih8bacfl96ge844e0a67"]
  3877. }, {
  3878. "name": "Одесская киностудия",
  3879. "urls": ["http://s1.sr-vk.online/online/odessa/index.m3u8?cur=kuku_5065&key=11jgbcg9hj9hc2i28ka8ii7"]
  3880. }
  3881. ]
  3882. }
  3883. ],
  3884. "parses": [{
  3885. "name": "Json并发",
  3886. "type": 2,
  3887. "url": "Parallel"
  3888. }, {
  3889. "name": "瓜瓜优选",
  3890. "type": 2,
  3891. "url": "Preference"
  3892. }, {
  3893. "name": "Json轮询",
  3894. "type": 2,
  3895. "url": "Sequence"
  3896. }, {
  3897. "name": "瓜瓜免嗅",
  3898. "type": 2,
  3899. "url": "Cucumber"
  3900. }, {
  3901. "name": "看剧吧1",
  3902. "type": 1,
  3903. "url": "https://svip.renrenmi.cc:2222/api/?key=fI3YQ3vxF5uREfNpDU&url=",
  3904. "t": 204,
  3905. "i": "checkat2021-12-2018:43:35"
  3906. }, {
  3907. "name": "影阅阁",
  3908. "type": 1,
  3909. "url": "http://api1.json.vin:4433/api/?key=WPDh6vf0aT0ahepWzW&url=",
  3910. "t": 721,
  3911. "i": "check at 2021-12-28 19:44:27"
  3912. }, {
  3913. "name": "影阅阁1",
  3914. "type": 1,
  3915. "url": "https://json.pangujiexi.com:12345/json.php?url=",
  3916. "t": 184,
  3917. "i": "check at 2021-12-28 19:44:30"
  3918. }, {
  3919. "name": "影阅阁2",
  3920. "type": 1,
  3921. "url": "https://svip.renrenmi.cc:2222/api/?key=82KErJogweliHPt7Yp&url=",
  3922. "t": 123,
  3923. "i": "check at 2021-12-28 19:44:31"
  3924. }, {
  3925. "name": "影阅阁3",
  3926. "type": 1,
  3927. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=594615&key=bcehpqtxCEGKMT0248&url=",
  3928. "t": 236,
  3929. "i": "check at 2021-12-28 19:44:31"
  3930. }, {
  3931. "name": "影阅阁3",
  3932. "type": 1,
  3933. "url": "https://svip.renrenmi.cc:2222/api/?key=82KErJogweliHPt7Yp&url=",
  3934. "t": 235,
  3935. "i": "checkat2021-12-2018:44:00"
  3936. }, {
  3937. "name": "艾特影视",
  3938. "type": 1,
  3939. "url": "http://kelejiexi.aitee.cc/api/?key=Q5eOz72aSDAfZgbZit&url=",
  3940. "t": 522,
  3941. "i": "checkat2021-12-2018:44:31"
  3942. }, {
  3943. "name": "抹茶猪",
  3944. "type": 1,
  3945. "url": "https://svip.renrenmi.cc:2222/api/?key=mmh63jk67yRHfWc8lE&url=",
  3946. "t": 564,
  3947. "i": "checkat2021-12-2018:42:55"
  3948. }, {
  3949. "name": "月色影视",
  3950. "type": 1,
  3951. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=7743764&key=acgjlopuxACEHJLT48&url=",
  3952. "t": 565,
  3953. "i": "checkat2021-12-2018:43:24"
  3954. }, {
  3955. "name": "4K影院1",
  3956. "type": 1,
  3957. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1095368&key=cdgjpsuDFLNRTUVY03&url=",
  3958. "t": 583,
  3959. "i": "checkat2021-12-2018:43:30"
  3960. }, {
  3961. "name": "土豆TV",
  3962. "type": 1,
  3963. "url": "https://cs.024zs.com:4433/api/?key=mqGHkqM4qxhV5ddEzg&url=",
  3964. "t": 588,
  3965. "i": "checkat2021-12-2018:42:58"
  3966. }, {
  3967. "name": "段友影视",
  3968. "type": 1,
  3969. "url": "http://1.12.218.245/1696263602.php/?url=",
  3970. "t": 589,
  3971. "i": "check at 2021-12-20 18:43:44"
  3972. }, {
  3973. "name": "播放呀",
  3974. "type": 1,
  3975. "url": "https://i.hexh.ink/home/api?type=ys&uid=1767561&key=bdelmsvwBDEHMNQXYZ&url=",
  3976. "t": 591,
  3977. "i": "check at 2021-12-20 18:44:16"
  3978. }, {
  3979. "name": "蓝光视频",
  3980. "type": 1,
  3981. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1931000&key=gktuvyzABEORSYZ135&url=",
  3982. "t": 619,
  3983. "i": "check at 2021-12-20 18:43:48"
  3984. }, {
  3985. "name": "筋斗云",
  3986. "type": 1,
  3987. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1494542&key=ijmqvwxABEHILMOT48&url=",
  3988. "t": 621,
  3989. "i": "check at 2021-12-20 18:43:06"
  3990. }, {
  3991. "name": "追剧吧2",
  3992. "type": 1,
  3993. "url": "https://cs.024zs.com:4433/api/?key=YWgNNsISMq3Au9YhcH&url=",
  3994. "t": 632,
  3995. "i": "check at 2021-12-20 18:42:56"
  3996. }, {
  3997. "name": "看剧吧",
  3998. "type": 1,
  3999. "url": "http://vip.mengx.vip/home/api?type=ys&uid=3714324&key=adhmprtwyzBCHLSUX1&url=",
  4000. "t": 645,
  4001. "i": "check at 2021-12-20 18:43:35"
  4002. }, {
  4003. "name": "小强TV",
  4004. "type": 1,
  4005. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=867242&key=bchmpswDGLOQTXZ168&url=",
  4006. "t": 650,
  4007. "i": "check at 2021-12-20 18:42:58"
  4008. }, {
  4009. "name": "段友影视",
  4010. "type": 1,
  4011. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=998036&key=afhlnuvzDJLMOX3689&url=",
  4012. "t": 701,
  4013. "i": "check at 2021-12-20 18:43:40"
  4014. }, {
  4015. "name": "抹茶猪1",
  4016. "type": 1,
  4017. "url": "https://json.nbjx.vip:4399/?wap=0&url=",
  4018. "t": 705,
  4019. "i": "check at 2021-12-20 18:42:56"
  4020. }, {
  4021. "name": "疯狂看",
  4022. "type": 1,
  4023. "url": "https://a.zhuijula.top/yun_api.php?url=",
  4024. "t": 706,
  4025. "i": "check at 2021-12-20 18:44:28"
  4026. }, {
  4027. "name": "01",
  4028. "type": 0,
  4029. "url": "https://play.tkys.tv/?url="
  4030. }, {
  4031. "name": "02",
  4032. "type": 0,
  4033. "url": "https://jx.ysgc.xyz/?url="
  4034. }, {
  4035. "name": "03",
  4036. "type": 0,
  4037. "url": "https://jx.ysgc.xyz/?url="
  4038. }, {
  4039. "name": "04",
  4040. "type": 0,
  4041. "url": "http://dm.199cn.cn/vip/?url="
  4042. }, {
  4043. "name": "05",
  4044. "type": 0,
  4045. "url": "https://vip.2ktvb.com/player/?url="
  4046. }, {
  4047. "name": "m3u8",
  4048. "url": "https://jx.m3u8.tv/jiexi/?url="
  4049. },
  4050. {
  4051. "name": "003",
  4052. "type": 1,
  4053. "url": "http://47.94.137.151:8089/?url="
  4054. }, {
  4055. "name": "parwix",
  4056. "url": "https://jx.parwix.com:4433/player/?url="
  4057. }, {
  4058. "name": "易看",
  4059. "url": "https://analysis.yikan.one/analysis/player/?uid=8&my=fjkmoqFJLORTVZ1359&url="
  4060. },
  4061. {
  4062. "name": "追剧达人",
  4063. "url": "https://vip123kan.vip/m3u8.php?url="
  4064. }, {
  4065. "name": "虾米",
  4066. "url": "https://jx.xmflv.com/?url="
  4067. },
  4068. {
  4069. "name": "专用1",
  4070. "type": 1,
  4071. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1285201&key=bcikqtwxyADEGKUX36&url="
  4072. },
  4073. {
  4074. "name": "专用2",
  4075. "type": 1,
  4076. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1494542&key=ijmqvwxABEHILMOT48&url="
  4077. },
  4078. {
  4079. "name": "专用3",
  4080. "type": 1,
  4081. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1931000&key=gktuvyzABEORSYZ135&url="
  4082. },
  4083. {
  4084. "name": "专用4",
  4085. "type": 1,
  4086. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1095368&key=cdgjpsuDFLNRTUVY03&url="
  4087. },
  4088. {
  4089. "name": "专用5",
  4090. "type": 1,
  4091. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1095368&key=cdgjpsuDFLNRTUVY03&url="
  4092. },
  4093. {
  4094. "name": "专用6",
  4095. "type": 1,
  4096. "url": "https://api.qq755758836.xyz/295m3u8.php?url="
  4097. },
  4098. {
  4099. "name": "专用7",
  4100. "type": 1,
  4101. "url": " http://jx.kuanjv.com/mp4/5.1?url="
  4102. },{
  4103. "name": "猫群专用1",
  4104. "type": 1,
  4105. "url": "https://jhjx.kuanjv.com/?url="
  4106. }, {
  4107. "name": "猫群专用2",
  4108. "type": 1,
  4109. "url": "https://vip.kpjx.cc/api/?key=VU93wdaptITbCRaVbG&url="
  4110. }, {
  4111. "name": "猫群专用3",
  4112. "type": 1,
  4113. "url": "http://ts.yjhan.com:8090/api/?key=njU0bfiF05eODFfktq&url="
  4114. }, {
  4115. "name": "猫群专用4",
  4116. "type": 1,
  4117. "url": "https://jx.parwix.com:4433/player/?url="
  4118. }, {
  4119. "name": "猫群专用5",
  4120. "type": 1,
  4121. "url": "http://120.77.94.20/jx?url="
  4122. }, {
  4123. "name": "猫群专用6",
  4124. "type": 1,
  4125. "url": "https://svip.msdv.cn/api/?key=YAUhZt7TmZg2BUTQC2&url="
  4126. }, {
  4127. "name": "猫群专用7",
  4128. "type": 1,
  4129. "url": "http://ts.yjhan.com:8090/api/?key=1BVRnXqJv5WOma49ti&url="
  4130. }, {
  4131. "name": "猫群专用8",
  4132. "type": 1,
  4133. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1931000&key=gktuvyzABEORSYZ135&url="
  4134. },{
  4135. "name": "01",
  4136. "type": 1,
  4137. "url": "http://cx99999.cn/rxjson.php?url="
  4138. }, {
  4139. "name": "02",
  4140. "type": 1,
  4141. "url": "https://jx.renrenmi.cc/?url="
  4142. }, {
  4143. "name": "03",
  4144. "type": 1,
  4145. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1931000&key=gktuvyzABEORSYZ135&url="
  4146. }, {
  4147. "name": "04",
  4148. "type": 1,
  4149. "url": "https://lt.kpjx.cc/Mao.php?url="
  4150. }, {
  4151. "name": "05",
  4152. "type": 1,
  4153. "url": "https://vip.aiaine.com/api/?key=XiRCZOXcjcpxDI3spr&url="
  4154. }, {
  4155. "name": "06",
  4156. "type": 1,
  4157. "url": "http://47.113.126.237:1234/jiexi/meitian.php/?url="
  4158. }, {
  4159. "name": "07",
  4160. "type": 1,
  4161. "url": "http://47.100.138.210:92/?url="
  4162. }, {
  4163. "name": "08",
  4164. "type": 1,
  4165. "url": "http://47.100.138.210:91/home/api?type=ys&uid=7593435&key=ehortuyAHMNQTWX457&url="
  4166. }, {
  4167. "name": "09",
  4168. "type": 1,
  4169. "url": "https://jx.kupu.cc/json/jxbanyung.php/?url="
  4170. }, {
  4171. "name": "10",
  4172. "type": 1,
  4173. "url": "https://jsap.attakids.com/?url="
  4174. }, {
  4175. "name": "21",
  4176. "type": 1,
  4177. "url": "https://vip.bljiex.com/?url="
  4178. }, {
  4179. "name": "22",
  4180. "type": 1,
  4181. "url": "https://player.s9d.cn/?url="
  4182. }, {
  4183. "name": "23",
  4184. "type": 1,
  4185. "url": "https://jhpc.manduhu.com/j1217.php?url="
  4186. }, {
  4187. "name": "24",
  4188. "type": 1,
  4189. "url": "https://app.okmedcos.com/4k/?url="
  4190. }, {
  4191. "name": "25",
  4192. "type": 1,
  4193. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=7631191&key=cdemqsxFGKLNRVXYZ9&url="
  4194. }, {
  4195. "name": "ok3389",
  4196. "url": "https://api.okjx.cc:3389/jx.php?url="
  4197. },
  4198. {
  4199. "name": "游艺",
  4200. "url": "https://api.u1o.net/?url="
  4201. }, {
  4202. "name": "Preference",
  4203. "type": 1,
  4204. "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$$播放呀"
  4205. }
  4206. ],
  4207. "flags": ["youku", "qq", "iqiyi", "qiyi", "letv", "sohu", "tudou", "pptv", "mgtv", "wasu", "bilibili"],
  4208. "ijk": [{
  4209. "group": "软解码",
  4210. "options": [{
  4211. "category": 4,
  4212. "name": "opensles",
  4213. "value": "0"
  4214. }, {
  4215. "category": 4,
  4216. "name": "overlay-format",
  4217. "value": "842225234"
  4218. }, {
  4219. "category": 4,
  4220. "name": "framedrop",
  4221. "value": "1"
  4222. }, {
  4223. "category": 4,
  4224. "name": "soundtouch",
  4225. "value": "1"
  4226. }, {
  4227. "category": 4,
  4228. "name": "start-on-prepared",
  4229. "value": "1"
  4230. }, {
  4231. "category": 1,
  4232. "name": "http-detect-range-support",
  4233. "value": "0"
  4234. }, {
  4235. "category": 1,
  4236. "name": "fflags",
  4237. "value": "fastseek"
  4238. }, {
  4239. "category": 2,
  4240. "name": "skip_loop_filter",
  4241. "value": "48"
  4242. }, {
  4243. "category": 4,
  4244. "name": "reconnect",
  4245. "value": "1"
  4246. }, {
  4247. "category": 4,
  4248. "name": "enable-accurate-seek",
  4249. "value": "0"
  4250. }, {
  4251. "category": 4,
  4252. "name": "mediacodec",
  4253. "value": "0"
  4254. }, {
  4255. "category": 4,
  4256. "name": "mediacodec-auto-rotate",
  4257. "value": "0"
  4258. }, {
  4259. "category": 4,
  4260. "name": "mediacodec-handle-resolution-change",
  4261. "value": "0"
  4262. }, {
  4263. "category": 4,
  4264. "name": "mediacodec-hevc",
  4265. "value": "0"
  4266. }, {
  4267. "category": 1,
  4268. "name": "dns_cache_timeout",
  4269. "value": "600000000"
  4270. }]
  4271. }, {
  4272. "group": "硬解码",
  4273. "options": [{
  4274. "category": 4,
  4275. "name": "opensles",
  4276. "value": "0"
  4277. }, {
  4278. "category": 4,
  4279. "name": "overlay-format",
  4280. "value": "842225234"
  4281. }, {
  4282. "category": 4,
  4283. "name": "framedrop",
  4284. "value": "1"
  4285. }, {
  4286. "category": 4,
  4287. "name": "soundtouch",
  4288. "value": "1"
  4289. }, {
  4290. "category": 4,
  4291. "name": "start-on-prepared",
  4292. "value": "1"
  4293. }, {
  4294. "category": 1,
  4295. "name": "http-detect-range-support",
  4296. "value": "0"
  4297. }, {
  4298. "category": 1,
  4299. "name": "fflags",
  4300. "value": "fastseek"
  4301. }, {
  4302. "category": 2,
  4303. "name": "skip_loop_filter",
  4304. "value": "48"
  4305. }, {
  4306. "category": 4,
  4307. "name": "reconnect",
  4308. "value": "1"
  4309. }, {
  4310. "category": 4,
  4311. "name": "enable-accurate-seek",
  4312. "value": "0"
  4313. }, {
  4314. "category": 4,
  4315. "name": "mediacodec",
  4316. "value": "1"
  4317. }, {
  4318. "category": 4,
  4319. "name": "mediacodec-auto-rotate",
  4320. "value": "1"
  4321. }, {
  4322. "category": 4,
  4323. "name": "mediacodec-handle-resolution-change",
  4324. "value": "1"
  4325. }, {
  4326. "category": 4,
  4327. "name": "mediacodec-hevc",
  4328. "value": "1"
  4329. }, {
  4330. "category": 1,
  4331. "name": "dns_cache_timeout",
  4332. "value": "600000000"
  4333. }]
  4334. }],
  4335. "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"]
  4336. }