api.json 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502
  1. //关注微信公众号:奇奇乐分享,发送“本地包”,获取本地包更新链接与图文教程。
  2. {
  3. "spider": "./spider.jar",
  4. "wallpaper": "https://tuapi.eees.cc/api.php?category=fengjing&type=302",
  5. "logo": "http://php.540734621.xyz/logo/logo.php",
  6. "lives": [
  7. {
  8. "name": "①live(EXO)",
  9. "type": 0,
  10. "url": "./lives/①live(EXO).txt",
  11. "epg": "http://diyp2.112114.xyz/?ch={name}&date={date}"
  12. },
  13. {
  14. "name": "②Live(IJK)",
  15. "type": 0,
  16. "url": "./lives/②Live(IJK).txt",
  17. "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
  18. },
  19. {
  20. "name": "③猫TV线路(EXO)",
  21. "type": 0,
  22. "url": "./lives/③猫TV线路(EXO).txt",
  23. "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
  24. },
  25. {
  26. "name": "④猫TV线路(IJK)",
  27. "type": 0,
  28. "url": "./lives/④猫TV线路(IJK).txt",
  29. "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
  30. },
  31. {
  32. "name": "新AKTV港台",
  33. "type": 0,
  34. "url": "./lives/新AKTV港台.txt",
  35. "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
  36. },
  37. {
  38. "name": "catvod TV",
  39. "type": 0,
  40. "url": "./lives/catvod TV.txt",
  41. "epg": "http://epg.51zmt.top:8000/api/diyp/?ch={name}&date={date}"
  42. },
  43. {
  44. "name": "IPTV研究所",
  45. "type": 0,
  46. "url": "./lives/IPTV研究所.txt",
  47. "epg": "http://epg.51zmt.top:8000/api/diyp/?ch={name}&date={date}"
  48. },
  49. {
  50. "name": "iill",
  51. "type": 0,
  52. "url": "./lives/iill.txt",
  53. "epg": "http://epg.51zmt.top:8000/api/diyp/?ch={name}&date={date}"
  54. },
  55. {
  56. "name": "4GTV(需要魔法)",
  57. "type": 0,
  58. "url": "./lives/4GTV(需要魔法).txt",
  59. "epg": "http://epg.51zmt.top:8000/api/diyp/?ch={name}&date={date}"
  60. },
  61. {
  62. "name": "IPTV每天两更(Guovin)",
  63. "type": 0,
  64. "url": "./lives/IPTV每天两更(Guovin).txt",
  65. "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
  66. },
  67. {
  68. "name": "抖音、斗鱼、B站、YY、Afreeca、Youtube",
  69. "type": 0,
  70. "url": "./lives/抖音、斗鱼、B站、YY、Afreeca、Youtube.txt",
  71. "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
  72. },
  73. {
  74. "name": "广东银河频道",
  75. "type": 0,
  76. "url": "./lives/广东银河频道.txt",
  77. "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
  78. },
  79. {
  80. "name": "⑪V6明线路",
  81. "type": 0,
  82. "url": "./lives/⑪V6明线路.txt",
  83. "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
  84. },
  85. {
  86. "name": "②⑥范明线路",
  87. "type": 0,
  88. "url": "./lives/②⑥范明线路.txt",
  89. "epg": "https://epg.112114.eu.org/?ch={name}&date={date}"
  90. },
  91. {
  92. "name": "③②备用虎牙",
  93. "type": 0,
  94. "url": "./lives/③②备用虎牙.txt",
  95. "epg": ""
  96. },
  97. {
  98. "name": "③③备用斗鱼",
  99. "type": 0,
  100. "url": "./lives/③③备用斗鱼.txt",
  101. "epg": ""
  102. },
  103. {
  104. "name": "③④16万MV",
  105. "type": 0,
  106. "url": "./lives/③④16万MV.txt",
  107. "epg": "http://diyp2.112114.xyz/?ch={name}&date={date}"
  108. }
  109. ],
  110. "sites": [
  111. {
  112. "key": "豆瓣",
  113. "name": "豆瓣热播请关注公众号:“开心软件”不迷路",
  114. "type": 3,
  115. "api": "csp_Douban",
  116. "searchable": 0,
  117. "changeable": 1
  118. },
  119. {
  120. "key": "csp_LocalFile",
  121. "name": "💻本地磁盘",
  122. "type": 3,
  123. "api": "csp_LocalFile",
  124. "searchable": 0,
  125. "quickSearch": 0,
  126. "filterable": 0,
  127. "type_flag": 0
  128. },
  129. {
  130. "key": "配置中心",
  131. "name": "👨‍🍳‍配置┃中心",
  132. "type": 3,
  133. "api": "csp_Config",
  134. "searchable": 0,
  135. "changeable": 0,
  136. "indexs": 0,
  137. "style": {
  138. "type": "rect",
  139. "ratio": 1.43
  140. }
  141. },
  142. {
  143. "key": "lf_live10_min",
  144. "name": "📺︎开心软件直播",
  145. "type": 3,
  146. "searchable": 0,
  147. "quickSearch": 1,
  148. "filterable": 1,
  149. "changeable": 1,
  150. "api": "./api/lf_live10_min-output.js",
  151. "ext": "./json/lf_live.json"
  152. },
  153. {
  154. "key": "alllive",
  155. "name": "📽️一直播┃LIVE",
  156. "type": 3,
  157. "api": "csp_Alllive",
  158. "playerType": 2,
  159. "searchable": 0,
  160. "quickSearch": 0,
  161. "changeable": 0,
  162. "ext": {
  163. "danmu": true
  164. },
  165. "timeout": 10
  166. },
  167. {
  168. "key": "好趣网",
  169. "name": "🎦好趣网",
  170. "type": 3,
  171. "api": "./api/drpy2.min.js",
  172. "searchable": 1,
  173. "quickSearch": 1,
  174. "filterable": 1,
  175. "order_num": 87,
  176. "ext": "./js/好趣网.js"
  177. },
  178. {
  179. "key": "荐片",
  180. "name": "🎦荐片┃P2P",
  181. "type": 3,
  182. "searchable": 1,
  183. "quickSearch": 1,
  184. "changeable": 1,
  185. "playerType": "1",
  186. "api": "./api/drpy2.min.js",
  187. "ext": "./js/jp.js"
  188. },
  189. {
  190. "key": "农民影视",
  191. "name": "🎦农民|影视",
  192. "type": 3,
  193. "api": "csp_Nmys",
  194. "searchable": 1,
  195. "quickSearch": 1,
  196. "filterable": 1
  197. },
  198. {
  199. "key": "韩小圈",
  200. "name": "🎦韩小|影视",
  201. "type": 3,
  202. "api": "csp_HanXiaoQuan",
  203. "searchable": 1,
  204. "quickSearch": 1,
  205. "filterable": 1
  206. },
  207. {
  208. "key": "瓜子影视1",
  209. "name": "🎦瓜子|影视",
  210. "type": 3,
  211. "api": "csp_Gz360",
  212. "searchable": 1,
  213. "quickSearch": 1,
  214. "filterable": 1
  215. },
  216. {
  217. "key": "骚火影视1",
  218. "name": "🎦骚火|影视",
  219. "type": 3,
  220. "api": "csp_SaoHuo",
  221. "searchable": 1,
  222. "quickSearch": 1,
  223. "filterable": 1
  224. },
  225. {
  226. "key": "洽洽影视",
  227. "name": "🎦洽洽|影视",
  228. "type": 3,
  229. "api": "csp_AppGZ",
  230. "searchable": 1,
  231. "quickSearch": 1,
  232. "filterable": 1
  233. },
  234. {
  235. "key": "金牌影视",
  236. "name": "🎦金牌|影视",
  237. "type": 3,
  238. "api": "csp_WebJP",
  239. "searchable": 1,
  240. "quickSearch": 1,
  241. "filterable": 1
  242. },
  243. {
  244. "key": "真心影视",
  245. "name": "🎦真心|影视",
  246. "type": 3,
  247. "api": "csp_WebGZ",
  248. "searchable": 1,
  249. "quickSearch": 1,
  250. "filterable": 1
  251. },
  252. {
  253. "key": "1905",
  254. "name": "🎦1905|影视",
  255. "type": 3,
  256. "api": "csp_Web1905",
  257. "searchable": 1,
  258. "quickSearch": 0,
  259. "filterable": 0
  260. },
  261. {
  262. "key": "全网影视",
  263. "name": "🎦全网|影视",
  264. "type": 3,
  265. "api": "csp_Quanwk",
  266. "searchable": 1,
  267. "quickSearch": 1,
  268. "filterable": 1,
  269. "ext": "https://www.91qkw.com"
  270. },
  271. {
  272. "key": "素白白",
  273. "name": "🎦白白|影视",
  274. "type": 3,
  275. "api": "csp_Subaibai",
  276. "searchable": 1,
  277. "quickSearch": 1,
  278. "filterable": 1,
  279. "ext": "http://subaibai.com"
  280. },
  281. {
  282. "key": "新视觉影视",
  283. "name": "🎦视觉|影视",
  284. "type": 3,
  285. "api": "./api/sj.py",
  286. "searchable": 1,
  287. "changeable": 1,
  288. "quickSearch": 1,
  289. "filterable": 1,
  290. "playerType": 2
  291. },
  292. {
  293. "key": "忍者影视",
  294. "name": "🎦忍者|影视",
  295. "type": 3,
  296. "api": "csp_AppRZ",
  297. "searchable": 1,
  298. "quickSearch": 1,
  299. "filterable": 1
  300. },
  301. {
  302. "key": "低端影视",
  303. "name": "🎦低端|影视",
  304. "type": 3,
  305. "api": "csp_Ddys",
  306. "searchable": 1,
  307. "quickSearch": 1,
  308. "filterable": 1
  309. },
  310. {
  311. "key": "机器人",
  312. "name": "🎦机器|影视",
  313. "type": 3,
  314. "api": "csp_Ikanbot",
  315. "searchable": 1,
  316. "quickSearch": 1,
  317. "filterable": 1
  318. },
  319. {
  320. "key": "西瓜视频",
  321. "name": "🎦西瓜|影视",
  322. "type": 3,
  323. "api": "csp_AmuXiguaV2",
  324. "searchable": 1,
  325. "quickSearch": 0,
  326. "filterable": 0,
  327. "changeable": 0,
  328. "style": {
  329. "type": "rect",
  330. "ratio": 1.597
  331. }
  332. },
  333. {
  334. "key": "快看影视",
  335. "name": "🎦快看|影视",
  336. "type": 3,
  337. "api": "csp_Kuaikan",
  338. "searchable": 1,
  339. "quickSearch": 1,
  340. "filterable": 1
  341. },
  342. {
  343. "key": "热播影视",
  344. "name": "🎦热播|影视",
  345. "type": 3,
  346. "api": "csp_AppRB",
  347. "searchable": 1,
  348. "quickSearch": 1,
  349. "filterable": 1
  350. },
  351. {
  352. "key": "天天",
  353. "name": "🎦天天┃影视",
  354. "type": 3,
  355. "api": "csp_AppTT",
  356. "searchable": 1,
  357. "quickSearch": 1,
  358. "filterable": 1
  359. },
  360. {
  361. "key": "饺子影视",
  362. "name": "🎦饺子|影视",
  363. "type": 3,
  364. "api": "csp_Jiaozi",
  365. "searchable": 1,
  366. "quickSearch": 1,
  367. "filterable": 1
  368. },
  369. {
  370. "key": "厂长资源",
  371. "name": "🎦厂长|资源",
  372. "type": 3,
  373. "api": "csp_Czzy",
  374. "searchable": 1,
  375. "quickSearch": 1,
  376. "filterable": 1
  377. },
  378. {
  379. "key": "看客影视",
  380. "name": "🎦看客|影视",
  381. "type": 3,
  382. "api": "csp_Kanke",
  383. "searchable": 1,
  384. "quickSearch": 1,
  385. "filterable": 1
  386. },
  387. {
  388. "key": "奇优影视",
  389. "name": "🎦奇优|影视",
  390. "type": 3,
  391. "api": "csp_Qiyou",
  392. "searchable": 1,
  393. "quickSearch": 1,
  394. "filterable": 1,
  395. "ext": "http://www.dyxz2.com/"
  396. },
  397. {
  398. "key": "雨滴",
  399. "name": "🎦雨滴|影视",
  400. "type": 3,
  401. "api": "csp_Xdai",
  402. "playerType": 1,
  403. "ext": "jaHR0cDovL2M4dzJvdjd1NXdnMnoxbzhwMjFjLmFsaXl1bmNzLmNsaWNrfGs5bzNwMmM4YjdtM3owbzh8azlvM3AyYzhiN20zejBvOHwxMDA="
  404. },
  405. {
  406. "key": "现代",
  407. "name": "🎦现代|影视",
  408. "type": 3,
  409. "api": "csp_Xdai",
  410. "playerType": 1,
  411. "ext": "caHR0cHM6Ly9hcHAuYnJvdm9kLmNvbXxzemRqd2RhcHB3Y25tZGhifHN6ZGp3ZGFwcHdjbm1kaGJ8MTE0"
  412. },
  413. {
  414. "key": "优质",
  415. "name": "🎦优质|影视",
  416. "type": 3,
  417. "api": "csp_Xdai",
  418. "playerType": 1,
  419. "ext": "jaHR0cHM6Ly9hcGlhcHBkeXl6dHZ5eWRzcXdkeS42OC5neTo1Njg5fGR5eXp0dmFwaWFwcHl5ZHN8ZHl5enR2YXBpYXBweXlkc3wxMDA="
  420. },
  421. {
  422. "key": "蝴蝶",
  423. "name": "🎦蝴蝶|影视",
  424. "type": 3,
  425. "api": "csp_Hudie",
  426. "playerType": 2,
  427. "ext": "eaHR0cHM6Ly9kLmRjbW92aWUudG9w"
  428. },
  429. {
  430. "key": "闪雷影视",
  431. "name": "🚀闪雷┃JS",
  432. "type": 3,
  433. "api": "./api/drpy2.min.js",
  434. "ext": "./js/闪雷影视.js"
  435. },
  436. {
  437. "key": "热播APP",
  438. "name": "☀热播┃APP",
  439. "type": 3,
  440. "api": "csp_AppRB",
  441. "playerType": 1,
  442. "searchable": 1,
  443. "quickSearch": 1,
  444. "changeable": 1,
  445. "ext": "http://v.rbotv.cn/"
  446. },
  447. {
  448. "key": "天天弹幕",
  449. "name": "💘天天|弹幕",
  450. "type": 3,
  451. "api": "csp_TianTian",
  452. "searchable": 1,
  453. "quickSearch": 1,
  454. "filterable": 1,
  455. "ext": {
  456. "danmu": true,
  457. "site": "aHR0cDovL29wLnlzZHFqcy5jbg=="
  458. }
  459. },
  460. {
  461. "key": "厂长弹幕",
  462. "name": "💘厂长|弹幕",
  463. "type": 3,
  464. "api": "csp_Czzy",
  465. "searchable": 1,
  466. "quickSearch": 1,
  467. "filterable": 1,
  468. "ext": {
  469. "danmu": true
  470. }
  471. },
  472. {
  473. "key": "热播弹幕",
  474. "name": "💘热播|弹幕",
  475. "type": 3,
  476. "api": "csp_TianTian",
  477. "searchable": 1,
  478. "quickSearch": 1,
  479. "filterable": 1,
  480. "ext": {
  481. "danmu": true,
  482. "site": "aHR0cDovL3YucmJvdHYuY24="
  483. }
  484. },
  485. {
  486. "key": "浪酷弹幕",
  487. "name": "💘浪酷|弹幕",
  488. "type": 3,
  489. "api": "csp_TianTian",
  490. "searchable": 1,
  491. "quickSearch": 1,
  492. "filterable": 1,
  493. "ext": {
  494. "danmu": true,
  495. "site": "aHR0cDovL3YubGt1eXMuY24="
  496. }
  497. },
  498. {
  499. "key": "糯米弹幕",
  500. "name": "💘糯米|弹幕",
  501. "type": 3,
  502. "api": "csp_Nmys",
  503. "searchable": 1,
  504. "quickSearch": 1,
  505. "filterable": 1,
  506. "ext": {
  507. "danmu": true
  508. }
  509. },
  510. {
  511. "key": "文才弹幕",
  512. "name": "💘文才┃弹幕",
  513. "type": 3,
  514. "api": "csp_Jpys",
  515. "searchable": 1,
  516. "quickSearch": 1,
  517. "filterable": 1,
  518. "ext": {
  519. "danmu": true
  520. }
  521. },
  522. {
  523. "key": "三六零弹幕",
  524. "name": "💘三六┃弹幕",
  525. "type": 3,
  526. "api": "csp_Sp360",
  527. "searchable": 1,
  528. "filterable": 1,
  529. "changeable": 1,
  530. "ext": {
  531. "danmu": true
  532. }
  533. },
  534. {
  535. "key": "机器人弹幕",
  536. "name": "💘机器|弹幕",
  537. "type": 3,
  538. "api": "csp_Ikanbot",
  539. "searchable": 1,
  540. "quickSearch": 1,
  541. "filterable": 1,
  542. "ext": {
  543. "danmu": true
  544. }
  545. },
  546. {
  547. "key": "荐片弹幕",
  548. "name": "💘荐片┃弹幕",
  549. "type": 3,
  550. "api": "csp_Jianpian",
  551. "playerType": 1,
  552. "searchable": 1,
  553. "quickSearch": 1,
  554. "filterable": 1,
  555. "ext": {
  556. "danmu": true
  557. }
  558. },
  559. {
  560. "key": "小苹果弹幕版",
  561. "name": "🍎苹果┃弹幕",
  562. "type": 3,
  563. "api": "csp_Xpg",
  564. "searchable": 1,
  565. "quickSearch": 1,
  566. "filterable": 1,
  567. "ext": {
  568. "danmu": true
  569. },
  570. "timeout": 10
  571. },
  572. {
  573. "key": "哔嘀弹幕",
  574. "name": "💘哔嘀|弹幕",
  575. "type": 3,
  576. "api": "csp_Bdys",
  577. "searchable": 1,
  578. "quickSearch": 1,
  579. "filterable": 1,
  580. "ext": {
  581. "site": "https://www.xlys01.com",
  582. "danmu": true
  583. }
  584. },
  585. {
  586. "key": "哔哩弹幕",
  587. "name": "🅱哔哩|弹幕",
  588. "type": 3,
  589. "api": "csp_Bilimd",
  590. "searchable": 1,
  591. "quickSearch": 1,
  592. "filterable": 1,
  593. "style": {
  594. "type": "rect",
  595. "ratio": 1.433
  596. },
  597. "ext": {
  598. "cookie": "http://127.0.0.1:9978/file/TVBox/bilibili.txt"
  599. },
  600. "timeout": 10
  601. },
  602. {
  603. "key": "追剧APP",
  604. "name": "🚀追剧┃APP",
  605. "type": 3,
  606. "api": "csp_AppZJ",
  607. "playerType": 1,
  608. "searchable": 1,
  609. "quickSearch": 1,
  610. "changeable": 1,
  611. "ext": "http://z.kzjtv.com/"
  612. },
  613. {
  614. "key": "木耳",
  615. "name": "🪴木耳┃秒播",
  616. "type": 1,
  617. "api": "https://json02.heimuer.xyz/api.php/provide/vod",
  618. "searchable": 1,
  619. "filterable": 1,
  620. "changeable": 1,
  621. "timeout": 20,
  622. "categories": [
  623. "剧情片",
  624. "动作片",
  625. "冒险片",
  626. "喜剧片",
  627. "奇幻片",
  628. "恐怖片",
  629. "悬疑片",
  630. "惊悚片",
  631. "灾难片",
  632. "爱情片",
  633. "犯罪片",
  634. "科幻片",
  635. "歌舞片",
  636. "战争片",
  637. "经典片",
  638. "动画电影",
  639. "网络电影",
  640. "其他片",
  641. "国产剧",
  642. "港剧",
  643. "韩剧",
  644. "日剧",
  645. "泰剧",
  646. "台剧",
  647. "欧美剧",
  648. "新马剧",
  649. "其他剧",
  650. "国产综艺",
  651. "港台综艺",
  652. "韩国综艺",
  653. "日本综艺",
  654. "欧美综艺",
  655. "新马泰综艺",
  656. "其他综艺",
  657. "古装短剧",
  658. "虐恋短剧",
  659. "逆袭短剧",
  660. "神豪短剧",
  661. "重生短剧",
  662. "复仇短剧",
  663. "穿越短剧",
  664. "甜宠短剧",
  665. "强者短剧",
  666. "欧美动漫",
  667. "日本动漫",
  668. "韩国动漫",
  669. "国产动漫",
  670. "港台动漫"
  671. ],
  672. "header": {
  673. "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"
  674. }
  675. },
  676. {
  677. "key": "立播弹幕版",
  678. "name": "🐰立播┃弹幕",
  679. "type": 3,
  680. "api": "csp_Libvio",
  681. "searchable": 1,
  682. "filterable": 1,
  683. "changeable": 1,
  684. "ext": {
  685. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
  686. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
  687. "uc_cookie": "http://127.0.0.1:9978/file/tvbox/uc.txt",
  688. "site": "https://libvio.link",
  689. "danmu": true
  690. },
  691. "timeout": 25
  692. },
  693. {
  694. "key": "hipy_js_采集之王",
  695. "name": "🎦采集之王[合]",
  696. "type": 3,
  697. "api": "./api/drpy2.min.js",
  698. "searchable": 1,
  699. "quickSearch": 1,
  700. "filterable": 1,
  701. "order_num": 0,
  702. "ext": "./js/采集之王[合].js?type=url&params=./json/采集静态.json$1"
  703. },
  704. {
  705. "key": "无忧短剧",
  706. "name": "🌈无忧┃短剧",
  707. "type": 3,
  708. "api": "csp_Duanj",
  709. "searchable": 1,
  710. "changeable": 0,
  711. "style": {
  712. "type": "rect",
  713. "ratio": 1.433
  714. },
  715. "timeout": 10
  716. },
  717. {
  718. "key": "csp_XYQHiker_爱你短剧",
  719. "name": "🎦爱你短剧",
  720. "type": 3,
  721. "api": "csp_XYQHiker",
  722. "searchable": 1,
  723. "quickSearch": 1,
  724. "filterable": 1,
  725. "ext": "./json/爱你短剧.json"
  726. },
  727. {
  728. "key": "csp_XYQHiker_河马短剧",
  729. "name": "🎦河马短剧",
  730. "type": 3,
  731. "api": "csp_XYQHiker",
  732. "searchable": 1,
  733. "quickSearch": 1,
  734. "filterable": 1,
  735. "ext": "./json/河马短剧.json"
  736. },
  737. {
  738. "key": "csp_XYQHiker_短剧屋",
  739. "name": "🎦短剧屋",
  740. "type": 3,
  741. "api": "csp_XYQHiker",
  742. "searchable": 1,
  743. "quickSearch": 1,
  744. "filterable": 1,
  745. "ext": "./json/短剧屋.json"
  746. },
  747. {
  748. "key": "js_星芽短剧",
  749. "name": "🎦星芽短剧",
  750. "type": 3,
  751. "api": "./api/drpy2.min.js",
  752. "searchable": 1,
  753. "quickSearch": 1,
  754. "filterable": 1,
  755. "ext": "./js/星芽短剧.js"
  756. },
  757. {
  758. "key": "js_蓝莓短剧",
  759. "name": "🎦蓝莓短剧",
  760. "type": 3,
  761. "api": "./api/drpy2.min.js",
  762. "searchable": 1,
  763. "quickSearch": 1,
  764. "filterable": 1,
  765. "ext": "./js/蓝莓短剧.js"
  766. },
  767. {
  768. "key": "你好帅",
  769. "name": "🎦好帅┃短剧",
  770. "type": 3,
  771. "api": "csp_XBPQ",
  772. "ext": {
  773. "分类url": "https://nhsyy.com/vodshwo/{cateId}--{by}------{catePg}---.html",
  774. "分类": "穿越$fenle#战神$fenlei2#重生$fenlei3#爱情$fenlei4#萌娃$guda#神医$shenyi#古代$gudai#言情$yanqing#玄幻$xuanhuan",
  775. "播放数组": "<div class=\"sort-item\"&&</div>"
  776. }
  777. },
  778. {
  779. "key": "嫖嫖嫖",
  780. "name": "🧿嫖嫖┃影视",
  781. "type": 3,
  782. "api": "csp_XBPQ",
  783. "ext": {
  784. "主页url": "https://www.gs4x7nq4.com/",
  785. "播放请求头": "User-Agent$Mozilla/5.0(WindowsNT10.0;Win64;x64)AppleWebKit/537.36(KHTML,likeGecko)Chrome/128.0.0.0Safari/537.36",
  786. "简介": "⚠️开心软件特别提醒您⚠️请勿相信影片中的广告,以免上当受骗❗️+</label>&&</div>",
  787. "嗅探词": ".mp4#.m3u8#.flv#.m3u8?#.mp4?",
  788. "影片类型": "tags\">&&director\">",
  789. "影片状态": "bottom\">&&</div>",
  790. "二次截取": "videoList\":\\[&&\\]",
  791. "数组": "{&&}[不包含:伦理剧]",
  792. "图片": "https+://ywxohs.com+obs.gduamoe.com&&\",",
  793. "标题": "vodName\":\"&&\"",
  794. "副标题": "vodRemarks\":\"&&\"",
  795. "链接": "https://www.gs4x7nq4.com/detail/+vodId\":&&,",
  796. "导演": "导演:</div>&&主演",
  797. "主演": "主演:</div>&&别名",
  798. "线路标题": "xxx",
  799. "播放数组": "listitem\">&&info\">",
  800. "播放列表": "<a&&</a>",
  801. "倒序": "否",
  802. "搜索url": "https://www.gs4x7nq4.com/vod/search/{wd}",
  803. "搜索副标题": "class=\"boottom\"*<div>&&</div",
  804. "分类": "电影$1#电视剧$2#综艺$3#动漫$4",
  805. "分类url": "https://www.gs4x7nq4.com/vod/show/id/{cateId}/class/{class}/year/{year}/area/{area}/page/{catePg}"
  806. }
  807. },
  808. {
  809. "key": "白嫖者",
  810. "name": "🧿白嫖┃影视",
  811. "type": 3,
  812. "api": "csp_XBPQ",
  813. "ext": {
  814. "分类url": "https://www.qyzf88.com/qyvodshow/{cateId}-{area}-{by}-{class}-----{catePg}---{year}.html",
  815. "分类": "电影$1#电视剧$2#动漫$4#综艺$3",
  816. "副标题": "class=\"pic-texttext-right\"&&</span>",
  817. "简介": "️开心软件特别提醒您⚠️请勿相信影片中的广告,以免上当受骗❗+剧情介绍:&&</p>"
  818. }
  819. },
  820. {
  821. "key": "656",
  822. "name": "🧿梦想┃影视",
  823. "type": 3,
  824. "api": "csp_XBPQ",
  825. "searchable": 1,
  826. "quickSearch": 1,
  827. "filterable": 1,
  828. "ext": {
  829. "主页url": "https://www.kkys02.com/",
  830. "分类url": "https://www.kkys02.com/{cateId}-{catePg}.html[https://www.kkys02.com/{cateId}-.html];;ak",
  831. "分类": "豆瓣TOP250&2023最佳影片&毒舌电影&热映电影&热播剧集&热门综艺&Netflix电影&Netflix剧集&经典美剧&海外短画&爱情治愈&漫威宇宙&星爷系列&迪士尼&国产剧&台湾剧&韩国剧&欧美剧&香港剧&泰国剧&日本剧&动作片&喜剧片&科幻片&恐怖片&爱情片&剧情片&战争片&传记片&动画片&国产动漫&日本动漫&韩国动漫&欧美动漫&大陆综艺&香港综艺&台湾综艺&日本综艺&韩国综艺&欧美综艺&短剧",
  832. "分类值": "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",
  833. "数组": "module-item\">&&\"v-item-footer\">",
  834. "图片": "https://61.147.93.252:15002+data-original=\"&&\"",
  835. "标题": "title=\"&&\"",
  836. "副标题": "影视</span&&</div>",
  837. "链接": "href=\"&&\"",
  838. "搜索二次截取": "id=\"units_top\"&&id=\"units_footer\"",
  839. "搜索url": "https://www.kkys02.com/search?os=pc&k={wd}",
  840. "搜索数组": "<a&&class=\"tags\"",
  841. "搜索图片": "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]",
  842. "搜索标题": "title=\"&&\"",
  843. "搜索副标题": "v-item-bottom\">&&</div>",
  844. "搜索链接": "href=\"&&\"",
  845. "线路数组": "可可影视提供&&<i[不包含:4K(高峰不卡)]",
  846. "线路标题": ">&&</span",
  847. "播放数组": "episode-list\"&&</div",
  848. "播放列表": "<a&&/a",
  849. "播放标题": ">&&<",
  850. "播放链接": "href=\"&&\"",
  851. "嗅探词": ".m3u8#video_mp4#tos-#.mp4#cdn.123pan.cn#huoshanvod.com",
  852. "影片年代": "class=\"detail-tags-item\">&&</a>",
  853. "影片类型": "<divclass=\"detail-tagsfs-margin-topfs-margin-bottom\">&&立即播放",
  854. "影片状态": "备注:&&</div>",
  855. "导演": "导演:</div>&&</div>",
  856. "主演": "演员:</div>&&</div>",
  857. "简介": "detail-desc\">&&</p>"
  858. }
  859. },
  860. {
  861. "key": "8号影院",
  862. "name": "🧿8号┃影视",
  863. "type": 3,
  864. "api": "csp_XBPQ",
  865. "searchable": 1,
  866. "quickSearch": 1,
  867. "filterable": 1,
  868. "ext": {
  869. "搜索url": "http://www.soutiyi.com/search.php?searchword={wd}",
  870. "搜索链接": "href=\"&&\"",
  871. "简介": "请勿相信影片中的广告,以免上当受骗。+<pclass=\"col-pddetail\"&&</span>",
  872. "线路数组": "<imgsrc=\"/statics/icon/icon_26.png\"&&</h3>",
  873. "线路标题": "蓝光专线",
  874. "分类url": "http://www.soutiyi.com/frim/{cateId}-{catePg}.html",
  875. "分类": "动作片$5#爱情片$6#科幻片$7#恐怖片$8#喜剧片$10#剧情片$12#国产剧$13#港台剧$14#欧美剧$15#日韩剧$16#综艺$3#动漫$4"
  876. }
  877. },
  878. {
  879. "key": "csp_红狐狸影视",
  880. "name": "🧿狐狸┃影视",
  881. "type": 3,
  882. "api": "csp_XBPQ",
  883. "ext": {
  884. "分类url": "https://honghuli.com/leibiao/{cateId}-{area}-------{catePg}---{year}.html",
  885. "分类": "电影$1#电视剧$2#综艺$3#动漫$4"
  886. }
  887. },
  888. {
  889. "key": "大师兄",
  890. "name": "🧿大师┃影视",
  891. "type": 3,
  892. "api": "csp_XBPQ",
  893. "ext": {
  894. "分类url": "https://www.dsxysproo.com/dqvodshow/{cateId}-{area}--{class}-----{catePg}---{year}.html",
  895. "分类": "电视剧$2#电影$1#动漫$4#综艺$3"
  896. }
  897. },
  898. {
  899. "key": "疯狗",
  900. "name": "🧿疯狗┃影视",
  901. "type": 3,
  902. "api": "csp_XBPQ",
  903. "ext": {
  904. "线路数组": "page-header\">&&</div>",
  905. "播放数组": "list-unstyledrowtext-centerff-playurl-lineff-playurl\"&&</ul>",
  906. "分类url": "https://m.fenggoudy3.com/list-select-id-{cateId}-type-{class}-area-{area}-year-{year}-star--state--order-addtime-p-{catePg}.html;;d0",
  907. "分类": "电视剧$2#电影$1#动漫$3#综艺$4"
  908. }
  909. },
  910. {
  911. "key": "csp_XYQHiker_七新影视",
  912. "name": "🎦七新影视",
  913. "type": 3,
  914. "api": "csp_XYQHiker",
  915. "searchable": 1,
  916. "quickSearch": 1,
  917. "filterable": 1,
  918. "ext": "./json/七新影视.json"
  919. },
  920. {
  921. "key": "csp_XYQHiker_可可影视",
  922. "name": "🎦可可影视",
  923. "type": 3,
  924. "api": "csp_XYQHiker",
  925. "searchable": 1,
  926. "quickSearch": 1,
  927. "filterable": 1,
  928. "ext": "./json/可可影视.json"
  929. },
  930. {
  931. "key": "hipy_js_黑木耳资源[资]",
  932. "name": "🎦木耳资源",
  933. "type": 3,
  934. "api": "./api/drpy2.min.js",
  935. "searchable": 1,
  936. "quickSearch": 1,
  937. "filterable": 1,
  938. "order_num": 0,
  939. "ext": "./js/黑木耳资源[资].js"
  940. },
  941. {
  942. "key": "瓜子",
  943. "name": "🎦瓜子",
  944. "type": 3,
  945. "searchable": 1,
  946. "quickSearch": 1,
  947. "changeable": 1,
  948. "playerType": "1",
  949. "api": "./api/drpy2.min.js",
  950. "ext": "./js/瓜子.js"
  951. },
  952. {
  953. "key": "360zy",
  954. "name": "🎦360采集",
  955. "type": 1,
  956. "api": "https://360zy.com/api.php/provide/vod?",
  957. "searchable": 1,
  958. "changeable": 1,
  959. "categories": [
  960. "动作片",
  961. "喜剧片",
  962. "爱情片",
  963. "科幻片",
  964. "恐怖片",
  965. "剧情片",
  966. "战争片",
  967. "古装片",
  968. "悬疑片",
  969. "犯罪片",
  970. "灾难片",
  971. "国产剧",
  972. "香港剧",
  973. "韩国剧",
  974. "欧美剧",
  975. "台湾剧",
  976. "日本剧",
  977. "海外剧",
  978. "泰国剧",
  979. "大陆综艺",
  980. "港台综艺",
  981. "日韩综艺",
  982. "欧美综艺",
  983. "国产动漫",
  984. "欧美动漫",
  985. "日韩动漫",
  986. "现代都市",
  987. "脑洞悬疑",
  988. "年代穿越",
  989. "古装仙侠",
  990. "女频恋爱",
  991. "成长逆袭",
  992. "反转爽剧"
  993. ]
  994. },
  995. {
  996. "key": "hipy_js_哔哩影视[官]",
  997. "name": "🎦哔哩影视[官](drpy_t3)",
  998. "type": 3,
  999. "api": "./api/drpy2.min.js",
  1000. "searchable": 1,
  1001. "quickSearch": 1,
  1002. "filterable": 1,
  1003. "order_num": 73,
  1004. "ext": "./js/哔哩影视[官].js"
  1005. },
  1006. {
  1007. "key": "hipy_js_4k剧院",
  1008. "name": "🎦4k剧院(drpy_t3)",
  1009. "type": 3,
  1010. "api": "./api/drpy2.min.js",
  1011. "searchable": 1,
  1012. "quickSearch": 1,
  1013. "filterable": 1,
  1014. "order_num": 6,
  1015. "ext": "./js/4k剧院.js"
  1016. },
  1017. {
  1018. "key": "茶狐杯",
  1019. "name": "🎦茶狐杯",
  1020. "type": 3,
  1021. "api": "csp_XBPQ",
  1022. "searchable": 1,
  1023. "quickSearch": 1,
  1024. "filterable": 1,
  1025. "ext": "./json/茶狐杯.json"
  1026. },
  1027. {
  1028. "key": "奈飞影视",
  1029. "name": "🎦鸭奈飞",
  1030. "type": 3,
  1031. "api": "csp_XYQHiker",
  1032. "searchable": 1,
  1033. "quickSearch": 1,
  1034. "filterable": 1,
  1035. "ext": "./json/ynfys.json"
  1036. },
  1037. {
  1038. "key": "宝片视频_js",
  1039. "name": "👨‍🍳‍宝片视频(drpy_t3)",
  1040. "type": 3,
  1041. "api": "./api/drpy2.min.js",
  1042. "searchable": 1,
  1043. "quickSearch": 1,
  1044. "filterable": 1,
  1045. "order_num": 0,
  1046. "ext": "./js/宝片视频.js"
  1047. },
  1048. {
  1049. "key": "csp_星辰",
  1050. "name": "🎦星辰",
  1051. "type": 3,
  1052. "api": "csp_XBPQ",
  1053. "searchable": 1,
  1054. "quickSearch": 1,
  1055. "filterable": 1,
  1056. "ext": "./json/xcys.json"
  1057. },
  1058. {
  1059. "key": "三米ys",
  1060. "name": "🎦三米影视",
  1061. "type": 3,
  1062. "api": "csp_XBPQ",
  1063. "ext": {
  1064. "分类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]",
  1065. "分类": "电影$movie#连续剧$drama#动漫$comic#综艺$tvshow"
  1066. }
  1067. },
  1068. {
  1069. "key": "美柏",
  1070. "name": "🎦美柏",
  1071. "type": 3,
  1072. "api": "csp_XBPQ",
  1073. "searchable": 1,
  1074. "quickSearch": 1,
  1075. "filterable": 1,
  1076. "ext": "./json/美柏.json"
  1077. },
  1078. {
  1079. "key": "大师兄",
  1080. "name": "🎦大师兄影视",
  1081. "type": 3,
  1082. "api": "csp_XBPQ",
  1083. "ext": {
  1084. "简介": "⚠️特别提醒您⚠️请勿相信影片中的广告,以免上当受骗❗️+剧情介绍:&&</p >",
  1085. "分类url": "https://www.dsxysproo.com/dqvodshow/{cateId}-{area}--{class}-----{catePg}---{year}.html",
  1086. "分类": "电视剧$2#电影$1#动漫$4#综艺$3"
  1087. }
  1088. },
  1089. {
  1090. "key": "白嫖者",
  1091. "name": "🎦白嫖者联盟",
  1092. "type": 3,
  1093. "api": "csp_XBPQ",
  1094. "ext": {
  1095. "分类url": "https://www.qyzf88.com/qyvodshow/{cateId}-{area}-{by}-{class}-----{catePg}---{year}.html",
  1096. "分类": "电影$1#电视剧$2#动漫$4#综艺$3",
  1097. "副标题": "class=\"pic-text text-right\"&&</span>",
  1098. "简介": "⚠️特别提醒您⚠️请勿相信影片中的广告,以免上当受骗❗️+剧情介绍:&&</p >"
  1099. }
  1100. },
  1101. {
  1102. "key": "凯奇追剧",
  1103. "name": "🎦凯奇┃追剧",
  1104. "type": 3,
  1105. "api": "csp_XBPQ",
  1106. "ext": {
  1107. "简介": "+hl-content-text\">&&</span>",
  1108. "分类url": "https://www.kqyy.tv/vodshow/area/{area}/class/{class}/id/{cateId}/page/{catePg}/year/{year}.html",
  1109. "分类": "电影$dianying#连续剧$lianxuju#动漫$dongman#综艺$zongyi#短剧$duanshipin"
  1110. }
  1111. },
  1112. {
  1113. "key": "csp_红狐狸影视",
  1114. "name": "🎦红狐狸影视",
  1115. "type": 3,
  1116. "api": "csp_XBPQ",
  1117. "ext": {
  1118. "分类url": "https://honghuli.com/leibiao/{cateId}-{area}-------{catePg}---{year}.html",
  1119. "分类": "电影$1#电视剧$2#综艺$3#动漫$4"
  1120. }
  1121. },
  1122. {
  1123. "key": "热播之家",
  1124. "name": "🎦热播之家",
  1125. "type": 3,
  1126. "api": "csp_XYQHiker",
  1127. "searchable": 1,
  1128. "quickSearch": 1,
  1129. "filterable": 1,
  1130. "ext": "./json/rebozj.json"
  1131. },
  1132. {
  1133. "key": "hipy_js_TVB云播",
  1134. "name": "🎦TVB云播(drpy_t3)",
  1135. "type": 3,
  1136. "api": "./api/drpy2.min.js",
  1137. "searchable": 1,
  1138. "quickSearch": 1,
  1139. "filterable": 1,
  1140. "order_num": 0,
  1141. "ext": "./js/TVB云播.js"
  1142. },
  1143. {
  1144. "key": "csp_XYQBiu_骚火VIP",
  1145. "name": "🎦骚火",
  1146. "type": 3,
  1147. "api": "csp_XBPQ",
  1148. "searchable": 1,
  1149. "quickSearch": 1,
  1150. "filterable": 1,
  1151. "ext": "./json/shyyVIP.json"
  1152. },
  1153. {
  1154. "key": "csp_vs",
  1155. "name": "🎦VS",
  1156. "type": 3,
  1157. "api": "csp_XBPQ",
  1158. "searchable": 1,
  1159. "quickSearch": 1,
  1160. "filterable": 1,
  1161. "ext": "./json/vsys.json"
  1162. },
  1163. {
  1164. "key": "4K影视",
  1165. "name": "🎦4K影视",
  1166. "type": 3,
  1167. "api": "csp_XBPQ",
  1168. "searchable": 1,
  1169. "quickSearch": 1,
  1170. "filterable": 1,
  1171. "ext": "./json/4K影视.json"
  1172. },
  1173. {
  1174. "key": "csp_xBPQ_奇优",
  1175. "name": "🎦奇优",
  1176. "type": 3,
  1177. "api": "csp_XBPQ",
  1178. "searchable": 1,
  1179. "quickSearch": 1,
  1180. "filterable": 1,
  1181. "ext": "./json/qiyou.json"
  1182. },
  1183. {
  1184. "key": "子子影视",
  1185. "name": "🎦子子影视",
  1186. "type": 3,
  1187. "api": "csp_XBPQ",
  1188. "searchable": 1,
  1189. "quickSearch": 1,
  1190. "filterable": 1,
  1191. "ext": "./json/子子.json"
  1192. },
  1193. {
  1194. "key": "圣城影视",
  1195. "name": "🎦圣城",
  1196. "type": 3,
  1197. "api": "csp_XBPQ",
  1198. "searchable": 1,
  1199. "quickSearch": 1,
  1200. "filterable": 1,
  1201. "ext": "./json/sc1080.json"
  1202. },
  1203. {
  1204. "key": "米爱影视",
  1205. "name": "🎦米爱",
  1206. "type": 3,
  1207. "api": "csp_XBPQ",
  1208. "searchable": 1,
  1209. "quickSearch": 1,
  1210. "filterable": 1,
  1211. "ext": "./json/miaiys.json"
  1212. },
  1213. {
  1214. "key": "HDmoli",
  1215. "name": "🎦魔力高清",
  1216. "type": 3,
  1217. "api": "csp_XBPQ",
  1218. "searchable": 1,
  1219. "quickSearch": 1,
  1220. "filterable": 1,
  1221. "ext": "./json/HDmoli.json"
  1222. },
  1223. {
  1224. "key": "高清在线",
  1225. "name": "🎦高清在线",
  1226. "type": 3,
  1227. "api": "csp_XBPQ",
  1228. "ext": {
  1229. "简介": "剧情介绍: +stui-pannel_bd\">&&</div>",
  1230. "线路数组": "stui-pannel__head bottom-line active clearfix\">&&</div>",
  1231. "分类url": "https://www.gxfiber.com/vodshow/{cateId}-{area}--{class}-----{catePg}---{year}.html",
  1232. "分类": "短剧$duanju#电视剧$dsj#电影$dy#动漫$dm#综艺$zy"
  1233. }
  1234. },
  1235. {
  1236. "key": "lzi",
  1237. "name": "🎦量子资源",
  1238. "type": 3,
  1239. "api": "csp_XYQHiker",
  1240. "searchable": 1,
  1241. "quickSearch": 1,
  1242. "filterable": 1,
  1243. "ext": "./json/liangzi.json"
  1244. },
  1245. {
  1246. "key": "csp_xBPQ睛天影视",
  1247. "name": "🎦睛天影视",
  1248. "type": 3,
  1249. "api": "csp_XBPQ",
  1250. "searchable": 1,
  1251. "quickSearch": 1,
  1252. "filterable": 1,
  1253. "ext": "./json/睛天影视.json"
  1254. },
  1255. {
  1256. "key": "非凡资源",
  1257. "name": "🎦非凡资源",
  1258. "type": 3,
  1259. "api": "csp_XBPQ",
  1260. "searchable": 1,
  1261. "quickSearch": 1,
  1262. "filterable": 1,
  1263. "ext": "./json/ffzy.json"
  1264. },
  1265. {
  1266. "key": "果果4K解析_js",
  1267. "name": "🌞果果4K(解析)",
  1268. "type": 3,
  1269. "api": "./api/drpy2.min.js",
  1270. "searchable": 1,
  1271. "quickSearch": 1,
  1272. "filterable": 1,
  1273. "order_num": 0,
  1274. "ext": "./js/果果4K.js"
  1275. },
  1276. {
  1277. "key": "🌞腾腾4K解析_js",
  1278. "name": "🌞腾腾4K(解析)",
  1279. "type": 3,
  1280. "api": "./api/drpy2.min.js",
  1281. "searchable": 1,
  1282. "quickSearch": 1,
  1283. "filterable": 1,
  1284. "order_num": 0,
  1285. "ext": "./js/腾腾4K.js"
  1286. },
  1287. {
  1288. "key": "爱奇异",
  1289. "name": "🎦爱奇艺(官)",
  1290. "type": 3,
  1291. "api": "./api/drpy2.min.js",
  1292. "ext": "./js/爱奇艺.js"
  1293. },
  1294. {
  1295. "key": "优酷",
  1296. "name": "🎦优酷(官)",
  1297. "type": 3,
  1298. "api": "./api/drpy2.min.js",
  1299. "ext": "./js/优酷.js"
  1300. },
  1301. {
  1302. "key": "腾讯",
  1303. "name": "🎦腾讯VIP(官)",
  1304. "type": 3,
  1305. "api": "./api/drpy2.min.js",
  1306. "ext": "./js/腾讯VIP.js"
  1307. },
  1308. {
  1309. "key": "芒果",
  1310. "name": "🎦芒果(官)",
  1311. "type": 3,
  1312. "api": "./api/drpy2.min.js",
  1313. "ext": "./js/芒果.js"
  1314. },
  1315. {
  1316. "key": "搜狗",
  1317. "name": "🎦搜狗(官)",
  1318. "type": 3,
  1319. "api": "./api/drpy2.min.js",
  1320. "ext": "./js/搜狗.js"
  1321. },
  1322. {
  1323. "key": "木偶网盘",
  1324. "name": "📀木偶┃网盘",
  1325. "type": 3,
  1326. "api": "csp_Wobg",
  1327. "searchable": 1,
  1328. "filterable": 1,
  1329. "changeable": 1,
  1330. "ext": {
  1331. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
  1332. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
  1333. "uc_cookie": "http://127.0.0.1:9978/file/tvbox/uc.txt",
  1334. "site": "http://www.mogg.top/",
  1335. "danmu": true
  1336. },
  1337. "timeout": 25
  1338. },
  1339. {
  1340. "key": "玩偶哥哥",
  1341. "name": "📀玩偶┃网盘",
  1342. "type": 3,
  1343. "api": "csp_Wogg",
  1344. "searchable": 1,
  1345. "filterable": 1,
  1346. "changeable": 1,
  1347. "ext": {
  1348. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
  1349. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
  1350. "uc_cookie": "http://127.0.0.1:9978/file/tvbox/uc.txt",
  1351. "wogg": true,
  1352. "danmu": true
  1353. },
  1354. "timeout": 30
  1355. },
  1356. {
  1357. "key": "至臻网盘",
  1358. "name": "📀至臻┃网盘",
  1359. "type": 3,
  1360. "api": "csp_Wobg",
  1361. "searchable": 1,
  1362. "filterable": 1,
  1363. "changeable": 1,
  1364. "ext": {
  1365. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
  1366. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
  1367. "uc_cookie": "http://127.0.0.1:9978/file/tvbox/uc.txt",
  1368. "site": "https://mihdr.top",
  1369. "danmu": true
  1370. },
  1371. "timeout": 25
  1372. },
  1373. {
  1374. "key": "奥秘网盘",
  1375. "name": "📀奥秘┃网盘",
  1376. "type": 3,
  1377. "api": "csp_Wobg",
  1378. "searchable": 1,
  1379. "filterable": 1,
  1380. "changeable": 1,
  1381. "ext": {
  1382. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
  1383. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
  1384. "uc_cookie": "http://127.0.0.1:9978/file/tvbox/uc.txt",
  1385. "site": "https://vip.omii.top/",
  1386. "danmu": true
  1387. },
  1388. "timeout": 25
  1389. },
  1390. {
  1391. "key": "欧歌网盘",
  1392. "name": "📀欧歌┃网盘",
  1393. "type": 3,
  1394. "api": "csp_Wobg",
  1395. "searchable": 1,
  1396. "filterable": 1,
  1397. "changeable": 1,
  1398. "ext": {
  1399. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
  1400. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
  1401. "uc_cookie": "http://127.0.0.1:9978/file/tvbox/uc.txt",
  1402. "site": "https://woog.nxog.top/",
  1403. "danmu": true
  1404. },
  1405. "timeout": 25
  1406. },
  1407. {
  1408. "key": "蜡笔网盘",
  1409. "name": "📀蜡笔┃网盘",
  1410. "type": 3,
  1411. "api": "csp_Wobg",
  1412. "searchable": 1,
  1413. "filterable": 1,
  1414. "changeable": 1,
  1415. "ext": {
  1416. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
  1417. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
  1418. "uc_cookie": "http://127.0.0.1:9978/file/tvbox/uc.txt",
  1419. "site": "http://labipan.com/",
  1420. "danmu": true
  1421. },
  1422. "timeout": 25
  1423. },
  1424. {
  1425. "key": "土豆网盘",
  1426. "name": "📀土豆┃网盘",
  1427. "type": 3,
  1428. "api": "csp_Wobg",
  1429. "searchable": 1,
  1430. "filterable": 1,
  1431. "changeable": 1,
  1432. "ext": {
  1433. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
  1434. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
  1435. "uc_cookie": "http://127.0.0.1:9978/file/tvbox/uc.txt",
  1436. "site": "https://yunpan.yunpay.cc/",
  1437. "danmu": true
  1438. },
  1439. "timeout": 25
  1440. },
  1441. {
  1442. "key": "云星网盘",
  1443. "name": "📀云星┃网盘",
  1444. "type": 3,
  1445. "api": "csp_Wobg",
  1446. "searchable": 1,
  1447. "filterable": 1,
  1448. "changeable": 1,
  1449. "ext": {
  1450. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
  1451. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
  1452. "uc_cookie": "http://127.0.0.1:9978/file/tvbox/uc.txt",
  1453. "site": "https://4k.4u4.cn/",
  1454. "danmu": true
  1455. },
  1456. "timeout": 25
  1457. },
  1458. {
  1459. "key": "csp_Mp4Mov",
  1460. "name": "🧲Mp4电影",
  1461. "type": 3,
  1462. "api": "csp_Mp4Mov",
  1463. "searchable": 1,
  1464. "quickSearch": 1,
  1465. "filterable": 1
  1466. },
  1467. {
  1468. "key": "csp_New6v",
  1469. "name": "🧲新6V",
  1470. "type": 3,
  1471. "api": "csp_New6v",
  1472. "searchable": 1,
  1473. "quickSearch": 1,
  1474. "filterable": 1,
  1475. "ext": "https://www.xb6v.com"
  1476. },
  1477. {
  1478. "key": "csp_SeedHub",
  1479. "name": "🧲SeedHub",
  1480. "type": 3,
  1481. "api": "csp_SeedHub",
  1482. "searchable": 1,
  1483. "quickSearch": 1,
  1484. "filterable": 1
  1485. },
  1486. {
  1487. "key": "csp_KubaCL",
  1488. "name": "🧲酷吧电影",
  1489. "type": 3,
  1490. "api": "csp_KubaCL",
  1491. "searchable": 1,
  1492. "quickSearch": 1,
  1493. "filterable": 1
  1494. },
  1495. {
  1496. "key": "csp_MeijuMi",
  1497. "name": "🧲美剧迷",
  1498. "type": 3,
  1499. "api": "csp_MeijuMi",
  1500. "searchable": 1,
  1501. "quickSearch": 1,
  1502. "filterable": 1
  1503. },
  1504. {
  1505. "key": "csp_Xunlei8",
  1506. "name": "🧲迅雷吧",
  1507. "type": 3,
  1508. "api": "csp_Xunlei8",
  1509. "searchable": 1,
  1510. "quickSearch": 1,
  1511. "filterable": 1
  1512. },
  1513. {
  1514. "key": "csp_AliShare",
  1515. "name": "🦋AList",
  1516. "type": 3,
  1517. "api": "csp_AliShare",
  1518. "searchable": 1,
  1519. "changeable": 0,
  1520. "filterable": 0,
  1521. "indexs": 0,
  1522. "ext": {
  1523. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
  1524. "share": "http://127.0.0.1:9978/file/tvbox/阿里集合.json"
  1525. },
  1526. "style": {
  1527. "type": "list"
  1528. },
  1529. "timeout": 30
  1530. },
  1531. {
  1532. "key": "纸条",
  1533. "name": "🗞纸条┃搜索",
  1534. "type": 3,
  1535. "api": "csp_XiaoZhiTiao",
  1536. "searchable": 1,
  1537. "filterable": 1,
  1538. "changeable": 0,
  1539. "ext": {
  1540. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
  1541. "danmu": true
  1542. },
  1543. "timeout": 15
  1544. },
  1545. {
  1546. "key": "盘Se",
  1547. "name": "🙀盘Se┃搜索",
  1548. "type": 3,
  1549. "api": "csp_PanSearch",
  1550. "searchable": 1,
  1551. "filterable": 0,
  1552. "changeable": 0,
  1553. "ext": {
  1554. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
  1555. "danmu": true
  1556. },
  1557. "timeout": 15
  1558. },
  1559. {
  1560. "key": "易搜",
  1561. "name": "😹易搜┃搜索",
  1562. "type": 3,
  1563. "api": "csp_YiSo",
  1564. "searchable": 1,
  1565. "filterable": 0,
  1566. "changeable": 0,
  1567. "ext": {
  1568. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
  1569. "danmu": true
  1570. },
  1571. "timeout": 15
  1572. },
  1573. {
  1574. "key": "csp_QuPanSou",
  1575. "name": "🤓趣盘搜┃搜索",
  1576. "type": 3,
  1577. "api": "csp_QuPanSou",
  1578. "searchable": 1,
  1579. "filterable": 1,
  1580. "changeable": 0,
  1581. "ext": {
  1582. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
  1583. "danmu": true
  1584. },
  1585. "timeout": 15
  1586. },
  1587. {
  1588. "key": "csp_Qkpanso",
  1589. "name": "🐚夸克盘搜┃搜索",
  1590. "type": 3,
  1591. "api": "csp_Qkpanso",
  1592. "searchable": 1,
  1593. "filterable": 1,
  1594. "changeable": 0,
  1595. "ext": {
  1596. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
  1597. "danmu": true
  1598. },
  1599. "timeout": 15
  1600. },
  1601. {
  1602. "key": "米搜",
  1603. "name": "🌖米搜┃搜索",
  1604. "type": 3,
  1605. "api": "csp_Qkpanso",
  1606. "searchable": 1,
  1607. "filterable": 1,
  1608. "changeable": 0,
  1609. "ext": {
  1610. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
  1611. "danmu": true,
  1612. "site": "https://www.misou.fun"
  1613. },
  1614. "timeout": 15
  1615. },
  1616. {
  1617. "key": "夸搜",
  1618. "name": "🚢夸搜┃搜索",
  1619. "type": 3,
  1620. "api": "csp_Qkso",
  1621. "searchable": 1,
  1622. "filterable": 1,
  1623. "changeable": 0,
  1624. "ext": {
  1625. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
  1626. "danmu": true
  1627. },
  1628. "timeout": 15
  1629. },
  1630. {
  1631. "key": "云盘4K",
  1632. "name": "🤖云盘4K┃搜索",
  1633. "type": 3,
  1634. "api": "csp_Yunpan4k",
  1635. "searchable": 1,
  1636. "filterable": 0,
  1637. "changeable": 0,
  1638. "ext": {
  1639. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
  1640. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
  1641. "danmu": true
  1642. },
  1643. "timeout": 15
  1644. },
  1645. {
  1646. "key": "影搜",
  1647. "name": "🌸影搜┃搜索",
  1648. "type": 3,
  1649. "api": "csp_Yingso",
  1650. "searchable": 1,
  1651. "filterable": 0,
  1652. "changeable": 0,
  1653. "ext": {
  1654. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
  1655. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
  1656. "danmu": true
  1657. },
  1658. "timeout": 15
  1659. },
  1660. {
  1661. "key": "push_agent",
  1662. "name": "🛴手机┃推送",
  1663. "type": 3,
  1664. "api": "csp_Push",
  1665. "searchable": 0,
  1666. "filterable": 0,
  1667. "changeable": 0,
  1668. "ext": {
  1669. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt",
  1670. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt",
  1671. "uc_cookie": "http://127.0.0.1:9978/file/tvbox/uc.txt",
  1672. "danmu": true
  1673. },
  1674. "timeout": 5
  1675. },
  1676. {
  1677. "key": "我的阿里",
  1678. "name": "🐱我的┃阿里",
  1679. "type": 3,
  1680. "api": "csp_MyAli",
  1681. "searchable": 0,
  1682. "quickSearch": 0,
  1683. "filterable": 0,
  1684. "indexs": 0,
  1685. "ext": {
  1686. "token": "http://127.0.0.1:9978/file/tvbox/tok.txt"
  1687. },
  1688. "style": {
  1689. "type": "list"
  1690. },
  1691. "timeout": 30
  1692. },
  1693. {
  1694. "key": "我的夸克",
  1695. "name": "🗽我的┃夸克",
  1696. "type": 3,
  1697. "api": "csp_MyQuark",
  1698. "searchable": 0,
  1699. "quickSearch": 0,
  1700. "filterable": 0,
  1701. "indexs": 0,
  1702. "ext": {
  1703. "cookie": "http://127.0.0.1:9978/file/tvbox/quark.txt"
  1704. },
  1705. "style": {
  1706. "type": "list"
  1707. },
  1708. "timeout": 30
  1709. },
  1710. {
  1711. "key": "我的UC",
  1712. "name": "😼我的┃UC",
  1713. "type": 3,
  1714. "api": "csp_MyUc",
  1715. "searchable": 0,
  1716. "quickSearch": 0,
  1717. "filterable": 0,
  1718. "indexs": 0,
  1719. "ext": {
  1720. "uc_cookie": "http://127.0.0.1:9978/file/tvbox/uc.txt"
  1721. },
  1722. "style": {
  1723. "type": "list"
  1724. },
  1725. "timeout": 30
  1726. },
  1727. {
  1728. "key": "央视大全",
  1729. "name": "🌔央视大全",
  1730. "type": 3,
  1731. "api": "./api/drpy2.min.js",
  1732. "searchable": 1,
  1733. "quickSearch": 1,
  1734. "filterable": 1,
  1735. "order_num": 0,
  1736. "ext": "./js/央视大全.js"
  1737. },
  1738. {
  1739. "key": "bili_戏曲",
  1740. "name": "🅱️哔哩┃戏曲",
  1741. "type": 3,
  1742. "api": "csp_Bili",
  1743. "searchable": 1,
  1744. "quickSearch": 1,
  1745. "filterable": 1,
  1746. "style": {
  1747. "type": "rect",
  1748. "ratio": 1.433
  1749. },
  1750. "ext": {
  1751. "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
  1752. "json": "./json/哔哩戏曲.json"
  1753. },
  1754. "timeout": 20
  1755. },
  1756. {
  1757. "key": "bili_相声",
  1758. "name": "🅱️哔哩┃相声",
  1759. "type": 3,
  1760. "api": "csp_Bili",
  1761. "searchable": 1,
  1762. "quickSearch": 1,
  1763. "filterable": 1,
  1764. "style": {
  1765. "type": "rect",
  1766. "ratio": 1.433
  1767. },
  1768. "ext": {
  1769. "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
  1770. "json": "./json/哔哩相声.json"
  1771. },
  1772. "timeout": 20
  1773. },
  1774. {
  1775. "key": "bili_综合",
  1776. "name": "🅱️哔哩┃综合",
  1777. "type": 3,
  1778. "api": "csp_Bili",
  1779. "searchable": 1,
  1780. "quickSearch": 1,
  1781. "filterable": 1,
  1782. "style": {
  1783. "type": "rect",
  1784. "ratio": 1.433
  1785. },
  1786. "ext": {
  1787. "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
  1788. "json": "./json/哔哩综合.json"
  1789. },
  1790. "timeout": 20
  1791. },
  1792. {
  1793. "key": "bili_演唱会",
  1794. "name": "🅱️哔哩┃演唱会",
  1795. "type": 3,
  1796. "api": "csp_Bili",
  1797. "searchable": 1,
  1798. "quickSearch": 1,
  1799. "filterable": 1,
  1800. "style": {
  1801. "type": "rect",
  1802. "ratio": 1.433
  1803. },
  1804. "ext": {
  1805. "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
  1806. "json": "./json/演唱会.json"
  1807. },
  1808. "timeout": 20
  1809. },
  1810. {
  1811. "key": "bili_女团热舞",
  1812. "name": "🅱️哔哩┃女团热舞",
  1813. "type": 3,
  1814. "api": "csp_Bili",
  1815. "searchable": 1,
  1816. "quickSearch": 1,
  1817. "filterable": 1,
  1818. "style": {
  1819. "type": "rect",
  1820. "ratio": 1.433
  1821. },
  1822. "ext": {
  1823. "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
  1824. "json": "./json/女团热舞.json"
  1825. },
  1826. "timeout": 20
  1827. },
  1828. {
  1829. "key": "bilimd",
  1830. "name": "🅱️哔哩┃影视",
  1831. "type": 3,
  1832. "api": "csp_Bilimd",
  1833. "searchable": 1,
  1834. "quickSearch": 1,
  1835. "filterable": 1,
  1836. "style": {
  1837. "type": "rect",
  1838. "ratio": 1.433
  1839. },
  1840. "ext": {
  1841. "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt"
  1842. },
  1843. "timeout": 10
  1844. },
  1845. {
  1846. "key": "bili",
  1847. "name": "🅱️哔哩┃合集",
  1848. "type": 3,
  1849. "api": "csp_Bili",
  1850. "searchable": 1,
  1851. "quickSearch": 1,
  1852. "filterable": 1,
  1853. "style": {
  1854. "type": "rect",
  1855. "ratio": 1.433
  1856. },
  1857. "ext": {
  1858. "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
  1859. "json": "./txt/哔哩合集.txt"
  1860. },
  1861. "timeout": 20
  1862. },
  1863. {
  1864. "key": "bili_学习园地",
  1865. "name": "🅱️哔哩┃学习园地",
  1866. "type": 3,
  1867. "api": "csp_Bili",
  1868. "searchable": 1,
  1869. "quickSearch": 1,
  1870. "filterable": 1,
  1871. "style": {
  1872. "type": "rect",
  1873. "ratio": 1.433
  1874. },
  1875. "ext": {
  1876. "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
  1877. "json": "./json/学习园地.json"
  1878. },
  1879. "timeout": 20
  1880. },
  1881. {
  1882. "key": "bili_学外语",
  1883. "name": "🅱️哔哩┃学外语",
  1884. "type": 3,
  1885. "api": "csp_Bili",
  1886. "searchable": 1,
  1887. "quickSearch": 1,
  1888. "filterable": 1,
  1889. "style": {
  1890. "type": "rect",
  1891. "ratio": 1.433
  1892. },
  1893. "ext": {
  1894. "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
  1895. "json": "./json/学外语.json"
  1896. },
  1897. "timeout": 20
  1898. },
  1899. {
  1900. "key": "哔哩直播",
  1901. "name": "🅱️哔哩┃直播",
  1902. "type": 3,
  1903. "api": "./api/drpy2.min.js",
  1904. "searchable": 0,
  1905. "quickSearch": 0,
  1906. "filterable": 1,
  1907. "ext": "./js/blzb.js"
  1908. },
  1909. {
  1910. "key": "88看球",
  1911. "name": "⚽88┃看球",
  1912. "type": 3,
  1913. "api": "csp_Kanqiu",
  1914. "searchable": 1,
  1915. "changeable": 0,
  1916. "style": {
  1917. "type": "list"
  1918. },
  1919. "timeout": 10
  1920. },
  1921. {
  1922. "key": "jrsjs",
  1923. "name": "⚽Jrs┃球迷",
  1924. "type": 3,
  1925. "api": "./api/drpy2.min.txt",
  1926. "ext": "./txt/jrs.txt",
  1927. "style": {
  1928. "type": "list"
  1929. },
  1930. "searchable": 0,
  1931. "quickSearch": 0,
  1932. "changeable": 0,
  1933. "timeout": 10,
  1934. "header": {
  1935. "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"
  1936. }
  1937. },
  1938. {
  1939. "key": "hipy_js_360吧[球]",
  1940. "name": "⚽360吧[球]",
  1941. "type": 3,
  1942. "api": "./api/drpy2.min.js",
  1943. "searchable": 1,
  1944. "playerType": "1",
  1945. "quickSearch": 1,
  1946. "filterable": 1,
  1947. "order_num": 0,
  1948. "ext": "./js/360吧[球].js"
  1949. },
  1950. {
  1951. "key": "926tv[球]_js",
  1952. "name": "⚽926tv[球](drpy_t3)",
  1953. "type": 3,
  1954. "api": "./api/drpy2.min.js",
  1955. "searchable": 1,
  1956. "quickSearch": 1,
  1957. "filterable": 1,
  1958. "order_num": 0,
  1959. "ext": "./js/926tv[球].js"
  1960. },
  1961. {
  1962. "key": "310js",
  1963. "name": "⚽310┃看球",
  1964. "type": 3,
  1965. "api": "./api/drpy2.min.txt",
  1966. "ext": "./txt/310.txt",
  1967. "style": {
  1968. "type": "list"
  1969. },
  1970. "searchable": 0,
  1971. "quickSearch": 0,
  1972. "changeable": 0,
  1973. "timeout": 10
  1974. },
  1975. {
  1976. "key": "快手直播",
  1977. "name": "😎快手┃直播",
  1978. "type": 3,
  1979. "api": "csp_KsLive",
  1980. "searchable": 0,
  1981. "quickSearch": 0,
  1982. "filterable": 1,
  1983. "style": {
  1984. "type": "rect",
  1985. "ratio": 1.433
  1986. },
  1987. "timeout": 10
  1988. },
  1989. {
  1990. "key": "虎牙直播",
  1991. "name": "🐯虎牙直播",
  1992. "type": 3,
  1993. "api": "./api/drpy2.min.js",
  1994. "searchable": 0,
  1995. "quickSearch": 0,
  1996. "filterable": 1,
  1997. "ext": "./js/huyazhibo.js"
  1998. },
  1999. {
  2000. "key": "斗鱼js",
  2001. "name": "🐟斗鱼┃直播",
  2002. "type": 3,
  2003. "api": "./api/drpy2.min.js",
  2004. "ext": "./js/斗鱼直播.js",
  2005. "style": {
  2006. "type": "rect",
  2007. "ratio": 1.755
  2008. },
  2009. "playerType": "2",
  2010. "searchable": 0,
  2011. "quickSearch": 0,
  2012. "changeable": 0
  2013. },
  2014. {
  2015. "key": "Dm84",
  2016. "name": "🚌巴士┃动漫",
  2017. "type": 3,
  2018. "api": "csp_Dm84",
  2019. "searchable": 1,
  2020. "quickSearch": 1,
  2021. "changeable": 1
  2022. },
  2023. {
  2024. "key": "爱动漫_js",
  2025. "name": "💝爱┃动漫",
  2026. "type": 3,
  2027. "searchable": 1,
  2028. "quickSearch": 1,
  2029. "filterable": 1,
  2030. "api": "./api/drpy2.min.js",
  2031. "ext": "./js/爱动漫.js",
  2032. "timeout": 15
  2033. },
  2034. {
  2035. "key": "hipy_js_贝乐虎[儿]",
  2036. "name": "🐯贝乐虎[儿](drpy_t3)",
  2037. "type": 3,
  2038. "api": "./api/drpy2.min.js",
  2039. "searchable": 1,
  2040. "quickSearch": 1,
  2041. "filterable": 1,
  2042. "order_num": 0,
  2043. "ext": "./js/贝乐虎[儿].js"
  2044. },
  2045. {
  2046. "key": "csp_XYQHiker_兔小贝",
  2047. "name": "🐰兔小贝",
  2048. "type": 3,
  2049. "api": "csp_XYQHiker",
  2050. "searchable": 1,
  2051. "quickSearch": 1,
  2052. "filterable": 1,
  2053. "ext": "./json/兔小贝.json"
  2054. },
  2055. {
  2056. "key": "csp_XYQHiker_兔小贝2",
  2057. "name": "🐰兔小贝2",
  2058. "type": 3,
  2059. "api": "csp_XYQHiker",
  2060. "searchable": 0,
  2061. "quickSearch": 1,
  2062. "filterable": 1,
  2063. "ext": "./json/兔小贝2.json"
  2064. },
  2065. {
  2066. "key": "csp_XYQHiker_播视童趣",
  2067. "name": "🦋播视童趣",
  2068. "type": 3,
  2069. "api": "csp_XYQHiker",
  2070. "searchable": 0,
  2071. "quickSearch": 0,
  2072. "filterable": 1,
  2073. "ext": "./json/播视童趣.json"
  2074. },
  2075. {
  2076. "key": "博看听书",
  2077. "name": "📚️听书┃博看",
  2078. "type": 3,
  2079. "api": "./api/drpy2.min.js",
  2080. "changeable": 0,
  2081. "style": {
  2082. "type": "rect",
  2083. "ratio": 1
  2084. },
  2085. "ext": "./js/博看听书.js"
  2086. },
  2087. {
  2088. "key": "六月听书",
  2089. "name": "📚️听书┃六月",
  2090. "type": 3,
  2091. "api": "./api/drpy2.min.js",
  2092. "changeable": 0,
  2093. "style": {
  2094. "type": "rect",
  2095. "ratio": 1
  2096. },
  2097. "ext": "./js/六月听书.js"
  2098. },
  2099. {
  2100. "key": "csp_Kugou",
  2101. "name": "🐶┃酷狗",
  2102. "type": 3,
  2103. "api": "csp_Kugou",
  2104. "searchable": 1,
  2105. "changeable": 0
  2106. },
  2107. {
  2108. "key": "hipy_js_KTV歌厅[听]",
  2109. "name": "🎤KTV歌厅(drpy_t3)",
  2110. "type": 3,
  2111. "api": "./api/drpy2.min.js",
  2112. "searchable": 1,
  2113. "quickSearch": 1,
  2114. "filterable": 1,
  2115. "order_num": 0,
  2116. "ext": "./js/KTV歌厅[听].js"
  2117. },
  2118. {
  2119. "key": "DJ呦呦音乐网",
  2120. "name": "🎧DJ呦呦音乐",
  2121. "type": 3,
  2122. "api": "csp_XYQHiker",
  2123. "searchable": 1,
  2124. "quickSearch": 1,
  2125. "filterable": 1,
  2126. "ext": "./json/DJyyyyw.json"
  2127. },
  2128. {
  2129. "key": "酷奇",
  2130. "name": "🎤酷奇┃MV",
  2131. "type": 3,
  2132. "api": "./api/drpy2.min.js",
  2133. "ext": "./js/酷奇MV.js",
  2134. "style": {
  2135. "type": "rect",
  2136. "ratio": 1.597
  2137. },
  2138. "searchable": 0,
  2139. "quickSearch": 0,
  2140. "changeable": 0
  2141. },
  2142. {
  2143. "key": "js_a8音乐",
  2144. "name": "🎸A8音乐",
  2145. "type": 3,
  2146. "api": "./api/drpy2.min.js",
  2147. "searchable": 1,
  2148. "quickSearch": 1,
  2149. "filterable": 1,
  2150. "ext": "./js/a8yy.js"
  2151. }
  2152. ],
  2153. "parses": [
  2154. {
  2155. "name": "-8090g-",
  2156. "type": 0,
  2157. "url": "https://www.8090g.cn/jiexi/?url="
  2158. },
  2159. {
  2160. "name": "-冰豆-",
  2161. "type": 0,
  2162. "url": "https://bd.jx.cn/?url="
  2163. },
  2164. {
  2165. "name": "-m3u8TV-",
  2166. "type": 0,
  2167. "url": "https://jx.m3u8.tv/jiexi/?url="
  2168. }
  2169. ],
  2170. "doh": [
  2171. {
  2172. "name": "Google",
  2173. "url": "https://dns.google/dns-query",
  2174. "ips": [
  2175. "8.8.4.4",
  2176. "8.8.8.8"
  2177. ]
  2178. },
  2179. {
  2180. "name": "Cloudflare",
  2181. "url": "https://cloudflare-dns.com/dns-query",
  2182. "ips": [
  2183. "1.1.1.1",
  2184. "1.0.0.1",
  2185. "2606:4700:4700::1111",
  2186. "2606:4700:4700::1001"
  2187. ]
  2188. },
  2189. {
  2190. "name": "AdGuard",
  2191. "url": "https://dns.adguard.com/dns-query",
  2192. "ips": [
  2193. "94.140.14.140",
  2194. "94.140.14.141"
  2195. ]
  2196. },
  2197. {
  2198. "name": "DNSWatch",
  2199. "url": "https://resolver2.dns.watch/dns-query",
  2200. "ips": [
  2201. "84.200.69.80",
  2202. "84.200.70.40"
  2203. ]
  2204. },
  2205. {
  2206. "name": "Quad9",
  2207. "url": "https://dns.quad9.net/dns-quer",
  2208. "ips": [
  2209. "9.9.9.9",
  2210. "149.112.112.112"
  2211. ]
  2212. }
  2213. ],
  2214. "ads": [
  2215. "mozai.4gtv.tv"
  2216. ],
  2217. "ijk": [
  2218. {
  2219. "group": "软解码",
  2220. "options": [
  2221. {
  2222. "category": 4,
  2223. "name": "opensles",
  2224. "value": "0"
  2225. },
  2226. {
  2227. "category": 4,
  2228. "name": "overlay-format",
  2229. "value": "842225234"
  2230. },
  2231. {
  2232. "category": 4,
  2233. "name": "framedrop",
  2234. "value": "1"
  2235. },
  2236. {
  2237. "category": 4,
  2238. "name": "soundtouch",
  2239. "value": "1"
  2240. },
  2241. {
  2242. "category": 4,
  2243. "name": "start-on-prepared",
  2244. "value": "1"
  2245. },
  2246. {
  2247. "category": 1,
  2248. "name": "http-detect-range-support",
  2249. "value": "0"
  2250. },
  2251. {
  2252. "category": 1,
  2253. "name": "fflags",
  2254. "value": "fastseek"
  2255. },
  2256. {
  2257. "category": 2,
  2258. "name": "skip_loop_filter",
  2259. "value": "48"
  2260. },
  2261. {
  2262. "category": 4,
  2263. "name": "reconnect",
  2264. "value": "1"
  2265. },
  2266. {
  2267. "category": 4,
  2268. "name": "enable-accurate-seek",
  2269. "value": "0"
  2270. },
  2271. {
  2272. "category": 4,
  2273. "name": "mediacodec",
  2274. "value": "0"
  2275. },
  2276. {
  2277. "category": 4,
  2278. "name": "mediacodec-auto-rotate",
  2279. "value": "0"
  2280. },
  2281. {
  2282. "category": 4,
  2283. "name": "mediacodec-handle-resolution-change",
  2284. "value": "0"
  2285. },
  2286. {
  2287. "category": 4,
  2288. "name": "mediacodec-hevc",
  2289. "value": "0"
  2290. },
  2291. {
  2292. "category": 1,
  2293. "name": "dns_cache_timeout",
  2294. "value": "600000000"
  2295. }
  2296. ]
  2297. },
  2298. {
  2299. "group": "硬解码",
  2300. "options": [
  2301. {
  2302. "category": 4,
  2303. "name": "opensles",
  2304. "value": "0"
  2305. },
  2306. {
  2307. "category": 4,
  2308. "name": "overlay-format",
  2309. "value": "842225234"
  2310. },
  2311. {
  2312. "category": 4,
  2313. "name": "framedrop",
  2314. "value": "1"
  2315. },
  2316. {
  2317. "category": 4,
  2318. "name": "soundtouch",
  2319. "value": "1"
  2320. },
  2321. {
  2322. "category": 4,
  2323. "name": "start-on-prepared",
  2324. "value": "1"
  2325. },
  2326. {
  2327. "category": 1,
  2328. "name": "http-detect-range-support",
  2329. "value": "0"
  2330. },
  2331. {
  2332. "category": 1,
  2333. "name": "fflags",
  2334. "value": "fastseek"
  2335. },
  2336. {
  2337. "category": 2,
  2338. "name": "skip_loop_filter",
  2339. "value": "48"
  2340. },
  2341. {
  2342. "category": 4,
  2343. "name": "reconnect",
  2344. "value": "1"
  2345. },
  2346. {
  2347. "category": 4,
  2348. "name": "enable-accurate-seek",
  2349. "value": "0"
  2350. },
  2351. {
  2352. "category": 4,
  2353. "name": "mediacodec",
  2354. "value": "1"
  2355. },
  2356. {
  2357. "category": 4,
  2358. "name": "mediacodec-auto-rotate",
  2359. "value": "1"
  2360. },
  2361. {
  2362. "category": 4,
  2363. "name": "mediacodec-handle-resolution-change",
  2364. "value": "1"
  2365. },
  2366. {
  2367. "category": 4,
  2368. "name": "mediacodec-hevc",
  2369. "value": "1"
  2370. },
  2371. {
  2372. "category": 1,
  2373. "name": "dns_cache_timeout",
  2374. "value": "600000000"
  2375. }
  2376. ]
  2377. }
  2378. ],
  2379. "rules": [
  2380. {
  2381. "name": "proxy",
  2382. "hosts": [
  2383. "raw.githubusercontent.com",
  2384. "googlevideo.com",
  2385. "cdn.v82u1l.com",
  2386. "cdn.iz8qkg.com",
  2387. "cdn.kin6c1.com",
  2388. "c.biggggg.com",
  2389. "c.olddddd.com",
  2390. "haiwaikan.com",
  2391. "www.histar.tv",
  2392. "youtube.com",
  2393. "uhibo.com",
  2394. ".*boku.*",
  2395. ".*nivod.*",
  2396. ".*ulivetv.*"
  2397. ]
  2398. },
  2399. {
  2400. "name": "cl",
  2401. "hosts": [
  2402. "magnet"
  2403. ],
  2404. "regex": [
  2405. "最 新",
  2406. "直 播",
  2407. "更 新"
  2408. ]
  2409. },
  2410. {
  2411. "name": "火山嗅探",
  2412. "hosts": [
  2413. "huoshan.com"
  2414. ],
  2415. "regex": [
  2416. "item_id="
  2417. ]
  2418. },
  2419. {
  2420. "name": "抖音嗅探",
  2421. "hosts": [
  2422. "douyin.com"
  2423. ],
  2424. "regex": [
  2425. "is_play_url="
  2426. ]
  2427. },
  2428. {
  2429. "name": "农民嗅探",
  2430. "hosts": [
  2431. "toutiaovod.com"
  2432. ],
  2433. "regex": [
  2434. "video/tos/cn"
  2435. ]
  2436. },
  2437. {
  2438. "name": "七新嗅探",
  2439. "hosts": [
  2440. "api.52wyb.com"
  2441. ],
  2442. "regex": [
  2443. "m3u8?pt=m3u8"
  2444. ]
  2445. },
  2446. {
  2447. "name": "夜市",
  2448. "hosts": [
  2449. "yeslivetv.com"
  2450. ],
  2451. "script": [
  2452. "document.getElementsByClassName('vjs-big-play-button')[0].click()"
  2453. ]
  2454. },
  2455. {
  2456. "name": "毛驴",
  2457. "hosts": [
  2458. "www.maolvys.com"
  2459. ],
  2460. "script": [
  2461. "document.getElementsByClassName('swal-button swal-button--confirm')[0].click()"
  2462. ]
  2463. },
  2464. {
  2465. "name": "czzy",
  2466. "hosts": [
  2467. "10086.cn"
  2468. ],
  2469. "regex": [
  2470. "/storageWeb/servlet/downloadServlet"
  2471. ]
  2472. },
  2473. {
  2474. "name": "bdys",
  2475. "hosts": [
  2476. "bytetos.com",
  2477. "byteimg.com",
  2478. "bytednsdoc.com",
  2479. "pstatp.com"
  2480. ],
  2481. "regex": [
  2482. "/tos-cn"
  2483. ],
  2484. "exclude": [
  2485. ".m3u8"
  2486. ]
  2487. },
  2488. {
  2489. "name": "bdys10",
  2490. "hosts": [
  2491. "bdys10.com"
  2492. ],
  2493. "regex": [
  2494. "/obj/"
  2495. ],
  2496. "exclude": [
  2497. ".m3u8"
  2498. ]
  2499. }
  2500. ]
  2501. }