123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502 |
- //关注微信公众号:奇奇乐分享,发送“本地包”,获取本地包更新链接与图文教程。
- {
- "spider": "./spider.jar",
- "wallpaper": "https://tuapi.eees.cc/api.php?category=fengjing&type=302",
- "logo": "http://php.540734621.xyz/logo/logo.php",
- "lives": [
- {
- "name": "①live(EXO)",
- "type": 0,
- "url": "./lives/①live(EXO).txt",
- "epg": "http://diyp2.112114.xyz/?ch={name}&date={date}"
- },
- {
- "name": "②Live(IJK)",
- "type": 0,
- "url": "./lives/②Live(IJK).txt",
- "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
- },
- {
- "name": "③猫TV线路(EXO)",
- "type": 0,
- "url": "./lives/③猫TV线路(EXO).txt",
- "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
- },
- {
- "name": "④猫TV线路(IJK)",
- "type": 0,
- "url": "./lives/④猫TV线路(IJK).txt",
- "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
- },
- {
- "name": "新AKTV港台",
- "type": 0,
- "url": "./lives/新AKTV港台.txt",
- "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
- },
- {
- "name": "catvod TV",
- "type": 0,
- "url": "./lives/catvod TV.txt",
- "epg": "http://epg.51zmt.top:8000/api/diyp/?ch={name}&date={date}"
- },
- {
- "name": "IPTV研究所",
- "type": 0,
- "url": "./lives/IPTV研究所.txt",
- "epg": "http://epg.51zmt.top:8000/api/diyp/?ch={name}&date={date}"
- },
- {
- "name": "iill",
- "type": 0,
- "url": "./lives/iill.txt",
- "epg": "http://epg.51zmt.top:8000/api/diyp/?ch={name}&date={date}"
- },
- {
- "name": "4GTV(需要魔法)",
- "type": 0,
- "url": "./lives/4GTV(需要魔法).txt",
- "epg": "http://epg.51zmt.top:8000/api/diyp/?ch={name}&date={date}"
- },
- {
- "name": "IPTV每天两更(Guovin)",
- "type": 0,
- "url": "./lives/IPTV每天两更(Guovin).txt",
- "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
- },
- {
- "name": "抖音、斗鱼、B站、YY、Afreeca、Youtube",
- "type": 0,
- "url": "./lives/抖音、斗鱼、B站、YY、Afreeca、Youtube.txt",
- "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
- },
- {
- "name": "广东银河频道",
- "type": 0,
- "url": "./lives/广东银河频道.txt",
- "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
- },
- {
- "name": "⑪V6明线路",
- "type": 0,
- "url": "./lives/⑪V6明线路.txt",
- "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
- },
- {
- "name": "②⑥范明线路",
- "type": 0,
- "url": "./lives/②⑥范明线路.txt",
- "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
- },
- {
- "name": "③②备用虎牙",
- "type": 0,
- "url": "./lives/③②备用虎牙.txt",
- "epg": ""
- },
- {
- "name": "③③备用斗鱼",
- "type": 0,
- "url": "./lives/③③备用斗鱼.txt",
- "epg": ""
- },
- {
- "name": "③④16万MV",
- "type": 0,
- "url": "./lives/③④16万MV.txt",
- "epg": "http://diyp2.112114.xyz/?ch={name}&date={date}"
- }
- ],
- "sites": [
- {
- "key": "豆瓣",
- "name": "豆瓣热播请关注公众号:“开心软件”不迷路",
- "type": 3,
- "api": "csp_Douban",
- "searchable": 0,
- "changeable": 1
- },
- {
- "key": "csp_LocalFile",
- "name": "💻本地磁盘",
- "type": 3,
- "api": "csp_LocalFile",
- "searchable": 0,
- "quickSearch": 0,
- "filterable": 0,
- "type_flag": 0
- },
- {
- "key": "配置中心",
- "name": "👨🍳配置┃中心",
- "type": 3,
- "api": "csp_Config",
- "searchable": 0,
- "changeable": 0,
- "indexs": 0,
- "style": {
- "type": "rect",
- "ratio": 1.43
- }
- },
- {
- "key": "lf_live10_min",
- "name": "📺︎开心软件直播",
- "type": 3,
- "searchable": 0,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "api": "./api/lf_live10_min-output.js",
- "ext": "./json/lf_live.json"
- },
- {
- "key": "alllive",
- "name": "📽️一直播┃LIVE",
- "type": 3,
- "api": "csp_Alllive",
- "playerType": 2,
- "searchable": 0,
- "quickSearch": 0,
- "changeable": 0,
- "ext": {
- "danmu": true
- },
- "timeout": 10
- },
- {
- "key": "好趣网",
- "name": "🎦好趣网",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "order_num": 87,
- "ext": "./js/好趣网.js"
- },
- {
- "key": "荐片",
- "name": "🎦荐片┃P2P",
- "type": 3,
- "searchable": 1,
- "quickSearch": 1,
- "changeable": 1,
- "playerType": "1",
- "api": "./api/drpy2.min.js",
- "ext": "./js/jp.js"
- },
- {
- "key": "农民影视",
- "name": "🎦农民|影视",
- "type": 3,
- "api": "csp_Nmys",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "韩小圈",
- "name": "🎦韩小|影视",
- "type": 3,
- "api": "csp_HanXiaoQuan",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "瓜子影视1",
- "name": "🎦瓜子|影视",
- "type": 3,
- "api": "csp_Gz360",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "骚火影视1",
- "name": "🎦骚火|影视",
- "type": 3,
- "api": "csp_SaoHuo",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "洽洽影视",
- "name": "🎦洽洽|影视",
- "type": 3,
- "api": "csp_AppGZ",
- "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_WebGZ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "1905",
- "name": "🎦1905|影视",
- "type": 3,
- "api": "csp_Web1905",
- "searchable": 1,
- "quickSearch": 0,
- "filterable": 0
- },
- {
- "key": "全网影视",
- "name": "🎦全网|影视",
- "type": 3,
- "api": "csp_Quanwk",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://www.91qkw.com"
- },
- {
- "key": "素白白",
- "name": "🎦白白|影视",
- "type": 3,
- "api": "csp_Subaibai",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "http://subaibai.com"
- },
- {
- "key": "新视觉影视",
- "name": "🎦视觉|影视",
- "type": 3,
- "api": "./api/sj.py",
- "searchable": 1,
- "changeable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "playerType": 2
- },
- {
- "key": "忍者影视",
- "name": "🎦忍者|影视",
- "type": 3,
- "api": "csp_AppRZ",
- "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_Ikanbot",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "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": "csp_Kuaikan",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "热播影视",
- "name": "🎦热播|影视",
- "type": 3,
- "api": "csp_AppRB",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "天天",
- "name": "🎦天天┃影视",
- "type": 3,
- "api": "csp_AppTT",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "饺子影视",
- "name": "🎦饺子|影视",
- "type": 3,
- "api": "csp_Jiaozi",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "厂长资源",
- "name": "🎦厂长|资源",
- "type": 3,
- "api": "csp_Czzy",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "看客影视",
- "name": "🎦看客|影视",
- "type": 3,
- "api": "csp_Kanke",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "奇优影视",
- "name": "🎦奇优|影视",
- "type": 3,
- "api": "csp_Qiyou",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "http://www.dyxz2.com/"
- },
- {
- "key": "雨滴",
- "name": "🎦雨滴|影视",
- "type": 3,
- "api": "csp_Xdai",
- "playerType": 1,
- "ext": "jaHR0cDovL2M4dzJvdjd1NXdnMnoxbzhwMjFjLmFsaXl1bmNzLmNsaWNrfGs5bzNwMmM4YjdtM3owbzh8azlvM3AyYzhiN20zejBvOHwxMDA="
- },
- {
- "key": "现代",
- "name": "🎦现代|影视",
- "type": 3,
- "api": "csp_Xdai",
- "playerType": 1,
- "ext": "caHR0cHM6Ly9hcHAuYnJvdm9kLmNvbXxzemRqd2RhcHB3Y25tZGhifHN6ZGp3ZGFwcHdjbm1kaGJ8MTE0"
- },
- {
- "key": "优质",
- "name": "🎦优质|影视",
- "type": 3,
- "api": "csp_Xdai",
- "playerType": 1,
- "ext": "jaHR0cHM6Ly9hcGlhcHBkeXl6dHZ5eWRzcXdkeS42OC5neTo1Njg5fGR5eXp0dmFwaWFwcHl5ZHN8ZHl5enR2YXBpYXBweXlkc3wxMDA="
- },
- {
- "key": "蝴蝶",
- "name": "🎦蝴蝶|影视",
- "type": 3,
- "api": "csp_Hudie",
- "playerType": 2,
- "ext": "eaHR0cHM6Ly9kLmRjbW92aWUudG9w"
- },
- {
- "key": "闪雷影视",
- "name": "🚀闪雷┃JS",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "ext": "./js/闪雷影视.js"
- },
- {
- "key": "热播APP",
- "name": "☀热播┃APP",
- "type": 3,
- "api": "csp_AppRB",
- "playerType": 1,
- "searchable": 1,
- "quickSearch": 1,
- "changeable": 1,
- "ext": "http://v.rbotv.cn/"
- },
- {
- "key": "天天弹幕",
- "name": "💘天天|弹幕",
- "type": 3,
- "api": "csp_TianTian",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "danmu": true,
- "site": "aHR0cDovL29wLnlzZHFqcy5jbg=="
- }
- },
- {
- "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,
- "site": "aHR0cDovL3YucmJvdHYuY24="
- }
- },
- {
- "key": "浪酷弹幕",
- "name": "💘浪酷|弹幕",
- "type": 3,
- "api": "csp_TianTian",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "danmu": true,
- "site": "aHR0cDovL3YubGt1eXMuY24="
- }
- },
- {
- "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_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_Jianpian",
- "playerType": 1,
- "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
- },
- "timeout": 10
- },
- {
- "key": "哔嘀弹幕",
- "name": "💘哔嘀|弹幕",
- "type": 3,
- "api": "csp_Bdys",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "site": "https://www.xlys01.com",
- "danmu": true
- }
- },
- {
- "key": "哔哩弹幕",
- "name": "🅱哔哩|弹幕",
- "type": 3,
- "api": "csp_Bilimd",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "style": {
- "type": "rect",
- "ratio": 1.433
- },
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/TVBox/bilibili.txt"
- },
- "timeout": 10
- },
- {
- "key": "追剧APP",
- "name": "🚀追剧┃APP",
- "type": 3,
- "api": "csp_AppZJ",
- "playerType": 1,
- "searchable": 1,
- "quickSearch": 1,
- "changeable": 1,
- "ext": "http://z.kzjtv.com/"
- },
- {
- "key": "木耳",
- "name": "🪴木耳┃秒播",
- "type": 1,
- "api": "https://json02.heimuer.xyz/api.php/provide/vod",
- "searchable": 1,
- "filterable": 1,
- "changeable": 1,
- "timeout": 20,
- "categories": [
- "剧情片",
- "动作片",
- "冒险片",
- "喜剧片",
- "奇幻片",
- "恐怖片",
- "悬疑片",
- "惊悚片",
- "灾难片",
- "爱情片",
- "犯罪片",
- "科幻片",
- "歌舞片",
- "战争片",
- "经典片",
- "动画电影",
- "网络电影",
- "其他片",
- "国产剧",
- "港剧",
- "韩剧",
- "日剧",
- "泰剧",
- "台剧",
- "欧美剧",
- "新马剧",
- "其他剧",
- "国产综艺",
- "港台综艺",
- "韩国综艺",
- "日本综艺",
- "欧美综艺",
- "新马泰综艺",
- "其他综艺",
- "古装短剧",
- "虐恋短剧",
- "逆袭短剧",
- "神豪短剧",
- "重生短剧",
- "复仇短剧",
- "穿越短剧",
- "甜宠短剧",
- "强者短剧",
- "欧美动漫",
- "日本动漫",
- "韩国动漫",
- "国产动漫",
- "港台动漫"
- ],
- "header": {
- "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36"
- }
- },
- {
- "key": "立播弹幕版",
- "name": "🐰立播┃弹幕",
- "type": 3,
- "api": "csp_Libvio",
- "searchable": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/tvbox/tok.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
- },
- "timeout": 25
- },
- {
- "key": "hipy_js_采集之王",
- "name": "🎦采集之王[合]",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "order_num": 0,
- "ext": "./js/采集之王[合].js?type=url¶ms=./json/采集静态.json$1"
- },
- {
- "key": "无忧短剧",
- "name": "🌈无忧┃短剧",
- "type": 3,
- "api": "csp_Duanj",
- "searchable": 1,
- "changeable": 0,
- "style": {
- "type": "rect",
- "ratio": 1.433
- },
- "timeout": 10
- },
- {
- "key": "csp_XYQHiker_爱你短剧",
- "name": "🎦爱你短剧",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/爱你短剧.json"
- },
- {
- "key": "csp_XYQHiker_河马短剧",
- "name": "🎦河马短剧",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/河马短剧.json"
- },
- {
- "key": "csp_XYQHiker_短剧屋",
- "name": "🎦短剧屋",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/短剧屋.json"
- },
- {
- "key": "js_星芽短剧",
- "name": "🎦星芽短剧",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./js/星芽短剧.js"
- },
- {
- "key": "js_蓝莓短剧",
- "name": "🎦蓝莓短剧",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./js/蓝莓短剧.js"
- },
- {
- "key": "你好帅",
- "name": "🎦好帅┃短剧",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": {
- "分类url": "https://nhsyy.com/vodshwo/{cateId}--{by}------{catePg}---.html",
- "分类": "穿越$fenle#战神$fenlei2#重生$fenlei3#爱情$fenlei4#萌娃$guda#神医$shenyi#古代$gudai#言情$yanqing#玄幻$xuanhuan",
- "播放数组": "<div class=\"sort-item\"&&</div>"
- }
- },
- {
- "key": "嫖嫖嫖",
- "name": "🧿嫖嫖┃影视",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": {
- "主页url": "https://www.gs4x7nq4.com/",
- "播放请求头": "User-Agent$Mozilla/5.0(WindowsNT10.0;Win64;x64)AppleWebKit/537.36(KHTML,likeGecko)Chrome/128.0.0.0Safari/537.36",
- "简介": "⚠️开心软件特别提醒您⚠️请勿相信影片中的广告,以免上当受骗❗️+</label>&&</div>",
- "嗅探词": ".mp4#.m3u8#.flv#.m3u8?#.mp4?",
- "影片类型": "tags\">&&director\">",
- "影片状态": "bottom\">&&</div>",
- "二次截取": "videoList\":\\[&&\\]",
- "数组": "{&&}[不包含:伦理剧]",
- "图片": "https+://ywxohs.com+obs.gduamoe.com&&\",",
- "标题": "vodName\":\"&&\"",
- "副标题": "vodRemarks\":\"&&\"",
- "链接": "https://www.gs4x7nq4.com/detail/+vodId\":&&,",
- "导演": "导演:</div>&&主演",
- "主演": "主演:</div>&&别名",
- "线路标题": "xxx",
- "播放数组": "listitem\">&&info\">",
- "播放列表": "<a&&</a>",
- "倒序": "否",
- "搜索url": "https://www.gs4x7nq4.com/vod/search/{wd}",
- "搜索副标题": "class=\"boottom\"*<div>&&</div",
- "分类": "电影$1#电视剧$2#综艺$3#动漫$4",
- "分类url": "https://www.gs4x7nq4.com/vod/show/id/{cateId}/class/{class}/year/{year}/area/{area}/page/{catePg}"
- }
- },
- {
- "key": "白嫖者",
- "name": "🧿白嫖┃影视",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": {
- "分类url": "https://www.qyzf88.com/qyvodshow/{cateId}-{area}-{by}-{class}-----{catePg}---{year}.html",
- "分类": "电影$1#电视剧$2#动漫$4#综艺$3",
- "副标题": "class=\"pic-texttext-right\"&&</span>",
- "简介": "️开心软件特别提醒您⚠️请勿相信影片中的广告,以免上当受骗❗+剧情介绍:&&</p>"
- }
- },
- {
- "key": "656",
- "name": "🧿梦想┃影视",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "主页url": "https://www.kkys02.com/",
- "分类url": "https://www.kkys02.com/{cateId}-{catePg}.html[https://www.kkys02.com/{cateId}-.html];;ak",
- "分类": "豆瓣TOP250&2023最佳影片&毒舌电影&热映电影&热播剧集&热门综艺&Netflix电影&Netflix剧集&经典美剧&海外短画&爱情治愈&漫威宇宙&星爷系列&迪士尼&国产剧&台湾剧&韩国剧&欧美剧&香港剧&泰国剧&日本剧&动作片&喜剧片&科幻片&恐怖片&爱情片&剧情片&战争片&传记片&动画片&国产动漫&日本动漫&韩国动漫&欧美动漫&大陆综艺&香港综艺&台湾综艺&日本综艺&韩国综艺&欧美综艺&短剧",
- "分类值": "topic/detail/1&topic/detail/460&topic/detail/3&topic/detail/12&topic/detail/15&topic/detail/456&show/1-NETFLIX----3&show/2-NETFLIX----3&topic/detail/399&topic/detail/384&topic/detail/383&topic/detail/33&topic/detail/26&topic/detail/34&show/2--%E4%B8%AD%E5%9B%BD%E5%A4%A7%E9%99%86---3&show/2--%E4%B8%AD%E5%9B%BD%E5%8F%B0%E6%B9%BE---3&show/2--%E9%9F%A9%E5%9B%BD---3&show/2--%E7%BE%8E%E5%9B%BD---3&show/2--%E4%B8%AD%E5%9B%BD%E9%A6%99%E6%B8%AF---3&show/2--%E6%B3%B0%E5%9B%BD---3&show/2--%E6%97%A5%E6%9C%AC---3&show/1-%E5%8A%A8%E4%BD%9C----3&show/1-%E5%96%9C%E5%89%A7----3&show/1-%E7%A7%91%E5%B9%BB----3&show/1-%E6%81%90%E6%80%96----3&show/1-%E7%88%B1%E6%83%85----3&show/1-%E5%89%A7%E6%83%85----3&show/1-%E6%88%98%E4%BA%89----3&show/1-%E4%BC%A0%E8%AE%B0----3&show/1-%E5%8A%A8%E7%94%BB----3&show/3--%E4%B8%AD%E5%9B%BD%E5%A4%A7%E9%99%86---1&show/3--%E6%97%A5%E6%9C%AC---1&show/3--%E9%9F%A9%E5%9B%BD---1&show/3--%E7%BE%8E%E5%9B%BD---1&show/4--%E4%B8%AD%E5%9B%BD%E5%A4%A7%E9%99%86---3&show/4--%E4%B8%AD%E5%9B%BD%E9%A6%99%E6%B8%AF---3&show/4--%E4%B8%AD%E5%9B%BD%E5%8F%B0%E6%B9%BE---3&show/4--%E6%97%A5%E6%9C%AC---3&show/4--%E9%9F%A9%E5%9B%BD---3&show/4--%E7%BE%8E%E5%9B%BD---3&show/6-----1",
- "数组": "module-item\">&&\"v-item-footer\">",
- "图片": "https://61.147.93.252:15002+data-original=\"&&\"",
- "标题": "title=\"&&\"",
- "副标题": "影视</span&&</div>",
- "链接": "href=\"&&\"",
- "搜索二次截取": "id=\"units_top\"&&id=\"units_footer\"",
- "搜索url": "https://www.kkys02.com/search?os=pc&k={wd}",
- "搜索数组": "<a&&class=\"tags\"",
- "搜索图片": "data-original=\"&&\"[替换:/vod1/>>https://61.147.93.252:15002/vod1/][不包含:https://61.147.93.155:15001/vod_pc_static_kkdy/images/p/logo_placeholder_vertical.png?ver=240905]",
- "搜索标题": "title=\"&&\"",
- "搜索副标题": "v-item-bottom\">&&</div>",
- "搜索链接": "href=\"&&\"",
- "线路数组": "可可影视提供&&<i[不包含:4K(高峰不卡)]",
- "线路标题": ">&&</span",
- "播放数组": "episode-list\"&&</div",
- "播放列表": "<a&&/a",
- "播放标题": ">&&<",
- "播放链接": "href=\"&&\"",
- "嗅探词": ".m3u8#video_mp4#tos-#.mp4#cdn.123pan.cn#huoshanvod.com",
- "影片年代": "class=\"detail-tags-item\">&&</a>",
- "影片类型": "<divclass=\"detail-tagsfs-margin-topfs-margin-bottom\">&&立即播放",
- "影片状态": "备注:&&</div>",
- "导演": "导演:</div>&&</div>",
- "主演": "演员:</div>&&</div>",
- "简介": "detail-desc\">&&</p>"
- }
- },
- {
- "key": "8号影院",
- "name": "🧿8号┃影视",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "搜索url": "http://www.soutiyi.com/search.php?searchword={wd}",
- "搜索链接": "href=\"&&\"",
- "简介": "请勿相信影片中的广告,以免上当受骗。+<pclass=\"col-pddetail\"&&</span>",
- "线路数组": "<imgsrc=\"/statics/icon/icon_26.png\"&&</h3>",
- "线路标题": "蓝光专线",
- "分类url": "http://www.soutiyi.com/frim/{cateId}-{catePg}.html",
- "分类": "动作片$5#爱情片$6#科幻片$7#恐怖片$8#喜剧片$10#剧情片$12#国产剧$13#港台剧$14#欧美剧$15#日韩剧$16#综艺$3#动漫$4"
- }
- },
- {
- "key": "csp_红狐狸影视",
- "name": "🧿狐狸┃影视",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": {
- "分类url": "https://honghuli.com/leibiao/{cateId}-{area}-------{catePg}---{year}.html",
- "分类": "电影$1#电视剧$2#综艺$3#动漫$4"
- }
- },
- {
- "key": "大师兄",
- "name": "🧿大师┃影视",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": {
- "分类url": "https://www.dsxysproo.com/dqvodshow/{cateId}-{area}--{class}-----{catePg}---{year}.html",
- "分类": "电视剧$2#电影$1#动漫$4#综艺$3"
- }
- },
- {
- "key": "疯狗",
- "name": "🧿疯狗┃影视",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": {
- "线路数组": "page-header\">&&</div>",
- "播放数组": "list-unstyledrowtext-centerff-playurl-lineff-playurl\"&&</ul>",
- "分类url": "https://m.fenggoudy3.com/list-select-id-{cateId}-type-{class}-area-{area}-year-{year}-star--state--order-addtime-p-{catePg}.html;;d0",
- "分类": "电视剧$2#电影$1#动漫$3#综艺$4"
- }
- },
- {
- "key": "csp_XYQHiker_七新影视",
- "name": "🎦七新影视",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/七新影视.json"
- },
- {
- "key": "csp_XYQHiker_可可影视",
- "name": "🎦可可影视",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/可可影视.json"
- },
- {
- "key": "hipy_js_黑木耳资源[资]",
- "name": "🎦木耳资源",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "order_num": 0,
- "ext": "./js/黑木耳资源[资].js"
- },
- {
- "key": "瓜子",
- "name": "🎦瓜子",
- "type": 3,
- "searchable": 1,
- "quickSearch": 1,
- "changeable": 1,
- "playerType": "1",
- "api": "./api/drpy2.min.js",
- "ext": "./js/瓜子.js"
- },
- {
- "key": "360zy",
- "name": "🎦360采集",
- "type": 1,
- "api": "https://360zy.com/api.php/provide/vod?",
- "searchable": 1,
- "changeable": 1,
- "categories": [
- "动作片",
- "喜剧片",
- "爱情片",
- "科幻片",
- "恐怖片",
- "剧情片",
- "战争片",
- "古装片",
- "悬疑片",
- "犯罪片",
- "灾难片",
- "国产剧",
- "香港剧",
- "韩国剧",
- "欧美剧",
- "台湾剧",
- "日本剧",
- "海外剧",
- "泰国剧",
- "大陆综艺",
- "港台综艺",
- "日韩综艺",
- "欧美综艺",
- "国产动漫",
- "欧美动漫",
- "日韩动漫",
- "现代都市",
- "脑洞悬疑",
- "年代穿越",
- "古装仙侠",
- "女频恋爱",
- "成长逆袭",
- "反转爽剧"
- ]
- },
- {
- "key": "hipy_js_哔哩影视[官]",
- "name": "🎦哔哩影视[官](drpy_t3)",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "order_num": 73,
- "ext": "./js/哔哩影视[官].js"
- },
- {
- "key": "hipy_js_4k剧院",
- "name": "🎦4k剧院(drpy_t3)",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "order_num": 6,
- "ext": "./js/4k剧院.js"
- },
- {
- "key": "茶狐杯",
- "name": "🎦茶狐杯",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/茶狐杯.json"
- },
- {
- "key": "奈飞影视",
- "name": "🎦鸭奈飞",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/ynfys.json"
- },
- {
- "key": "宝片视频_js",
- "name": "👨🍳宝片视频(drpy_t3)",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "order_num": 0,
- "ext": "./js/宝片视频.js"
- },
- {
- "key": "csp_星辰",
- "name": "🎦星辰",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/xcys.json"
- },
- {
- "key": "三米ys",
- "name": "🎦三米影视",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": {
- "分类url": "http://www.9-here.com/index.php/s/S-id-{cateId}-{catePg}/area/{area}/by/{by}/class/{class}/lang/{lang}/year/{year}.html[http://www.9-here.com/index.php/t/S-{cateId}-{catePg}.html]",
- "分类": "电影$movie#连续剧$drama#动漫$comic#综艺$tvshow"
- }
- },
- {
- "key": "美柏",
- "name": "🎦美柏",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/美柏.json"
- },
- {
- "key": "大师兄",
- "name": "🎦大师兄影视",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": {
- "简介": "⚠️特别提醒您⚠️请勿相信影片中的广告,以免上当受骗❗️+剧情介绍:&&</p >",
- "分类url": "https://www.dsxysproo.com/dqvodshow/{cateId}-{area}--{class}-----{catePg}---{year}.html",
- "分类": "电视剧$2#电影$1#动漫$4#综艺$3"
- }
- },
- {
- "key": "白嫖者",
- "name": "🎦白嫖者联盟",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": {
- "分类url": "https://www.qyzf88.com/qyvodshow/{cateId}-{area}-{by}-{class}-----{catePg}---{year}.html",
- "分类": "电影$1#电视剧$2#动漫$4#综艺$3",
- "副标题": "class=\"pic-text text-right\"&&</span>",
- "简介": "⚠️特别提醒您⚠️请勿相信影片中的广告,以免上当受骗❗️+剧情介绍:&&</p >"
- }
- },
- {
- "key": "凯奇追剧",
- "name": "🎦凯奇┃追剧",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": {
- "简介": "+hl-content-text\">&&</span>",
- "分类url": "https://www.kqyy.tv/vodshow/area/{area}/class/{class}/id/{cateId}/page/{catePg}/year/{year}.html",
- "分类": "电影$dianying#连续剧$lianxuju#动漫$dongman#综艺$zongyi#短剧$duanshipin"
- }
- },
- {
- "key": "csp_红狐狸影视",
- "name": "🎦红狐狸影视",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": {
- "分类url": "https://honghuli.com/leibiao/{cateId}-{area}-------{catePg}---{year}.html",
- "分类": "电影$1#电视剧$2#综艺$3#动漫$4"
- }
- },
- {
- "key": "热播之家",
- "name": "🎦热播之家",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/rebozj.json"
- },
- {
- "key": "hipy_js_TVB云播",
- "name": "🎦TVB云播(drpy_t3)",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "order_num": 0,
- "ext": "./js/TVB云播.js"
- },
- {
- "key": "csp_XYQBiu_骚火VIP",
- "name": "🎦骚火",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/shyyVIP.json"
- },
- {
- "key": "csp_vs",
- "name": "🎦VS",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/vsys.json"
- },
- {
- "key": "4K影视",
- "name": "🎦4K影视",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/4K影视.json"
- },
- {
- "key": "csp_xBPQ_奇优",
- "name": "🎦奇优",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/qiyou.json"
- },
- {
- "key": "子子影视",
- "name": "🎦子子影视",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/子子.json"
- },
- {
- "key": "圣城影视",
- "name": "🎦圣城",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/sc1080.json"
- },
- {
- "key": "米爱影视",
- "name": "🎦米爱",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/miaiys.json"
- },
- {
- "key": "HDmoli",
- "name": "🎦魔力高清",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/HDmoli.json"
- },
- {
- "key": "高清在线",
- "name": "🎦高清在线",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": {
- "简介": "剧情介绍: +stui-pannel_bd\">&&</div>",
- "线路数组": "stui-pannel__head bottom-line active clearfix\">&&</div>",
- "分类url": "https://www.gxfiber.com/vodshow/{cateId}-{area}--{class}-----{catePg}---{year}.html",
- "分类": "短剧$duanju#电视剧$dsj#电影$dy#动漫$dm#综艺$zy"
- }
- },
- {
- "key": "lzi",
- "name": "🎦量子资源",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/liangzi.json"
- },
- {
- "key": "csp_xBPQ睛天影视",
- "name": "🎦睛天影视",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/睛天影视.json"
- },
- {
- "key": "非凡资源",
- "name": "🎦非凡资源",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/ffzy.json"
- },
- {
- "key": "果果4K解析_js",
- "name": "🌞果果4K(解析)",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "order_num": 0,
- "ext": "./js/果果4K.js"
- },
- {
- "key": "🌞腾腾4K解析_js",
- "name": "🌞腾腾4K(解析)",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "order_num": 0,
- "ext": "./js/腾腾4K.js"
- },
- {
- "key": "爱奇异",
- "name": "🎦爱奇艺(官)",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "ext": "./js/爱奇艺.js"
- },
- {
- "key": "优酷",
- "name": "🎦优酷(官)",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "ext": "./js/优酷.js"
- },
- {
- "key": "腾讯",
- "name": "🎦腾讯VIP(官)",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "ext": "./js/腾讯VIP.js"
- },
- {
- "key": "芒果",
- "name": "🎦芒果(官)",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "ext": "./js/芒果.js"
- },
- {
- "key": "搜狗",
- "name": "🎦搜狗(官)",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "ext": "./js/搜狗.js"
- },
- {
- "key": "木偶网盘",
- "name": "📀木偶┃网盘",
- "type": 3,
- "api": "csp_Wobg",
- "searchable": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/tvbox/tok.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://www.mogg.top/",
- "danmu": true
- },
- "timeout": 25
- },
- {
- "key": "玩偶哥哥",
- "name": "📀玩偶┃网盘",
- "type": 3,
- "api": "csp_Wogg",
- "searchable": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/tvbox/tok.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
- },
- "timeout": 30
- },
- {
- "key": "至臻网盘",
- "name": "📀至臻┃网盘",
- "type": 3,
- "api": "csp_Wobg",
- "searchable": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/tvbox/tok.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
- },
- "timeout": 25
- },
- {
- "key": "奥秘网盘",
- "name": "📀奥秘┃网盘",
- "type": 3,
- "api": "csp_Wobg",
- "searchable": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/tvbox/tok.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
- },
- "timeout": 25
- },
- {
- "key": "欧歌网盘",
- "name": "📀欧歌┃网盘",
- "type": 3,
- "api": "csp_Wobg",
- "searchable": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/tvbox/tok.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.top/",
- "danmu": true
- },
- "timeout": 25
- },
- {
- "key": "蜡笔网盘",
- "name": "📀蜡笔┃网盘",
- "type": 3,
- "api": "csp_Wobg",
- "searchable": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/tvbox/tok.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://labipan.com/",
- "danmu": true
- },
- "timeout": 25
- },
- {
- "key": "土豆网盘",
- "name": "📀土豆┃网盘",
- "type": 3,
- "api": "csp_Wobg",
- "searchable": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/tvbox/tok.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://yunpan.yunpay.cc/",
- "danmu": true
- },
- "timeout": 25
- },
- {
- "key": "云星网盘",
- "name": "📀云星┃网盘",
- "type": 3,
- "api": "csp_Wobg",
- "searchable": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "token": "http://127.0.0.1:9978/file/tvbox/tok.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
- },
- "timeout": 25
- },
- {
- "key": "csp_Mp4Mov",
- "name": "🧲Mp4电影",
- "type": 3,
- "api": "csp_Mp4Mov",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "csp_New6v",
- "name": "🧲新6V",
- "type": 3,
- "api": "csp_New6v",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://www.xb6v.com"
- },
- {
- "key": "csp_SeedHub",
- "name": "🧲SeedHub",
- "type": 3,
- "api": "csp_SeedHub",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "csp_KubaCL",
- "name": "🧲酷吧电影",
- "type": 3,
- "api": "csp_KubaCL",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "csp_MeijuMi",
- "name": "🧲美剧迷",
- "type": 3,
- "api": "csp_MeijuMi",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "csp_Xunlei8",
- "name": "🧲迅雷吧",
- "type": 3,
- "api": "csp_Xunlei8",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "csp_AliShare",
- "name": "🦋AList",
- "type": 3,
- "api": "csp_AliShare",
- "searchable": 1,
- "changeable": 0,
- "filterable": 0,
- "indexs": 0,
- "ext": {
- "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
- "share": "http://127.0.0.1:9978/file/tvbox/阿里集合.json"
- },
- "style": {
- "type": "list"
- },
- "timeout": 30
- },
- {
- "key": "纸条",
- "name": "🗞纸条┃搜索",
- "type": 3,
- "api": "csp_XiaoZhiTiao",
- "searchable": 1,
- "filterable": 1,
- "changeable": 0,
- "ext": {
- "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
- "danmu": true
- },
- "timeout": 15
- },
- {
- "key": "盘Se",
- "name": "🙀盘Se┃搜索",
- "type": 3,
- "api": "csp_PanSearch",
- "searchable": 1,
- "filterable": 0,
- "changeable": 0,
- "ext": {
- "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
- "danmu": true
- },
- "timeout": 15
- },
- {
- "key": "易搜",
- "name": "😹易搜┃搜索",
- "type": 3,
- "api": "csp_YiSo",
- "searchable": 1,
- "filterable": 0,
- "changeable": 0,
- "ext": {
- "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
- "danmu": true
- },
- "timeout": 15
- },
- {
- "key": "csp_QuPanSou",
- "name": "🤓趣盘搜┃搜索",
- "type": 3,
- "api": "csp_QuPanSou",
- "searchable": 1,
- "filterable": 1,
- "changeable": 0,
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
- "danmu": true
- },
- "timeout": 15
- },
- {
- "key": "csp_Qkpanso",
- "name": "🐚夸克盘搜┃搜索",
- "type": 3,
- "api": "csp_Qkpanso",
- "searchable": 1,
- "filterable": 1,
- "changeable": 0,
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
- "danmu": true
- },
- "timeout": 15
- },
- {
- "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",
- "danmu": true,
- "site": "https://www.misou.fun"
- },
- "timeout": 15
- },
- {
- "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
- },
- "timeout": 15
- },
- {
- "key": "云盘4K",
- "name": "🤖云盘4K┃搜索",
- "type": 3,
- "api": "csp_Yunpan4k",
- "searchable": 1,
- "filterable": 0,
- "changeable": 0,
- "ext": {
- "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
- "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
- "danmu": true
- },
- "timeout": 15
- },
- {
- "key": "影搜",
- "name": "🌸影搜┃搜索",
- "type": 3,
- "api": "csp_Yingso",
- "searchable": 1,
- "filterable": 0,
- "changeable": 0,
- "ext": {
- "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
- "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
- "danmu": true
- },
- "timeout": 15
- },
- {
- "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/tok.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
- },
- "timeout": 5
- },
- {
- "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/tok.txt"
- },
- "style": {
- "type": "list"
- },
- "timeout": 30
- },
- {
- "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"
- },
- "timeout": 30
- },
- {
- "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"
- },
- "timeout": 30
- },
- {
- "key": "央视大全",
- "name": "🌔央视大全",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "order_num": 0,
- "ext": "./js/央视大全.js"
- },
- {
- "key": "bili_戏曲",
- "name": "🅱️哔哩┃戏曲",
- "type": 3,
- "api": "csp_Bili",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "style": {
- "type": "rect",
- "ratio": 1.433
- },
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
- "json": "./json/哔哩戏曲.json"
- },
- "timeout": 20
- },
- {
- "key": "bili_相声",
- "name": "🅱️哔哩┃相声",
- "type": 3,
- "api": "csp_Bili",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "style": {
- "type": "rect",
- "ratio": 1.433
- },
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
- "json": "./json/哔哩相声.json"
- },
- "timeout": 20
- },
- {
- "key": "bili_综合",
- "name": "🅱️哔哩┃综合",
- "type": 3,
- "api": "csp_Bili",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "style": {
- "type": "rect",
- "ratio": 1.433
- },
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
- "json": "./json/哔哩综合.json"
- },
- "timeout": 20
- },
- {
- "key": "bili_演唱会",
- "name": "🅱️哔哩┃演唱会",
- "type": 3,
- "api": "csp_Bili",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "style": {
- "type": "rect",
- "ratio": 1.433
- },
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
- "json": "./json/演唱会.json"
- },
- "timeout": 20
- },
- {
- "key": "bili_女团热舞",
- "name": "🅱️哔哩┃女团热舞",
- "type": 3,
- "api": "csp_Bili",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "style": {
- "type": "rect",
- "ratio": 1.433
- },
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
- "json": "./json/女团热舞.json"
- },
- "timeout": 20
- },
- {
- "key": "bilimd",
- "name": "🅱️哔哩┃影视",
- "type": 3,
- "api": "csp_Bilimd",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "style": {
- "type": "rect",
- "ratio": 1.433
- },
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt"
- },
- "timeout": 10
- },
- {
- "key": "bili",
- "name": "🅱️哔哩┃合集",
- "type": 3,
- "api": "csp_Bili",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "style": {
- "type": "rect",
- "ratio": 1.433
- },
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
- "json": "./txt/哔哩合集.txt"
- },
- "timeout": 20
- },
- {
- "key": "bili_学习园地",
- "name": "🅱️哔哩┃学习园地",
- "type": 3,
- "api": "csp_Bili",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "style": {
- "type": "rect",
- "ratio": 1.433
- },
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
- "json": "./json/学习园地.json"
- },
- "timeout": 20
- },
- {
- "key": "bili_学外语",
- "name": "🅱️哔哩┃学外语",
- "type": 3,
- "api": "csp_Bili",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "style": {
- "type": "rect",
- "ratio": 1.433
- },
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
- "json": "./json/学外语.json"
- },
- "timeout": 20
- },
- {
- "key": "哔哩直播",
- "name": "🅱️哔哩┃直播",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 0,
- "quickSearch": 0,
- "filterable": 1,
- "ext": "./js/blzb.js"
- },
- {
- "key": "88看球",
- "name": "⚽88┃看球",
- "type": 3,
- "api": "csp_Kanqiu",
- "searchable": 1,
- "changeable": 0,
- "style": {
- "type": "list"
- },
- "timeout": 10
- },
- {
- "key": "jrsjs",
- "name": "⚽Jrs┃球迷",
- "type": 3,
- "api": "./api/drpy2.min.txt",
- "ext": "./txt/jrs.txt",
- "style": {
- "type": "list"
- },
- "searchable": 0,
- "quickSearch": 0,
- "changeable": 0,
- "timeout": 10,
- "header": {
- "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36"
- }
- },
- {
- "key": "hipy_js_360吧[球]",
- "name": "⚽360吧[球]",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "playerType": "1",
- "quickSearch": 1,
- "filterable": 1,
- "order_num": 0,
- "ext": "./js/360吧[球].js"
- },
- {
- "key": "926tv[球]_js",
- "name": "⚽926tv[球](drpy_t3)",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "order_num": 0,
- "ext": "./js/926tv[球].js"
- },
- {
- "key": "310js",
- "name": "⚽310┃看球",
- "type": 3,
- "api": "./api/drpy2.min.txt",
- "ext": "./txt/310.txt",
- "style": {
- "type": "list"
- },
- "searchable": 0,
- "quickSearch": 0,
- "changeable": 0,
- "timeout": 10
- },
- {
- "key": "快手直播",
- "name": "😎快手┃直播",
- "type": 3,
- "api": "csp_KsLive",
- "searchable": 0,
- "quickSearch": 0,
- "filterable": 1,
- "style": {
- "type": "rect",
- "ratio": 1.433
- },
- "timeout": 10
- },
- {
- "key": "虎牙直播",
- "name": "🐯虎牙直播",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 0,
- "quickSearch": 0,
- "filterable": 1,
- "ext": "./js/huyazhibo.js"
- },
- {
- "key": "斗鱼js",
- "name": "🐟斗鱼┃直播",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "ext": "./js/斗鱼直播.js",
- "style": {
- "type": "rect",
- "ratio": 1.755
- },
- "playerType": "2",
- "searchable": 0,
- "quickSearch": 0,
- "changeable": 0
- },
- {
- "key": "Dm84",
- "name": "🚌巴士┃动漫",
- "type": 3,
- "api": "csp_Dm84",
- "searchable": 1,
- "quickSearch": 1,
- "changeable": 1
- },
- {
- "key": "爱动漫_js",
- "name": "💝爱┃动漫",
- "type": 3,
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "api": "./api/drpy2.min.js",
- "ext": "./js/爱动漫.js",
- "timeout": 15
- },
- {
- "key": "hipy_js_贝乐虎[儿]",
- "name": "🐯贝乐虎[儿](drpy_t3)",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "order_num": 0,
- "ext": "./js/贝乐虎[儿].js"
- },
- {
- "key": "csp_XYQHiker_兔小贝",
- "name": "🐰兔小贝",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/兔小贝.json"
- },
- {
- "key": "csp_XYQHiker_兔小贝2",
- "name": "🐰兔小贝2",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 0,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/兔小贝2.json"
- },
- {
- "key": "csp_XYQHiker_播视童趣",
- "name": "🦋播视童趣",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 0,
- "quickSearch": 0,
- "filterable": 1,
- "ext": "./json/播视童趣.json"
- },
- {
- "key": "博看听书",
- "name": "📚️听书┃博看",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "changeable": 0,
- "style": {
- "type": "rect",
- "ratio": 1
- },
- "ext": "./js/博看听书.js"
- },
- {
- "key": "六月听书",
- "name": "📚️听书┃六月",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "changeable": 0,
- "style": {
- "type": "rect",
- "ratio": 1
- },
- "ext": "./js/六月听书.js"
- },
- {
- "key": "csp_Kugou",
- "name": "🐶┃酷狗",
- "type": 3,
- "api": "csp_Kugou",
- "searchable": 1,
- "changeable": 0
- },
- {
- "key": "hipy_js_KTV歌厅[听]",
- "name": "🎤KTV歌厅(drpy_t3)",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "order_num": 0,
- "ext": "./js/KTV歌厅[听].js"
- },
- {
- "key": "DJ呦呦音乐网",
- "name": "🎧DJ呦呦音乐",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./json/DJyyyyw.json"
- },
- {
- "key": "酷奇",
- "name": "🎤酷奇┃MV",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "ext": "./js/酷奇MV.js",
- "style": {
- "type": "rect",
- "ratio": 1.597
- },
- "searchable": 0,
- "quickSearch": 0,
- "changeable": 0
- },
- {
- "key": "js_a8音乐",
- "name": "🎸A8音乐",
- "type": 3,
- "api": "./api/drpy2.min.js",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "./js/a8yy.js"
- }
- ],
- "parses": [
- {
- "name": "-8090g-",
- "type": 0,
- "url": "https://www.8090g.cn/jiexi/?url="
- },
- {
- "name": "-冰豆-",
- "type": 0,
- "url": "https://bd.jx.cn/?url="
- },
- {
- "name": "-m3u8TV-",
- "type": 0,
- "url": "https://jx.m3u8.tv/jiexi/?url="
- }
- ],
- "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"
- ]
- }
- ],
- "ads": [
- "mozai.4gtv.tv"
- ],
- "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"
- }
- ]
- }
- ],
- "rules": [
- {
- "name": "proxy",
- "hosts": [
- "raw.githubusercontent.com",
- "googlevideo.com",
- "cdn.v82u1l.com",
- "cdn.iz8qkg.com",
- "cdn.kin6c1.com",
- "c.biggggg.com",
- "c.olddddd.com",
- "haiwaikan.com",
- "www.histar.tv",
- "youtube.com",
- "uhibo.com",
- ".*boku.*",
- ".*nivod.*",
- ".*ulivetv.*"
- ]
- },
- {
- "name": "cl",
- "hosts": [
- "magnet"
- ],
- "regex": [
- "最 新",
- "直 播",
- "更 新"
- ]
- },
- {
- "name": "火山嗅探",
- "hosts": [
- "huoshan.com"
- ],
- "regex": [
- "item_id="
- ]
- },
- {
- "name": "抖音嗅探",
- "hosts": [
- "douyin.com"
- ],
- "regex": [
- "is_play_url="
- ]
- },
- {
- "name": "农民嗅探",
- "hosts": [
- "toutiaovod.com"
- ],
- "regex": [
- "video/tos/cn"
- ]
- },
- {
- "name": "七新嗅探",
- "hosts": [
- "api.52wyb.com"
- ],
- "regex": [
- "m3u8?pt=m3u8"
- ]
- },
- {
- "name": "夜市",
- "hosts": [
- "yeslivetv.com"
- ],
- "script": [
- "document.getElementsByClassName('vjs-big-play-button')[0].click()"
- ]
- },
- {
- "name": "毛驴",
- "hosts": [
- "www.maolvys.com"
- ],
- "script": [
- "document.getElementsByClassName('swal-button swal-button--confirm')[0].click()"
- ]
- },
- {
- "name": "czzy",
- "hosts": [
- "10086.cn"
- ],
- "regex": [
- "/storageWeb/servlet/downloadServlet"
- ]
- },
- {
- "name": "bdys",
- "hosts": [
- "bytetos.com",
- "byteimg.com",
- "bytednsdoc.com",
- "pstatp.com"
- ],
- "regex": [
- "/tos-cn"
- ],
- "exclude": [
- ".m3u8"
- ]
- },
- {
- "name": "bdys10",
- "hosts": [
- "bdys10.com"
- ],
- "regex": [
- "/obj/"
- ],
- "exclude": [
- ".m3u8"
- ]
- }
- ]
- }
|