123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202 |
- {
- "spider": "./spider.jar;md5;6044e3ceb295d82028c72e4524bae5f5",
- "wallpaper": "https://api.likepoems.com/img/bing",
- "sites": [
- {
- "key": "豆瓣",
- "name": "豆瓣|首页",
- "type": 3,
- "api": "csp_Douban",
- "searchable": 0
- },
- {
- "key": "预告",
- "name": "新片|预告",
- "type": 3,
- "api": "csp_YGP",
- "searchable": 0
- },
- {
- "key": "本地",
- "name": "本地|视频",
- "type": 3,
- "api": "csp_LocalFile"
- },
- {
- "key": "配置中心",
- "name": "配置|中心",
- "type": 3,
- "api": "csp_Config",
- "searchable": 0,
- "changeable": 0,
- "indexs": 0,
- "style": {
- "type": "rect",
- "ratio": 1.597
- }
- },
- {
- "key": "无忧短剧",
- "name": "无忧|短剧",
- "type": 3,
- "api": "csp_Duanj",
- "searchable": 1,
- "changeable": 0
- },
- {
- "key": "在线短剧",
- "name": "在线|短剧",
- "type": 3,
- "api": "csp_Duanju",
- "searchable": 1,
- "changeable": 0
- },
- {
- "key": "星芽短剧",
- "name": "星芽|短剧",
- "type": 3,
- "api": "csp_AppXY",
- "searchable": 1,
- "quickSearch": 0,
- "filterable": 0
- },
- {
- "key": "天堂短剧",
- "name": "天堂|短剧",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/天堂短剧.js"
- },
- {
- "key": "爱你短剧",
- "name": "爱你|短剧",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./XYQHiker/爱你短剧.json"
- },
- {
- "key": "河马短剧",
- "name": "河马|短剧",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./XYQHiker/河马短剧.json"
- },
- {
- "key": "短剧屋",
- "name": "短剧屋|短剧",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./XYQHiker/短剧屋.json"
- },
- {
- "key": "韩小圈",
- "name": "韩小圈|APP",
- "type": 3,
- "api": "csp_HanXiaoQuan",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "酷影视",
- "name": "酷影视|APP",
- "type": 3,
- "api": "csp_AppYsV2",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://www.tvkuys.xyz/api.php/app/"
- },
- {
- "key": "南瓜影视",
- "name": "南瓜|APP",
- "type": 3,
- "api": "csp_Nangua",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "天天影视",
- "name": "天天|APP",
- "type": 3,
- "api": "csp_AppTT",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "热播影视",
- "name": "热播|APP",
- "type": 3,
- "api": "csp_AppRB",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "追剧影视",
- "name": "追剧|APP",
- "type": 3,
- "api": "csp_AppZJ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "洽洽影视",
- "name": "洽洽|APP",
- "type": 3,
- "api": "csp_AppGZ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "兄弟影视",
- "name": "兄弟|APP",
- "type": 3,
- "api": "csp_AppGetApp",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "KhYl01Kekjo9vLs09V+rOtv/6QaOFwdQp2ne4h22GLkT99eCXh9SJ/lGZNM8zgk1OnFWx0zBQ9Y/9mAjQB67LaEp7Yj7w9SYBEjFbdPjKy3EHp7uBIHXVI7/dZ4r/dJapz6ihlWwqY2KlGuarL/+9suxO4ZJFOg1OxN+dTrTbi2Muff1CmBkNfrY+s4eQhuLBs4vVhslYH/yyPXePZ1AgNT8ZuBCcfE2LpJ19OKKPIvs+pt4Z/yzVA=="
- },
- {
- "key": "追梦影视",
- "name": "追梦|APP",
- "type": 3,
- "api": "csp_App",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "KhYJ00ye42lrgMpNiF+rOvz59ga1R1FQv2eU9xm2Iu1VrOOAQhMKd/5Ef8cogkk0Y3RJ20zdTsh6uytEQhi5H+x3q9ykk86fAlKxZsD4JSOVC5vqBIHXLUdbmRnBIXWxcZBIXFtvDsnRlRrdhe15op6nVQPj3jTftN2v9+IDRS2auZS8W1hoOL2jvcoiUEzLToN7FV14amT6puaPWMkj34WXPOALOvIkDM57pLfeccPg9oZFJOvob2S7NE55hsAbY0y7l63JB0ukoDmLq9q4YRSh/M6i0i8XMVk8bLFggs+R73Ld+p5bipdnmmrRg3qMu5dVCFuyfllyKl0ZJddNw4AFQExqghU1xo0RpCm1FgL+FmBLMdYCxM+fNYaF6blwRnzcfPct0XtmXoB9"
- },
- {
- "key": "酷酷影视",
- "name": "酷酷|APP",
- "type": 3,
- "api": "csp_App",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "KhYJ00ye42lr+7UsoxLsfea0p0H5SUkT7Tv/+ACyPvFQ+ozQDB0SI/NCeN59w0RiNzIKjBHQR9I/4GBIAlWmFKcvyM+yqtiPTwaxfs74YG+PHrb7VfKDLVFb0luKJl2gZ5pIVjIwVQNUCt5TAXutZxNBtlKGin+L/4vCsOIjR2r16dqyQwlpOKySq4NGGkKeA48tTxR+emOxn/qGPt5xjInFeLJXMvYxdp47pOKOA4Oj4LJnJ+ezEzScDoT2IASN0Rvl2ZneGEGkqlDU8NquYUP/svq1zScEYCpobKdg0ILB7Hba+5cMwtlnjGiHyCaM9dx+z+cVzD9cSTo/aL5gSoAPT4QzkFxezSARli9nVDmnS0MrY/NhiexS8AE+1et9"
- },
- {
- "key": "忍者影视",
- "name": "忍者|APP",
- "type": 3,
- "api": "csp_AppRZ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "凡人影视",
- "name": "凡人|APP",
- "type": 3,
- "api": "csp_AppFr",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "大米星球",
- "name": "大米|APP",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/APPV2.js?type=url¶ms=https://damifan.wiki"
- },
- {
- "key": "西瓜视频",
- "name": "西瓜|视频",
- "type": 3,
- "api": "csp_AmuXiguaV2",
- "searchable": 1,
- "quickSearch": 0,
- "filterable": 0,
- "changeable": 0,
- "style": {
- "type": "rect",
- "ratio": 1.597
- }
- },
- {
- "key": "采集之王",
- "name": "采集|合集",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "ext": "./JS/采集之王.js?type=url¶ms=../JSON/采集静态.json$1$1"
- },
- {
- "key": "厂长资源",
- "name": "厂长|资源",
- "type": 3,
- "api": "csp_Czzy",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "低端影视",
- "name": "低端|影视",
- "type": 3,
- "api": "csp_Ddys",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "快看影视",
- "name": "快看|影视",
- "type": 3,
- "api": "csp_Kuaikan",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "农民影视",
- "name": "农民|影视",
- "type": 3,
- "api": "csp_Nmys",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "立播影视",
- "name": "立播|影视",
- "type": 3,
- "api": "csp_Libvio",
- "searchable": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
- "site": "https://libvio.link"
- }
- },
- {
- "key": "饺子影视",
- "name": "饺子|影视",
- "type": 3,
- "api": "csp_Jiaozi",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "全网影视",
- "name": "全网|影视",
- "type": 3,
- "api": "csp_Quanwk",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://888.qkw2.cc"
- },
- {
- "key": "看客影视",
- "name": "看客|影视",
- "type": 3,
- "api": "csp_Kanke",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://www.kmeiju.com"
- },
- {
- "key": "瓜子影视",
- "name": "瓜子|影视",
- "type": 3,
- "api": "csp_Gz360",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "疯狗影视",
- "name": "疯狗|影视",
- "type": 3,
- "api": "csp_FengGo",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "比特影视",
- "name": "比特|影视",
- "type": 3,
- "api": "csp_Bttwo",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "FreeOK",
- "name": "️️Free|影视",
- "type": 3,
- "api": "csp_FreeOK",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://www.freeok.lol"
- },
- {
- "key": "奇优影视",
- "name": "奇优|影视",
- "type": 3,
- "api": "csp_Qiyou",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "骚火影视",
- "name": "骚火|影视",
- "type": 3,
- "api": "csp_SaoHuo",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "金牌影视",
- "name": "金牌|影视",
- "type": 3,
- "api": "csp_WebJP",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "哔嘀影视",
- "name": "哔嘀|影视",
- "type": 3,
- "api": "csp_WebYJ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "铁剧影视",
- "name": "铁剧|影视",
- "type": 3,
- "api": "csp_WebBr",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "真心影视",
- "name": "真心|影视",
- "type": 3,
- "api": "csp_WebGZ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "耐看影视",
- "name": "耐看|影视",
- "type": 3,
- "api": "csp_WebNK",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "素白白",
- "name": "素白白|影视",
- "type": 3,
- "api": "csp_Subaibai",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "小苹果",
- "name": "小苹果|影视",
- "type": 3,
- "api": "csp_Xpg",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "机器人",
- "name": "机器人|影视",
- "type": 3,
- "api": "csp_Ikanbot",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "新视觉",
- "name": "新视觉|影视",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./XBPQ/新视觉.json"
- },
- {
- "key": "电影牛",
- "name": "电影牛|影视",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./XYQHiker/电影牛.json"
- },
- {
- "key": "爱奇艺",
- "name": "爱奇艺|视频",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/爱奇艺.js"
- },
- {
- "key": "三六零",
- "name": "三六零|视频",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/三六零.js"
- },
- {
- "key": "剧圈圈",
- "name": "剧圈圈|影视",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/剧圈圈.js"
- },
- {
- "key": "追剧迷",
- "name": "追剧迷|影视",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/追剧迷.js"
- },
- {
- "key": "看了么",
- "name": "看了么|影视",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/看了么.js"
- },
- {
- "key": "茶杯狐",
- "name": "茶杯狐|影视",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/茶杯狐.js"
- },
- {
- "key": "魔力高清",
- "name": "魔力|影视",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/魔力高清.js"
- },
- {
- "key": "腾讯视频",
- "name": "腾讯|视频",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/腾讯视频.js"
- },
- {
- "key": "优酷视频",
- "name": "优酷|视频",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/优酷视频.js"
- },
- {
- "key": "芒果视频",
- "name": "芒果|视频",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/芒果视频.js"
- },
- {
- "key": "搜狗视频",
- "name": "搜狗|视频",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/搜狗视频.js"
- },
- {
- "key": "哔哩视频",
- "name": "哔哩|视频",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/哔哩视频.js"
- },
- {
- "key": "碟调影视",
- "name": "碟调|影视",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/碟调影视.js"
- },
- {
- "key": "奇趣影视",
- "name": "奇趣|影视",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./XYQHiker/奇趣影视.json"
- },
- {
- "key": "1905",
- "name": "1905|影视",
- "type": 3,
- "api": "csp_Web1905",
- "searchable": 1,
- "quickSearch": 0,
- "filterable": 0
- },
- {
- "key": "红牛资源",
- "name": "红牛|采集",
- "type": 1,
- "api": "https://www.hongniuzy2.com/api.php/provide/vod/",
- "searchable": 1,
- "changeable": 1,
- "categories": [
- "动作片",
- "喜剧片",
- "爱情片",
- "科幻片",
- "恐怖片",
- "剧情片",
- "战争片",
- "国产剧",
- "港澳剧",
- "日剧",
- "欧美剧",
- "台湾剧",
- "泰剧",
- "韩剧",
- "纪录片",
- "动漫电影"
- ]
- },
- {
- "key": "光速资源",
- "name": "光速|采集",
- "type": 1,
- "api": "http://api.guangsuapi.com/api.php/provide/vod/",
- "searchable": 1,
- "changeable": 1,
- "categories": [
- "动作片",
- "喜剧片",
- "爱情片",
- "科幻片",
- "剧情片",
- "恐怖片",
- "战争片",
- "动漫电影",
- "大陆剧",
- "欧美剧",
- "港澳剧",
- "韩剧",
- "日剧",
- "台湾剧",
- "泰剧",
- "综艺",
- "动漫",
- "记录片"
- ]
- },
- {
- "key": "极速资源",
- "name": "极速|采集",
- "type": 1,
- "api": "https://jszyapi.com/api.php/provide/vod/",
- "searchable": 1,
- "changeable": 1,
- "categories": [
- "日剧",
- "马泰剧",
- "内地剧",
- "欧美剧",
- "香港剧",
- "韩剧",
- "台湾剧",
- "恐怖片",
- "动画片",
- "剧情片",
- "战争片",
- "动作片",
- "记录片",
- "爱情片",
- "喜剧片",
- "科幻片",
- "灾难片",
- "悬疑片",
- "犯罪片",
- "中国动漫",
- "日本动漫",
- "欧美动漫"
- ]
- },
- {
- "key": "快车资源",
- "name": "快车|采集",
- "type": 1,
- "api": "https://caiji.kczyapi.com/api.php/provide/vod/",
- "searchable": 1,
- "changeable": 1,
- "categories": [
- "动作片",
- "喜剧片",
- "爱情片",
- "科幻片",
- "恐怖片",
- "战争片",
- "剧情片",
- "动画片",
- "纪录片",
- "国产剧",
- "香港剧",
- "台湾剧",
- "欧美剧",
- "韩国剧",
- "日本剧",
- "泰国剧",
- "海外剧",
- "国产动漫",
- "日本动漫",
- "欧美动漫",
- "大陆综艺",
- "日韩综艺",
- "港台综艺",
- "欧美综艺"
- ]
- },
- {
- "key": "索尼资源",
- "name": "索尼|采集",
- "type": 1,
- "api": "https://suoniapi.com/api.php/provide/vod/",
- "searchable": 1,
- "changeable": 1,
- "categories": [
- "动作片",
- "喜剧片",
- "爱情片",
- "科幻片",
- "恐怖片",
- "剧情片",
- "战争片",
- "纪录片",
- "动画片",
- "国产剧",
- "欧美剧",
- "韩剧",
- "日剧",
- "港剧",
- "台剧",
- "泰剧",
- "海外剧",
- "大陆综艺",
- "日韩综艺",
- "港台综艺",
- "欧美综艺",
- "国产动漫",
- "日韩动漫",
- "欧美动漫",
- "港台动漫",
- "海外动漫"
- ]
- },
- {
- "key": "量子资源",
- "name": "量子|采集",
- "type": 1,
- "api": "https://cj.lziapi.com/api.php/provide/vod/",
- "searchable": 1,
- "changeable": 1,
- "categories": [
- "动作片",
- "喜剧片",
- "科幻片",
- "恐怖片",
- "爱情片",
- "剧情片",
- "战争片",
- "记录片",
- "国产剧",
- "欧美剧",
- "香港剧",
- "韩国剧",
- "台湾剧",
- "日本剧",
- "海外剧",
- "泰国剧",
- "国产动漫",
- "日韩动漫",
- "欧美动漫",
- "港台动漫",
- "海外动漫",
- "大陆综艺",
- "港台综艺",
- "日韩综艺",
- "欧美综艺"
- ]
- },
- {
- "key": "非凡资源",
- "name": "非凡|采集",
- "type": 1,
- "api": "http://cj.ffzyapi.com/api.php/provide/vod/",
- "searchable": 1,
- "changeable": 1,
- "categories": [
- "动作片",
- "喜剧片",
- "科幻片",
- "恐怖片",
- "爱情片",
- "剧情片",
- "战争片",
- "记录片",
- "国产剧",
- "欧美剧",
- "香港剧",
- "韩国剧",
- "台湾剧",
- "日本剧",
- "海外剧",
- "泰国剧",
- "国产动漫",
- "日韩动漫",
- "欧美动漫",
- "港台动漫",
- "海外动漫",
- "大陆综艺",
- "港台综艺",
- "日韩综艺",
- "欧美综艺"
- ]
- },
- {
- "key": "56动漫",
- "name": "56|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/56动漫.js"
- },
- {
- "key": "58动漫",
- "name": "58|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/58动漫.js"
- },
- {
- "key": "NT动漫",
- "name": "NT|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/NT动漫.js"
- },
- {
- "key": "Anime1",
- "name": "Anime1|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/Anime1.js"
- },
- {
- "key": "动画片",
- "name": "动画片|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/动画片大全.js"
- },
- {
- "key": "路漫漫",
- "name": "路漫漫|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/路漫漫.js"
- },
- {
- "key": "动漫岛",
- "name": "动漫岛|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/动漫岛.js"
- },
- {
- "key": "去看吧",
- "name": "去看吧|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/去看吧.js"
- },
- {
- "key": "爱弹幕",
- "name": "爱弹幕|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/爱弹幕.js"
- },
- {
- "key": "异世界",
- "name": "异世界|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/异世界.js"
- },
- {
- "key": "好看动漫",
- "name": "好看|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/好看动漫.js"
- },
- {
- "key": "奇米动漫",
- "name": "奇米|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/奇米动漫.js"
- },
- {
- "key": "怡萱动漫",
- "name": "怡萱|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/怡萱动漫.js"
- },
- {
- "key": "花子动漫",
- "name": "花子|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/花子动漫.js"
- },
- {
- "key": "动漫巴士",
- "name": "巴士|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/动漫巴士.js"
- },
- {
- "key": "樱花动漫",
- "name": "樱花|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/樱花动漫.js"
- },
- {
- "key": "大米动漫",
- "name": "大米|动漫",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/大米动漫.js"
- },
- {
- "key": "南瓜弹幕",
- "name": "南瓜|弹幕",
- "type": 3,
- "api": "csp_Nangua",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "danmu": true
- }
- },
- {
- "key": "厂长弹幕",
- "name": "厂长|弹幕",
- "type": 3,
- "api": "csp_Czzy",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "danmu": true
- }
- },
- {
- "key": "天天弹幕",
- "name": "天天|弹幕",
- "type": 3,
- "api": "csp_TianTian",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "danmu": true
- }
- },
- {
- "key": "热播弹幕",
- "name": "热播|弹幕",
- "type": 3,
- "api": "csp_ReBo",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "danmu": true
- }
- },
- {
- "key": "糯米弹幕",
- "name": "糯米|弹幕",
- "type": 3,
- "api": "csp_Nmys",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "danmu": true
- }
- },
- {
- "key": "文才弹幕",
- "name": "文才|弹幕",
- "type": 3,
- "api": "csp_Jpys",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "danmu": true
- }
- },
- {
- "key": "哔哩弹幕",
- "name": "哔哩|弹幕",
- "type": 3,
- "api": "csp_Bilimd",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "style": {
- "type": "rect",
- "ratio": 1.597
- },
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/TVBox/bilibili.txt"
- },
- "timeout": 10
- },
- {
- "key": "立播弹幕",
- "name": "立播|弹幕",
- "type": 3,
- "api": "csp_Libvio",
- "searchable": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
- "site": "https://libvio.link",
- "danmu": true
- }
- },
- {
- "key": "腾讯弹幕",
- "name": "腾讯|弹幕",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/腾讯弹幕.js"
- },
- {
- "key": "优酷弹幕",
- "name": "优酷|弹幕",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/优酷弹幕.js"
- },
- {
- "key": "悠悠弹幕",
- "name": "悠悠|弹幕",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/悠悠弹幕.js"
- },
- {
- "key": "小熊弹幕",
- "name": "小熊|弹幕",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/小熊弹幕.js"
- },
- {
- "key": "巨人弹幕",
- "name": "巨人|弹幕",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/巨人弹幕.js"
- },
- {
- "key": "小虎斑弹幕",
- "name": "小虎斑|弹幕",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/小虎斑弹幕.js"
- },
- {
- "key": "三六零弹幕",
- "name": "三六零|弹幕",
- "type": 3,
- "api": "csp_Sp360",
- "searchable": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "danmu": true
- }
- },
- {
- "key": "机器人弹幕",
- "name": "机器人|弹幕",
- "type": 3,
- "api": "csp_Ikanbot",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "danmu": true
- }
- },
- {
- "key": "小苹果弹幕",
- "name": "小苹果|弹幕",
- "type": 3,
- "api": "csp_Xpg",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "danmu": true
- }
- },
- {
- "key": "荐片弹幕",
- "name": "荐片|弹幕",
- "type": 3,
- "api": "csp_Jianpian",
- "playerType": 1,
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "danmu": true
- }
- },
- {
- "key": "哔嘀弹幕",
- "name": "哔嘀|弹幕",
- "type": 3,
- "api": "csp_Bdys",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "site": "https://www.yjys05.com",
- "danmu": true
- }
- },
- {
- "key": "玩偶弹幕",
- "name": "玩偶哥哥|4K弹幕",
- "type": 3,
- "api": "csp_Wogg",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
- "wogg": true,
- "danmu": true
- }
- },
- {
- "key": "玩偶备用弹幕",
- "name": "玩偶备用|4K弹幕",
- "type": 3,
- "api": "csp_Wogg",
- "quickSearch": 1,
- "changeable": 1,
- "filterable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
- "site": "https://wogg.xxooo.cf",
- "danmu": true
- }
- },
- {
- "key": "夸克欧歌弹幕",
- "name": "欧哥|4K弹幕",
- "type": 3,
- "api": "csp_Wobg",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
- "site": "https://woog.nxog.eu.org",
- "danmu": true
- }
- },
- {
- "key": "夸克土豆弹幕",
- "name": "土豆|4K弹幕",
- "type": 3,
- "api": "csp_Wobg",
- "quickSearch": 1,
- "changeable": 1,
- "filterable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "site": "https://yunpan.yunpay.cc",
- "danmu": true
- }
- },
- {
- "key": "夸克多多弹幕",
- "name": "多多|4K弹幕",
- "type": 3,
- "api": "csp_Wobg",
- "quickSearch": 1,
- "changeable": 1,
- "filterable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "site": "https://tv.yydsys.top",
- "danmu": true
- }
- },
- {
- "key": "夸克蜡笔弹幕",
- "name": "蜡笔|4K弹幕",
- "type": 3,
- "api": "csp_Wobg",
- "quickSearch": 1,
- "changeable": 1,
- "filterable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "site": "http://duopan.fun",
- "danmu": true
- }
- },
- {
- "key": "夸克至臻弹幕",
- "name": "至臻|4K弹幕",
- "type": 3,
- "api": "csp_Wobg",
- "quickSearch": 1,
- "changeable": 1,
- "filterable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
- "site": "https://mihdr.top",
- "danmu": true
- }
- },
- {
- "key": "夸克奥秘弹幕",
- "name": "奥秘|4K弹幕",
- "type": 3,
- "api": "csp_Wobg",
- "quickSearch": 1,
- "changeable": 1,
- "filterable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
- "site": "https://vip.omii.top",
- "danmu": true
- }
- },
- {
- "key": "夸克云星弹幕",
- "name": "云星|4K弹幕",
- "type": 3,
- "api": "csp_Wobg",
- "quickSearch": 1,
- "changeable": 1,
- "filterable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
- "site": "https://4k.4u4.cn",
- "danmu": true
- }
- },
- {
- "key": "夸克木偶弹幕",
- "name": "木偶|4K弹幕",
- "type": 3,
- "api": "csp_Wobg",
- "quickSearch": 1,
- "changeable": 1,
- "filterable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
- "site": "http://mogg.top",
- "danmu": true
- }
- },
- {
- "key": "夸克影搜弹幕",
- "name": "影搜|弹幕",
- "type": 3,
- "api": "csp_Yingso",
- "searchable": 1,
- "filterable": 0,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "danmu": true
- }
- },
- {
- "key": "搜索弹幕",
- "name": "搜索|弹幕",
- "type": 3,
- "api": "csp_PanSearch",
- "searchable": 1,
- "filterable": 0,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "danmu": true
- }
- },
- {
- "key": "云云弹幕",
- "name": "云云|弹幕",
- "type": 3,
- "api": "csp_Upys",
- "searchable": 1,
- "filterable": 0,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "danmu": true
- }
- },
- {
- "key": "云搜弹幕",
- "name": "云搜|弹幕",
- "type": 3,
- "api": "csp_UpYun",
- "searchable": 1,
- "filterable": 0,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "danmu": true
- }
- },
- {
- "key": "盘搜弹幕",
- "name": "盘搜|弹幕",
- "type": 3,
- "api": "csp_PanSou",
- "searchable": 1,
- "filterable": 0,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "danmu": true
- }
- },
- {
- "key": "易搜弹幕",
- "name": "易搜|弹幕",
- "type": 3,
- "api": "csp_YiSo",
- "searchable": 1,
- "filterable": 0,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "danmu": true,
- "cookie": "satoken=0eedba28-be8a-4f01-81af-2d8d44808ecf"
- }
- },
- {
- "key": "云盘弹幕",
- "name": "云盘|弹幕",
- "type": 3,
- "api": "csp_Yunpan4k",
- "searchable": 1,
- "filterable": 0,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "danmu": true
- }
- },
- {
- "key": "米搜弹幕",
- "name": "米搜|弹幕",
- "type": 3,
- "api": "csp_Qkpanso",
- "searchable": 1,
- "filterable": 1,
- "changeable": 0,
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "site": "https://www.misou.fun",
- "danmu": true
- }
- },
- {
- "key": "夸搜弹幕",
- "name": "夸搜|弹幕",
- "type": 3,
- "api": "csp_Qkso",
- "searchable": 1,
- "filterable": 1,
- "changeable": 0,
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "danmu": true
- }
- },
- {
- "key": "小纸条弹幕",
- "name": "小纸条|弹幕",
- "type": 3,
- "api": "csp_XiaoZhiTiao",
- "searchable": 1,
- "filterable": 1,
- "changeable": 0,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "danmu": true
- }
- },
- {
- "key": "夸克趣盘搜弹幕",
- "name": "趣盘搜|弹幕",
- "type": 3,
- "api": "csp_QuPanSou",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "danmu": true
- }
- },
- {
- "key": "夸克爱盘搜弹幕",
- "name": "爱盘搜|弹幕",
- "type": 3,
- "api": "csp_AiPanSou",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "danmu": true
- }
- },
- {
- "key": "夸克盘搜弹幕",
- "name": "夸克盘搜|弹幕",
- "type": 3,
- "api": "csp_Qkpanso",
- "searchable": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "danmu": true
- }
- },
- {
- "key": "荐片",
- "name": "荐片|磁力",
- "type": 3,
- "api": "csp_Jianpian",
- "playerType": 1,
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "New6v",
- "name": "New6V|磁力",
- "type": 3,
- "api": "csp_New6v",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://www.xb6v.com"
- },
- {
- "key": "SeedHub",
- "name": "SeedHub|磁力",
- "type": 3,
- "api": "csp_SeedHub",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "音范丝",
- "name": "音范丝|磁力",
- "type": 3,
- "api": "csp_XPath",
- "searchable": 1,
- "quickSearch": 0,
- "changeable": 0,
- "ext": "./XPath/音范丝.json"
- },
- {
- "key": "磁力熊",
- "name": "磁力熊|磁力",
- "type": 3,
- "api": "./JS/drpy2.min.js",
- "ext": "./JS/磁力熊.js"
- },
- {
- "key": "美剧迷",
- "name": "美剧迷|磁力",
- "type": 3,
- "api": "csp_MeijuMi",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "迅雷吧",
- "name": "迅雷吧|磁力",
- "type": 3,
- "api": "csp_Xunlei8",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "电影港",
- "name": "电影港|磁力",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./XYQHiker/电影港.json"
- },
- {
- "key": "布谷TV",
- "name": "布谷TV|磁力",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./XBPQ/布谷TV.json"
- },
- {
- "key": "BT天堂",
- "name": "BT天堂|磁力",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./XYQHiker/BT天堂.json"
- },
- {
- "key": "Mp4电影",
- "name": "Mp4电影|磁力",
- "type": 3,
- "api": "csp_Mp4Mov",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "哔嘀影视",
- "name": "哔嘀影视|磁力",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./XYQHiker/哔嘀影视.json"
- },
- {
- "key": "酷吧电影",
- "name": "酷吧电影|磁力",
- "type": 3,
- "api": "csp_KubaCL",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "美剧天堂",
- "name": "美剧天堂|磁力",
- "type": 3,
- "api": "csp_MeijuTT",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "我的阿里",
- "name": "我的|阿里",
- "type": 3,
- "api": "csp_MyAli",
- "searchable": 0,
- "quickSearch": 0,
- "filterable": 0,
- "indexs": 0,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt"
- },
- "style": {
- "type": "list"
- }
- },
- {
- "key": "我的夸克",
- "name": "我的|夸克",
- "type": 3,
- "api": "csp_MyQuark",
- "searchable": 0,
- "quickSearch": 0,
- "filterable": 0,
- "indexs": 0,
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt"
- },
- "style": {
- "type": "list"
- }
- },
- {
- "key": "我的UC",
- "name": "我的|UC",
- "type": 3,
- "api": "csp_MyUc",
- "searchable": 0,
- "quickSearch": 0,
- "filterable": 0,
- "indexs": 0,
- "ext": {
- "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt"
- },
- "style": {
- "type": "list"
- }
- },
- {
- "key": "阿里合集",
- "name": "阿里|合集",
- "type": 3,
- "api": "csp_AliShare",
- "searchable": 1,
- "changeable": 0,
- "filterable": 0,
- "indexs": 0,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "share": "./JS/alishare.txt"
- },
- "style": {
- "type": "list"
- }
- },
- {
- "key": "短剧合集",
- "name": "短剧|合集",
- "type": 3,
- "api": "./js/drpy2.min.js",
- "ext": "./js/短剧合集.js",
- "style": {
- "type": "list"
- }
- },
- {
- "key": "push_agent",
- "name": "手机|推送",
- "type": 3,
- "api": "csp_Push",
- "searchable": 0,
- "filterable": 0,
- "changeable": 0,
- "ext": {
- "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
- "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
- "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
- "danmu": true
- }
- }
- ],
- "parses": [
- {
- "name": "聚合",
- "type": 3,
- "url": "Demo"
- },
- {
- "name": "推荐",
- "type": 1,
- "url": "https://jxjson.icu/neibu.php?url=",
- "ext": {
- "flag": [
- "qq",
- "腾讯",
- "qiyi",
- "爱奇艺",
- "奇艺",
- "youku",
- "优酷",
- "sohu",
- "搜狐",
- "letv",
- "乐视",
- "mgtv",
- "芒果",
- "tnmb",
- "seven",
- "bilibili",
- "1905"
- ],
- "header": {
- "User-Agent": "okhttp/4.9.1"
- }
- }
- },
- {
- "name": "臻享",
- "type": "1",
- "url": "http://43.248.100.147:6068/KEY/XGJ/root/key/70.php?url=",
- "ext": {
- "flag": [
- "youku",
- "qq",
- "qiyi",
- "bilibili",
- "mgtv",
- "pptv",
- "xigua",
- "NBY",
- "ETH-",
- "BBA",
- "TX",
- "MXTV",
- "mytv",
- "nmys",
- "yhdm",
- "BNNB",
- "letu",
- "DJWB",
- "DJWX",
- "DJWT",
- "duanju"
- ],
- "header": {
- "User-Agent": "Dalvik/2.1.0"
- }
- }
- },
- {
- "name": "线路1",
- "type": 0,
- "url": "https://jx.xmflv.com/?url=",
- "ext": {
- "header": {
- "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 Edg/110.0.1587.57"
- }
- }
- },
- {
- "name": "线路2",
- "type": 0,
- "url": "https://jx.quankan.app/?url=",
- "ext": {
- "header": {
- "user-agent": "Mozilla/5.0 (Linux; Android 13; V2049A Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/116.0.0.0 Mobile Safari/537.36"
- }
- }
- },
- {
- "name": "线路3",
- "type": 0,
- "url": "https://jx.yparse.com/index.php?url=",
- "ext": {
- "header": {
- "user-agent": "Mozilla/5.0 (Linux; Android 13; V2049A Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/116.0.0.0 Mobile Safari/537.36"
- }
- }
- },
- {
- "name": "线路4",
- "type": 0,
- "url": "https://jx.aidouer.net/?url=",
- "ext": {
- "header": {
- "user-agent": "Mozilla/5.0 (Linux; Android 13; V2049A Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/116.0.0.0 Mobile Safari/537.36",
- "referer": "https://jiejie.uk/"
- }
- }
- },
- {
- "name": "线路5",
- "type": 0,
- "url": "https://www.8090g.cn/?url="
- },
- {
- "name": "线路6",
- "type": 0,
- "url": "https://jx.yangtu.top?url="
- },
- {
- "name": "线路7",
- "type": 0,
- "url": "https://jx.m3u8.tv/jiexi/?url="
- },
- {
- "name": "线路8",
- "type": 0,
- "url": "https://www.ckplayer.vip/jiexi/?url="
- }
- ],
- "rules": [
- {
- "name": "暴风",
- "hosts": [
- "bfzy",
- "bfbfvip",
- "bfengbf"
- ],
- "regex": [
- "#EXTINF.*?\\s+.*?adjump.*?\\.ts"
- ]
- },
- {
- "name": "量子",
- "hosts": [
- "vip.lz",
- "hd.lz",
- ".cdnlz"
- ],
- "regex": [
- "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:7\\.166667,[\\s\\S]*?#EXT-X-DISCONTINUITY",
- "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:4\\.066667,[\\s\\S]*?#EXT-X-DISCONTINUITY",
- "17.19"
- ]
- },
- {
- "name": "非凡",
- "hosts": [
- "vip.ffzy",
- "hd.ffzy",
- "super.ffzy"
- ],
- "regex": [
- "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:6\\.400000,[\\s\\S]*?#EXT-X-DISCONTINUITY",
- "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:6\\.666667,[\\s\\S]*?#EXT-X-DISCONTINUITY",
- "#EXTINF.*?\\s+.*?1171(057).*?\\.ts",
- "#EXTINF.*?\\s+.*?6d7b(077).*?\\.ts",
- "#EXTINF.*?\\s+.*?6718a(403).*?\\.ts",
- "17.99",
- "14.45"
- ]
- },
- {
- "name": "索尼",
- "hosts": [
- "suonizy"
- ],
- "regex": [
- "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:1\\.000000,[\\s\\S]*?#EXT-X-DISCONTINUITY",
- "#EXTINF.*?\\s+.*?p1ayer.*?\\.ts",
- "#EXTINF.*?\\s+.*?\\/video\\/original.*?\\.ts"
- ]
- },
- {
- "name": "快看",
- "hosts": [
- "kuaikan"
- ],
- "regex": [
- "#EXT-X-KEY:METHOD=NONE\\r*\\n*#EXTINF:5,[\\s\\S]*?#EXT-X-DISCONTINUITY",
- "#EXT-X-KEY:METHOD=NONE\\r*\\n*#EXTINF:2\\.4,[\\s\\S]*?#EXT-X-DISCONTINUITY",
- "#EXT-X-KEY:METHOD=NONE\\r*\\n*#EXTINF:1\\.467,[\\s\\S]*?#EXT-X-DISCONTINUITY"
- ]
- },
- {
- "name": "磁力广告",
- "hosts": [
- "magnet"
- ],
- "regex": [
- "更多",
- "请访问",
- "example",
- "社 區",
- "x u u",
- "直 播",
- "更 新",
- "社 区",
- "有趣",
- "有 趣",
- "英皇体育",
- "全中文AV在线",
- "澳门皇冠赌场",
- "哥哥快来",
- "美女荷官",
- "裸聊",
- "新片首发",
- "UUE29"
- ]
- },
- {
- "name": "火山嗅探",
- "hosts": [
- "huoshan.com"
- ],
- "regex": [
- "item_id="
- ]
- },
- {
- "name": "抖音嗅探",
- "hosts": [
- "douyin.com"
- ],
- "regex": [
- "is_play_url="
- ]
- },
- {
- "name": "农民嗅探",
- "hosts": [
- "toutiaovod.com"
- ],
- "regex": [
- "video/tos/cn"
- ]
- }
- ],
- "doh": [
- {
- "name": "Google",
- "url": "https://dns.google/dns-query",
- "ips": [
- "8.8.4.4",
- "8.8.8.8"
- ]
- },
- {
- "name": "Cloudflare",
- "url": "https://cloudflare-dns.com/dns-query",
- "ips": [
- "1.1.1.1",
- "1.0.0.1",
- "2606:4700:4700::1111",
- "2606:4700:4700::1001"
- ]
- },
- {
- "name": "AdGuard",
- "url": "https://dns.adguard.com/dns-query",
- "ips": [
- "94.140.14.140",
- "94.140.14.141"
- ]
- },
- {
- "name": "DNSWatch",
- "url": "https://resolver2.dns.watch/dns-query",
- "ips": [
- "84.200.69.80",
- "84.200.70.40"
- ]
- },
- {
- "name": "Quad9",
- "url": "https://dns.quad9.net/dns-quer",
- "ips": [
- "9.9.9.9",
- "149.112.112.112"
- ]
- }
- ],
- "lives": [
- {
- "name": "直播",
- "type": 0,
- "url": "http://127.0.0.1:9978/proxy?do=live&url=https://tv.iill.top/m3u/Gather",
- "playerType": 2
- },
- {
- "name": "范明明",
- "type": 0,
- "url": "https://live.fanmingming.com/tv/m3u/ipv6.m3u",
- "playerType": 2
- },
- {
- "name": "肥羊",
- "type": 3,
- "api": "csp_Ysptp",
- "ext": "./live.txt",
- "logo": "https://live.fanmingming.com/tv/{name}.png"
- }
- ],
- "flags": [
- "youku",
- "优酷",
- "优 酷",
- "优酷视频",
- "qq",
- "腾讯",
- "腾 讯",
- "腾讯视频",
- "iqiyi",
- "qiyi",
- "奇艺",
- "爱奇艺",
- "爱 奇 艺",
- "m1905",
- "xigua",
- "letv",
- "leshi",
- "乐视",
- "乐 视",
- "sohu",
- "搜狐",
- "搜 狐",
- "搜狐视频",
- "tudou",
- "pptv",
- "mgtv",
- "芒果",
- "imgo",
- "芒果TV",
- "芒 果 T V",
- "bilibili",
- "哔 哩",
- "哔 哩 哔 哩"
- ],
- "ijk": [
- {
- "group": "软解码",
- "options": [
- {
- "category": 4,
- "name": "opensles",
- "value": "0"
- },
- {
- "category": 4,
- "name": "overlay-format",
- "value": "842225234"
- },
- {
- "category": 4,
- "name": "framedrop",
- "value": "1"
- },
- {
- "category": 4,
- "name": "soundtouch",
- "value": "1"
- },
- {
- "category": 4,
- "name": "start-on-prepared",
- "value": "1"
- },
- {
- "category": 1,
- "name": "http-detect-range-support",
- "value": "0"
- },
- {
- "category": 1,
- "name": "fflags",
- "value": "fastseek"
- },
- {
- "category": 2,
- "name": "skip_loop_filter",
- "value": "48"
- },
- {
- "category": 4,
- "name": "reconnect",
- "value": "1"
- },
- {
- "category": 4,
- "name": "enable-accurate-seek",
- "value": "0"
- },
- {
- "category": 4,
- "name": "mediacodec",
- "value": "0"
- },
- {
- "category": 4,
- "name": "mediacodec-auto-rotate",
- "value": "0"
- },
- {
- "category": 4,
- "name": "mediacodec-handle-resolution-change",
- "value": "0"
- },
- {
- "category": 4,
- "name": "mediacodec-hevc",
- "value": "0"
- },
- {
- "category": 1,
- "name": "dns_cache_timeout",
- "value": "600000000"
- }
- ]
- },
- {
- "group": "硬解码",
- "options": [
- {
- "category": 4,
- "name": "opensles",
- "value": "0"
- },
- {
- "category": 4,
- "name": "overlay-format",
- "value": "842225234"
- },
- {
- "category": 4,
- "name": "framedrop",
- "value": "1"
- },
- {
- "category": 4,
- "name": "soundtouch",
- "value": "1"
- },
- {
- "category": 4,
- "name": "start-on-prepared",
- "value": "1"
- },
- {
- "category": 1,
- "name": "http-detect-range-support",
- "value": "0"
- },
- {
- "category": 1,
- "name": "fflags",
- "value": "fastseek"
- },
- {
- "category": 2,
- "name": "skip_loop_filter",
- "value": "48"
- },
- {
- "category": 4,
- "name": "reconnect",
- "value": "1"
- },
- {
- "category": 4,
- "name": "enable-accurate-seek",
- "value": "0"
- },
- {
- "category": 4,
- "name": "mediacodec",
- "value": "1"
- },
- {
- "category": 4,
- "name": "mediacodec-auto-rotate",
- "value": "1"
- },
- {
- "category": 4,
- "name": "mediacodec-handle-resolution-change",
- "value": "1"
- },
- {
- "category": 4,
- "name": "mediacodec-hevc",
- "value": "1"
- },
- {
- "category": 1,
- "name": "dns_cache_timeout",
- "value": "600000000"
- }
- ]
- }
- ],
- "ads": [
- "static-mozai.4gtv.tv"
- ]
- }
|