api.json 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202
  1. {
  2. "spider": "./spider.jar;md5;6044e3ceb295d82028c72e4524bae5f5",
  3. "wallpaper": "https://api.likepoems.com/img/bing",
  4. "sites": [
  5. {
  6. "key": "豆瓣",
  7. "name": "豆瓣|首页",
  8. "type": 3,
  9. "api": "csp_Douban",
  10. "searchable": 0
  11. },
  12. {
  13. "key": "预告",
  14. "name": "新片|预告",
  15. "type": 3,
  16. "api": "csp_YGP",
  17. "searchable": 0
  18. },
  19. {
  20. "key": "本地",
  21. "name": "本地|视频",
  22. "type": 3,
  23. "api": "csp_LocalFile"
  24. },
  25. {
  26. "key": "配置中心",
  27. "name": "配置|中心",
  28. "type": 3,
  29. "api": "csp_Config",
  30. "searchable": 0,
  31. "changeable": 0,
  32. "indexs": 0,
  33. "style": {
  34. "type": "rect",
  35. "ratio": 1.597
  36. }
  37. },
  38. {
  39. "key": "无忧短剧",
  40. "name": "无忧|短剧",
  41. "type": 3,
  42. "api": "csp_Duanj",
  43. "searchable": 1,
  44. "changeable": 0
  45. },
  46. {
  47. "key": "在线短剧",
  48. "name": "在线|短剧",
  49. "type": 3,
  50. "api": "csp_Duanju",
  51. "searchable": 1,
  52. "changeable": 0
  53. },
  54. {
  55. "key": "星芽短剧",
  56. "name": "星芽|短剧",
  57. "type": 3,
  58. "api": "csp_AppXY",
  59. "searchable": 1,
  60. "quickSearch": 0,
  61. "filterable": 0
  62. },
  63. {
  64. "key": "天堂短剧",
  65. "name": "天堂|短剧",
  66. "type": 3,
  67. "api": "./JS/drpy2.min.js",
  68. "ext": "./JS/天堂短剧.js"
  69. },
  70. {
  71. "key": "爱你短剧",
  72. "name": "爱你|短剧",
  73. "type": 3,
  74. "api": "csp_XYQHiker",
  75. "searchable": 1,
  76. "quickSearch": 1,
  77. "filterable": 1,
  78. "ext": "./XYQHiker/爱你短剧.json"
  79. },
  80. {
  81. "key": "河马短剧",
  82. "name": "河马|短剧",
  83. "type": 3,
  84. "api": "csp_XYQHiker",
  85. "searchable": 1,
  86. "quickSearch": 1,
  87. "filterable": 1,
  88. "ext": "./XYQHiker/河马短剧.json"
  89. },
  90. {
  91. "key": "短剧屋",
  92. "name": "短剧屋|短剧",
  93. "type": 3,
  94. "api": "csp_XYQHiker",
  95. "searchable": 1,
  96. "quickSearch": 1,
  97. "filterable": 1,
  98. "ext": "./XYQHiker/短剧屋.json"
  99. },
  100. {
  101. "key": "韩小圈",
  102. "name": "韩小圈|APP",
  103. "type": 3,
  104. "api": "csp_HanXiaoQuan",
  105. "searchable": 1,
  106. "quickSearch": 1,
  107. "filterable": 1
  108. },
  109. {
  110. "key": "酷影视",
  111. "name": "酷影视|APP",
  112. "type": 3,
  113. "api": "csp_AppYsV2",
  114. "searchable": 1,
  115. "quickSearch": 1,
  116. "filterable": 1,
  117. "ext": "https://www.tvkuys.xyz/api.php/app/"
  118. },
  119. {
  120. "key": "南瓜影视",
  121. "name": "南瓜|APP",
  122. "type": 3,
  123. "api": "csp_Nangua",
  124. "searchable": 1,
  125. "quickSearch": 1,
  126. "filterable": 1
  127. },
  128. {
  129. "key": "天天影视",
  130. "name": "天天|APP",
  131. "type": 3,
  132. "api": "csp_AppTT",
  133. "searchable": 1,
  134. "quickSearch": 1,
  135. "filterable": 1
  136. },
  137. {
  138. "key": "热播影视",
  139. "name": "热播|APP",
  140. "type": 3,
  141. "api": "csp_AppRB",
  142. "searchable": 1,
  143. "quickSearch": 1,
  144. "filterable": 1
  145. },
  146. {
  147. "key": "追剧影视",
  148. "name": "追剧|APP",
  149. "type": 3,
  150. "api": "csp_AppZJ",
  151. "searchable": 1,
  152. "quickSearch": 1,
  153. "filterable": 1
  154. },
  155. {
  156. "key": "洽洽影视",
  157. "name": "洽洽|APP",
  158. "type": 3,
  159. "api": "csp_AppGZ",
  160. "searchable": 1,
  161. "quickSearch": 1,
  162. "filterable": 1
  163. },
  164. {
  165. "key": "兄弟影视",
  166. "name": "兄弟|APP",
  167. "type": 3,
  168. "api": "csp_AppGetApp",
  169. "searchable": 1,
  170. "quickSearch": 1,
  171. "filterable": 1,
  172. "ext": "KhYl01Kekjo9vLs09V+rOtv/6QaOFwdQp2ne4h22GLkT99eCXh9SJ/lGZNM8zgk1OnFWx0zBQ9Y/9mAjQB67LaEp7Yj7w9SYBEjFbdPjKy3EHp7uBIHXVI7/dZ4r/dJapz6ihlWwqY2KlGuarL/+9suxO4ZJFOg1OxN+dTrTbi2Muff1CmBkNfrY+s4eQhuLBs4vVhslYH/yyPXePZ1AgNT8ZuBCcfE2LpJ19OKKPIvs+pt4Z/yzVA=="
  173. },
  174. {
  175. "key": "追梦影视",
  176. "name": "追梦|APP",
  177. "type": 3,
  178. "api": "csp_App",
  179. "searchable": 1,
  180. "quickSearch": 1,
  181. "filterable": 1,
  182. "ext": "KhYJ00ye42lrgMpNiF+rOvz59ga1R1FQv2eU9xm2Iu1VrOOAQhMKd/5Ef8cogkk0Y3RJ20zdTsh6uytEQhi5H+x3q9ykk86fAlKxZsD4JSOVC5vqBIHXLUdbmRnBIXWxcZBIXFtvDsnRlRrdhe15op6nVQPj3jTftN2v9+IDRS2auZS8W1hoOL2jvcoiUEzLToN7FV14amT6puaPWMkj34WXPOALOvIkDM57pLfeccPg9oZFJOvob2S7NE55hsAbY0y7l63JB0ukoDmLq9q4YRSh/M6i0i8XMVk8bLFggs+R73Ld+p5bipdnmmrRg3qMu5dVCFuyfllyKl0ZJddNw4AFQExqghU1xo0RpCm1FgL+FmBLMdYCxM+fNYaF6blwRnzcfPct0XtmXoB9"
  183. },
  184. {
  185. "key": "酷酷影视",
  186. "name": "酷酷|APP",
  187. "type": 3,
  188. "api": "csp_App",
  189. "searchable": 1,
  190. "quickSearch": 1,
  191. "filterable": 1,
  192. "ext": "KhYJ00ye42lr+7UsoxLsfea0p0H5SUkT7Tv/+ACyPvFQ+ozQDB0SI/NCeN59w0RiNzIKjBHQR9I/4GBIAlWmFKcvyM+yqtiPTwaxfs74YG+PHrb7VfKDLVFb0luKJl2gZ5pIVjIwVQNUCt5TAXutZxNBtlKGin+L/4vCsOIjR2r16dqyQwlpOKySq4NGGkKeA48tTxR+emOxn/qGPt5xjInFeLJXMvYxdp47pOKOA4Oj4LJnJ+ezEzScDoT2IASN0Rvl2ZneGEGkqlDU8NquYUP/svq1zScEYCpobKdg0ILB7Hba+5cMwtlnjGiHyCaM9dx+z+cVzD9cSTo/aL5gSoAPT4QzkFxezSARli9nVDmnS0MrY/NhiexS8AE+1et9"
  193. },
  194. {
  195. "key": "忍者影视",
  196. "name": "忍者|APP",
  197. "type": 3,
  198. "api": "csp_AppRZ",
  199. "searchable": 1,
  200. "quickSearch": 1,
  201. "filterable": 1
  202. },
  203. {
  204. "key": "凡人影视",
  205. "name": "凡人|APP",
  206. "type": 3,
  207. "api": "csp_AppFr",
  208. "searchable": 1,
  209. "quickSearch": 1,
  210. "filterable": 1
  211. },
  212. {
  213. "key": "大米星球",
  214. "name": "大米|APP",
  215. "type": 3,
  216. "api": "./JS/drpy2.min.js",
  217. "ext": "./JS/APPV2.js?type=url&params=https://damifan.wiki"
  218. },
  219. {
  220. "key": "西瓜视频",
  221. "name": "西瓜|视频",
  222. "type": 3,
  223. "api": "csp_AmuXiguaV2",
  224. "searchable": 1,
  225. "quickSearch": 0,
  226. "filterable": 0,
  227. "changeable": 0,
  228. "style": {
  229. "type": "rect",
  230. "ratio": 1.597
  231. }
  232. },
  233. {
  234. "key": "采集之王",
  235. "name": "采集|合集",
  236. "type": 3,
  237. "api": "./JS/drpy2.min.js",
  238. "searchable": 1,
  239. "quickSearch": 1,
  240. "ext": "./JS/采集之王.js?type=url&params=../JSON/采集静态.json$1$1"
  241. },
  242. {
  243. "key": "厂长资源",
  244. "name": "厂长|资源",
  245. "type": 3,
  246. "api": "csp_Czzy",
  247. "searchable": 1,
  248. "quickSearch": 1,
  249. "filterable": 1
  250. },
  251. {
  252. "key": "低端影视",
  253. "name": "低端|影视",
  254. "type": 3,
  255. "api": "csp_Ddys",
  256. "searchable": 1,
  257. "quickSearch": 1,
  258. "filterable": 1
  259. },
  260. {
  261. "key": "快看影视",
  262. "name": "快看|影视",
  263. "type": 3,
  264. "api": "csp_Kuaikan",
  265. "searchable": 1,
  266. "quickSearch": 1,
  267. "filterable": 1
  268. },
  269. {
  270. "key": "农民影视",
  271. "name": "农民|影视",
  272. "type": 3,
  273. "api": "csp_Nmys",
  274. "searchable": 1,
  275. "quickSearch": 1,
  276. "filterable": 1
  277. },
  278. {
  279. "key": "立播影视",
  280. "name": "立播|影视",
  281. "type": 3,
  282. "api": "csp_Libvio",
  283. "searchable": 1,
  284. "filterable": 1,
  285. "changeable": 1,
  286. "ext": {
  287. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  288. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  289. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  290. "site": "https://libvio.link"
  291. }
  292. },
  293. {
  294. "key": "饺子影视",
  295. "name": "饺子|影视",
  296. "type": 3,
  297. "api": "csp_Jiaozi",
  298. "searchable": 1,
  299. "quickSearch": 1,
  300. "filterable": 1
  301. },
  302. {
  303. "key": "全网影视",
  304. "name": "全网|影视",
  305. "type": 3,
  306. "api": "csp_Quanwk",
  307. "searchable": 1,
  308. "quickSearch": 1,
  309. "filterable": 1,
  310. "ext": "https://888.qkw2.cc"
  311. },
  312. {
  313. "key": "看客影视",
  314. "name": "看客|影视",
  315. "type": 3,
  316. "api": "csp_Kanke",
  317. "searchable": 1,
  318. "quickSearch": 1,
  319. "filterable": 1,
  320. "ext": "https://www.kmeiju.com"
  321. },
  322. {
  323. "key": "瓜子影视",
  324. "name": "瓜子|影视",
  325. "type": 3,
  326. "api": "csp_Gz360",
  327. "searchable": 1,
  328. "quickSearch": 1,
  329. "filterable": 1
  330. },
  331. {
  332. "key": "疯狗影视",
  333. "name": "疯狗|影视",
  334. "type": 3,
  335. "api": "csp_FengGo",
  336. "searchable": 1,
  337. "quickSearch": 1,
  338. "filterable": 1
  339. },
  340. {
  341. "key": "比特影视",
  342. "name": "比特|影视",
  343. "type": 3,
  344. "api": "csp_Bttwo",
  345. "searchable": 1,
  346. "quickSearch": 1,
  347. "filterable": 1
  348. },
  349. {
  350. "key": "FreeOK",
  351. "name": "️️Free|影视",
  352. "type": 3,
  353. "api": "csp_FreeOK",
  354. "searchable": 1,
  355. "quickSearch": 1,
  356. "filterable": 1,
  357. "ext": "https://www.freeok.lol"
  358. },
  359. {
  360. "key": "奇优影视",
  361. "name": "奇优|影视",
  362. "type": 3,
  363. "api": "csp_Qiyou",
  364. "searchable": 1,
  365. "quickSearch": 1,
  366. "filterable": 1
  367. },
  368. {
  369. "key": "骚火影视",
  370. "name": "骚火|影视",
  371. "type": 3,
  372. "api": "csp_SaoHuo",
  373. "searchable": 1,
  374. "quickSearch": 1,
  375. "filterable": 1
  376. },
  377. {
  378. "key": "金牌影视",
  379. "name": "金牌|影视",
  380. "type": 3,
  381. "api": "csp_WebJP",
  382. "searchable": 1,
  383. "quickSearch": 1,
  384. "filterable": 1
  385. },
  386. {
  387. "key": "哔嘀影视",
  388. "name": "哔嘀|影视",
  389. "type": 3,
  390. "api": "csp_WebYJ",
  391. "searchable": 1,
  392. "quickSearch": 1,
  393. "filterable": 1
  394. },
  395. {
  396. "key": "铁剧影视",
  397. "name": "铁剧|影视",
  398. "type": 3,
  399. "api": "csp_WebBr",
  400. "searchable": 1,
  401. "quickSearch": 1,
  402. "filterable": 1
  403. },
  404. {
  405. "key": "真心影视",
  406. "name": "真心|影视",
  407. "type": 3,
  408. "api": "csp_WebGZ",
  409. "searchable": 1,
  410. "quickSearch": 1,
  411. "filterable": 1
  412. },
  413. {
  414. "key": "耐看影视",
  415. "name": "耐看|影视",
  416. "type": 3,
  417. "api": "csp_WebNK",
  418. "searchable": 1,
  419. "quickSearch": 1,
  420. "filterable": 1
  421. },
  422. {
  423. "key": "素白白",
  424. "name": "素白白|影视",
  425. "type": 3,
  426. "api": "csp_Subaibai",
  427. "searchable": 1,
  428. "quickSearch": 1,
  429. "filterable": 1
  430. },
  431. {
  432. "key": "小苹果",
  433. "name": "小苹果|影视",
  434. "type": 3,
  435. "api": "csp_Xpg",
  436. "searchable": 1,
  437. "quickSearch": 1,
  438. "filterable": 1
  439. },
  440. {
  441. "key": "机器人",
  442. "name": "机器人|影视",
  443. "type": 3,
  444. "api": "csp_Ikanbot",
  445. "searchable": 1,
  446. "quickSearch": 1,
  447. "filterable": 1
  448. },
  449. {
  450. "key": "新视觉",
  451. "name": "新视觉|影视",
  452. "type": 3,
  453. "api": "csp_XBPQ",
  454. "searchable": 1,
  455. "quickSearch": 1,
  456. "filterable": 1,
  457. "ext": "./XBPQ/新视觉.json"
  458. },
  459. {
  460. "key": "电影牛",
  461. "name": "电影牛|影视",
  462. "type": 3,
  463. "api": "csp_XYQHiker",
  464. "searchable": 1,
  465. "quickSearch": 1,
  466. "filterable": 1,
  467. "ext": "./XYQHiker/电影牛.json"
  468. },
  469. {
  470. "key": "爱奇艺",
  471. "name": "爱奇艺|视频",
  472. "type": 3,
  473. "api": "./JS/drpy2.min.js",
  474. "ext": "./JS/爱奇艺.js"
  475. },
  476. {
  477. "key": "三六零",
  478. "name": "三六零|视频",
  479. "type": 3,
  480. "api": "./JS/drpy2.min.js",
  481. "ext": "./JS/三六零.js"
  482. },
  483. {
  484. "key": "剧圈圈",
  485. "name": "剧圈圈|影视",
  486. "type": 3,
  487. "api": "./JS/drpy2.min.js",
  488. "ext": "./JS/剧圈圈.js"
  489. },
  490. {
  491. "key": "追剧迷",
  492. "name": "追剧迷|影视",
  493. "type": 3,
  494. "api": "./JS/drpy2.min.js",
  495. "ext": "./JS/追剧迷.js"
  496. },
  497. {
  498. "key": "看了么",
  499. "name": "看了么|影视",
  500. "type": 3,
  501. "api": "./JS/drpy2.min.js",
  502. "ext": "./JS/看了么.js"
  503. },
  504. {
  505. "key": "茶杯狐",
  506. "name": "茶杯狐|影视",
  507. "type": 3,
  508. "api": "./JS/drpy2.min.js",
  509. "ext": "./JS/茶杯狐.js"
  510. },
  511. {
  512. "key": "魔力高清",
  513. "name": "魔力|影视",
  514. "type": 3,
  515. "api": "./JS/drpy2.min.js",
  516. "ext": "./JS/魔力高清.js"
  517. },
  518. {
  519. "key": "腾讯视频",
  520. "name": "腾讯|视频",
  521. "type": 3,
  522. "api": "./JS/drpy2.min.js",
  523. "ext": "./JS/腾讯视频.js"
  524. },
  525. {
  526. "key": "优酷视频",
  527. "name": "优酷|视频",
  528. "type": 3,
  529. "api": "./JS/drpy2.min.js",
  530. "ext": "./JS/优酷视频.js"
  531. },
  532. {
  533. "key": "芒果视频",
  534. "name": "芒果|视频",
  535. "type": 3,
  536. "api": "./JS/drpy2.min.js",
  537. "ext": "./JS/芒果视频.js"
  538. },
  539. {
  540. "key": "搜狗视频",
  541. "name": "搜狗|视频",
  542. "type": 3,
  543. "api": "./JS/drpy2.min.js",
  544. "ext": "./JS/搜狗视频.js"
  545. },
  546. {
  547. "key": "哔哩视频",
  548. "name": "哔哩|视频",
  549. "type": 3,
  550. "api": "./JS/drpy2.min.js",
  551. "ext": "./JS/哔哩视频.js"
  552. },
  553. {
  554. "key": "碟调影视",
  555. "name": "碟调|影视",
  556. "type": 3,
  557. "api": "./JS/drpy2.min.js",
  558. "ext": "./JS/碟调影视.js"
  559. },
  560. {
  561. "key": "奇趣影视",
  562. "name": "奇趣|影视",
  563. "type": 3,
  564. "api": "csp_XYQHiker",
  565. "searchable": 1,
  566. "quickSearch": 1,
  567. "filterable": 1,
  568. "ext": "./XYQHiker/奇趣影视.json"
  569. },
  570. {
  571. "key": "1905",
  572. "name": "1905|影视",
  573. "type": 3,
  574. "api": "csp_Web1905",
  575. "searchable": 1,
  576. "quickSearch": 0,
  577. "filterable": 0
  578. },
  579. {
  580. "key": "红牛资源",
  581. "name": "红牛|采集",
  582. "type": 1,
  583. "api": "https://www.hongniuzy2.com/api.php/provide/vod/",
  584. "searchable": 1,
  585. "changeable": 1,
  586. "categories": [
  587. "动作片",
  588. "喜剧片",
  589. "爱情片",
  590. "科幻片",
  591. "恐怖片",
  592. "剧情片",
  593. "战争片",
  594. "国产剧",
  595. "港澳剧",
  596. "日剧",
  597. "欧美剧",
  598. "台湾剧",
  599. "泰剧",
  600. "韩剧",
  601. "纪录片",
  602. "动漫电影"
  603. ]
  604. },
  605. {
  606. "key": "光速资源",
  607. "name": "光速|采集",
  608. "type": 1,
  609. "api": "http://api.guangsuapi.com/api.php/provide/vod/",
  610. "searchable": 1,
  611. "changeable": 1,
  612. "categories": [
  613. "动作片",
  614. "喜剧片",
  615. "爱情片",
  616. "科幻片",
  617. "剧情片",
  618. "恐怖片",
  619. "战争片",
  620. "动漫电影",
  621. "大陆剧",
  622. "欧美剧",
  623. "港澳剧",
  624. "韩剧",
  625. "日剧",
  626. "台湾剧",
  627. "泰剧",
  628. "综艺",
  629. "动漫",
  630. "记录片"
  631. ]
  632. },
  633. {
  634. "key": "极速资源",
  635. "name": "极速|采集",
  636. "type": 1,
  637. "api": "https://jszyapi.com/api.php/provide/vod/",
  638. "searchable": 1,
  639. "changeable": 1,
  640. "categories": [
  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. "key": "快车资源",
  667. "name": "快车|采集",
  668. "type": 1,
  669. "api": "https://caiji.kczyapi.com/api.php/provide/vod/",
  670. "searchable": 1,
  671. "changeable": 1,
  672. "categories": [
  673. "动作片",
  674. "喜剧片",
  675. "爱情片",
  676. "科幻片",
  677. "恐怖片",
  678. "战争片",
  679. "剧情片",
  680. "动画片",
  681. "纪录片",
  682. "国产剧",
  683. "香港剧",
  684. "台湾剧",
  685. "欧美剧",
  686. "韩国剧",
  687. "日本剧",
  688. "泰国剧",
  689. "海外剧",
  690. "国产动漫",
  691. "日本动漫",
  692. "欧美动漫",
  693. "大陆综艺",
  694. "日韩综艺",
  695. "港台综艺",
  696. "欧美综艺"
  697. ]
  698. },
  699. {
  700. "key": "索尼资源",
  701. "name": "索尼|采集",
  702. "type": 1,
  703. "api": "https://suoniapi.com/api.php/provide/vod/",
  704. "searchable": 1,
  705. "changeable": 1,
  706. "categories": [
  707. "动作片",
  708. "喜剧片",
  709. "爱情片",
  710. "科幻片",
  711. "恐怖片",
  712. "剧情片",
  713. "战争片",
  714. "纪录片",
  715. "动画片",
  716. "国产剧",
  717. "欧美剧",
  718. "韩剧",
  719. "日剧",
  720. "港剧",
  721. "台剧",
  722. "泰剧",
  723. "海外剧",
  724. "大陆综艺",
  725. "日韩综艺",
  726. "港台综艺",
  727. "欧美综艺",
  728. "国产动漫",
  729. "日韩动漫",
  730. "欧美动漫",
  731. "港台动漫",
  732. "海外动漫"
  733. ]
  734. },
  735. {
  736. "key": "量子资源",
  737. "name": "量子|采集",
  738. "type": 1,
  739. "api": "https://cj.lziapi.com/api.php/provide/vod/",
  740. "searchable": 1,
  741. "changeable": 1,
  742. "categories": [
  743. "动作片",
  744. "喜剧片",
  745. "科幻片",
  746. "恐怖片",
  747. "爱情片",
  748. "剧情片",
  749. "战争片",
  750. "记录片",
  751. "国产剧",
  752. "欧美剧",
  753. "香港剧",
  754. "韩国剧",
  755. "台湾剧",
  756. "日本剧",
  757. "海外剧",
  758. "泰国剧",
  759. "国产动漫",
  760. "日韩动漫",
  761. "欧美动漫",
  762. "港台动漫",
  763. "海外动漫",
  764. "大陆综艺",
  765. "港台综艺",
  766. "日韩综艺",
  767. "欧美综艺"
  768. ]
  769. },
  770. {
  771. "key": "非凡资源",
  772. "name": "非凡|采集",
  773. "type": 1,
  774. "api": "http://cj.ffzyapi.com/api.php/provide/vod/",
  775. "searchable": 1,
  776. "changeable": 1,
  777. "categories": [
  778. "动作片",
  779. "喜剧片",
  780. "科幻片",
  781. "恐怖片",
  782. "爱情片",
  783. "剧情片",
  784. "战争片",
  785. "记录片",
  786. "国产剧",
  787. "欧美剧",
  788. "香港剧",
  789. "韩国剧",
  790. "台湾剧",
  791. "日本剧",
  792. "海外剧",
  793. "泰国剧",
  794. "国产动漫",
  795. "日韩动漫",
  796. "欧美动漫",
  797. "港台动漫",
  798. "海外动漫",
  799. "大陆综艺",
  800. "港台综艺",
  801. "日韩综艺",
  802. "欧美综艺"
  803. ]
  804. },
  805. {
  806. "key": "56动漫",
  807. "name": "56|动漫",
  808. "type": 3,
  809. "api": "./JS/drpy2.min.js",
  810. "ext": "./JS/56动漫.js"
  811. },
  812. {
  813. "key": "58动漫",
  814. "name": "58|动漫",
  815. "type": 3,
  816. "api": "./JS/drpy2.min.js",
  817. "ext": "./JS/58动漫.js"
  818. },
  819. {
  820. "key": "NT动漫",
  821. "name": "NT|动漫",
  822. "type": 3,
  823. "api": "./JS/drpy2.min.js",
  824. "ext": "./JS/NT动漫.js"
  825. },
  826. {
  827. "key": "Anime1",
  828. "name": "Anime1|动漫",
  829. "type": 3,
  830. "api": "./JS/drpy2.min.js",
  831. "ext": "./JS/Anime1.js"
  832. },
  833. {
  834. "key": "动画片",
  835. "name": "动画片|动漫",
  836. "type": 3,
  837. "api": "./JS/drpy2.min.js",
  838. "ext": "./JS/动画片大全.js"
  839. },
  840. {
  841. "key": "路漫漫",
  842. "name": "路漫漫|动漫",
  843. "type": 3,
  844. "api": "./JS/drpy2.min.js",
  845. "ext": "./JS/路漫漫.js"
  846. },
  847. {
  848. "key": "动漫岛",
  849. "name": "动漫岛|动漫",
  850. "type": 3,
  851. "api": "./JS/drpy2.min.js",
  852. "ext": "./JS/动漫岛.js"
  853. },
  854. {
  855. "key": "去看吧",
  856. "name": "去看吧|动漫",
  857. "type": 3,
  858. "api": "./JS/drpy2.min.js",
  859. "ext": "./JS/去看吧.js"
  860. },
  861. {
  862. "key": "爱弹幕",
  863. "name": "爱弹幕|动漫",
  864. "type": 3,
  865. "api": "./JS/drpy2.min.js",
  866. "ext": "./JS/爱弹幕.js"
  867. },
  868. {
  869. "key": "异世界",
  870. "name": "异世界|动漫",
  871. "type": 3,
  872. "api": "./JS/drpy2.min.js",
  873. "ext": "./JS/异世界.js"
  874. },
  875. {
  876. "key": "好看动漫",
  877. "name": "好看|动漫",
  878. "type": 3,
  879. "api": "./JS/drpy2.min.js",
  880. "ext": "./JS/好看动漫.js"
  881. },
  882. {
  883. "key": "奇米动漫",
  884. "name": "奇米|动漫",
  885. "type": 3,
  886. "api": "./JS/drpy2.min.js",
  887. "ext": "./JS/奇米动漫.js"
  888. },
  889. {
  890. "key": "怡萱动漫",
  891. "name": "怡萱|动漫",
  892. "type": 3,
  893. "api": "./JS/drpy2.min.js",
  894. "ext": "./JS/怡萱动漫.js"
  895. },
  896. {
  897. "key": "花子动漫",
  898. "name": "花子|动漫",
  899. "type": 3,
  900. "api": "./JS/drpy2.min.js",
  901. "ext": "./JS/花子动漫.js"
  902. },
  903. {
  904. "key": "动漫巴士",
  905. "name": "巴士|动漫",
  906. "type": 3,
  907. "api": "./JS/drpy2.min.js",
  908. "ext": "./JS/动漫巴士.js"
  909. },
  910. {
  911. "key": "樱花动漫",
  912. "name": "樱花|动漫",
  913. "type": 3,
  914. "api": "./JS/drpy2.min.js",
  915. "ext": "./JS/樱花动漫.js"
  916. },
  917. {
  918. "key": "大米动漫",
  919. "name": "大米|动漫",
  920. "type": 3,
  921. "api": "./JS/drpy2.min.js",
  922. "ext": "./JS/大米动漫.js"
  923. },
  924. {
  925. "key": "南瓜弹幕",
  926. "name": "南瓜|弹幕",
  927. "type": 3,
  928. "api": "csp_Nangua",
  929. "searchable": 1,
  930. "quickSearch": 1,
  931. "filterable": 1,
  932. "ext": {
  933. "danmu": true
  934. }
  935. },
  936. {
  937. "key": "厂长弹幕",
  938. "name": "厂长|弹幕",
  939. "type": 3,
  940. "api": "csp_Czzy",
  941. "searchable": 1,
  942. "quickSearch": 1,
  943. "filterable": 1,
  944. "ext": {
  945. "danmu": true
  946. }
  947. },
  948. {
  949. "key": "天天弹幕",
  950. "name": "天天|弹幕",
  951. "type": 3,
  952. "api": "csp_TianTian",
  953. "searchable": 1,
  954. "quickSearch": 1,
  955. "filterable": 1,
  956. "ext": {
  957. "danmu": true
  958. }
  959. },
  960. {
  961. "key": "热播弹幕",
  962. "name": "热播|弹幕",
  963. "type": 3,
  964. "api": "csp_ReBo",
  965. "searchable": 1,
  966. "quickSearch": 1,
  967. "filterable": 1,
  968. "ext": {
  969. "danmu": true
  970. }
  971. },
  972. {
  973. "key": "糯米弹幕",
  974. "name": "糯米|弹幕",
  975. "type": 3,
  976. "api": "csp_Nmys",
  977. "searchable": 1,
  978. "quickSearch": 1,
  979. "filterable": 1,
  980. "ext": {
  981. "danmu": true
  982. }
  983. },
  984. {
  985. "key": "文才弹幕",
  986. "name": "文才|弹幕",
  987. "type": 3,
  988. "api": "csp_Jpys",
  989. "searchable": 1,
  990. "quickSearch": 1,
  991. "filterable": 1,
  992. "ext": {
  993. "danmu": true
  994. }
  995. },
  996. {
  997. "key": "哔哩弹幕",
  998. "name": "哔哩|弹幕",
  999. "type": 3,
  1000. "api": "csp_Bilimd",
  1001. "searchable": 1,
  1002. "quickSearch": 1,
  1003. "filterable": 1,
  1004. "style": {
  1005. "type": "rect",
  1006. "ratio": 1.597
  1007. },
  1008. "ext": {
  1009. "cookie": "http://127.0.0.1:9978/file/TVBox/bilibili.txt"
  1010. },
  1011. "timeout": 10
  1012. },
  1013. {
  1014. "key": "立播弹幕",
  1015. "name": "立播|弹幕",
  1016. "type": 3,
  1017. "api": "csp_Libvio",
  1018. "searchable": 1,
  1019. "filterable": 1,
  1020. "changeable": 1,
  1021. "ext": {
  1022. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1023. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1024. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  1025. "site": "https://libvio.link",
  1026. "danmu": true
  1027. }
  1028. },
  1029. {
  1030. "key": "腾讯弹幕",
  1031. "name": "腾讯|弹幕",
  1032. "type": 3,
  1033. "api": "./JS/drpy2.min.js",
  1034. "ext": "./JS/腾讯弹幕.js"
  1035. },
  1036. {
  1037. "key": "优酷弹幕",
  1038. "name": "优酷|弹幕",
  1039. "type": 3,
  1040. "api": "./JS/drpy2.min.js",
  1041. "ext": "./JS/优酷弹幕.js"
  1042. },
  1043. {
  1044. "key": "悠悠弹幕",
  1045. "name": "悠悠|弹幕",
  1046. "type": 3,
  1047. "api": "./JS/drpy2.min.js",
  1048. "ext": "./JS/悠悠弹幕.js"
  1049. },
  1050. {
  1051. "key": "小熊弹幕",
  1052. "name": "小熊|弹幕",
  1053. "type": 3,
  1054. "api": "./JS/drpy2.min.js",
  1055. "ext": "./JS/小熊弹幕.js"
  1056. },
  1057. {
  1058. "key": "巨人弹幕",
  1059. "name": "巨人|弹幕",
  1060. "type": 3,
  1061. "api": "./JS/drpy2.min.js",
  1062. "ext": "./JS/巨人弹幕.js"
  1063. },
  1064. {
  1065. "key": "小虎斑弹幕",
  1066. "name": "小虎斑|弹幕",
  1067. "type": 3,
  1068. "api": "./JS/drpy2.min.js",
  1069. "ext": "./JS/小虎斑弹幕.js"
  1070. },
  1071. {
  1072. "key": "三六零弹幕",
  1073. "name": "三六零|弹幕",
  1074. "type": 3,
  1075. "api": "csp_Sp360",
  1076. "searchable": 1,
  1077. "filterable": 1,
  1078. "changeable": 1,
  1079. "ext": {
  1080. "danmu": true
  1081. }
  1082. },
  1083. {
  1084. "key": "机器人弹幕",
  1085. "name": "机器人|弹幕",
  1086. "type": 3,
  1087. "api": "csp_Ikanbot",
  1088. "searchable": 1,
  1089. "quickSearch": 1,
  1090. "filterable": 1,
  1091. "ext": {
  1092. "danmu": true
  1093. }
  1094. },
  1095. {
  1096. "key": "小苹果弹幕",
  1097. "name": "小苹果|弹幕",
  1098. "type": 3,
  1099. "api": "csp_Xpg",
  1100. "searchable": 1,
  1101. "quickSearch": 1,
  1102. "filterable": 1,
  1103. "ext": {
  1104. "danmu": true
  1105. }
  1106. },
  1107. {
  1108. "key": "荐片弹幕",
  1109. "name": "荐片|弹幕",
  1110. "type": 3,
  1111. "api": "csp_Jianpian",
  1112. "playerType": 1,
  1113. "searchable": 1,
  1114. "quickSearch": 1,
  1115. "filterable": 1,
  1116. "ext": {
  1117. "danmu": true
  1118. }
  1119. },
  1120. {
  1121. "key": "哔嘀弹幕",
  1122. "name": "哔嘀|弹幕",
  1123. "type": 3,
  1124. "api": "csp_Bdys",
  1125. "searchable": 1,
  1126. "quickSearch": 1,
  1127. "filterable": 1,
  1128. "ext": {
  1129. "site": "https://www.yjys05.com",
  1130. "danmu": true
  1131. }
  1132. },
  1133. {
  1134. "key": "玩偶弹幕",
  1135. "name": "玩偶哥哥|4K弹幕",
  1136. "type": 3,
  1137. "api": "csp_Wogg",
  1138. "searchable": 1,
  1139. "quickSearch": 1,
  1140. "filterable": 1,
  1141. "ext": {
  1142. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1143. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1144. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  1145. "wogg": true,
  1146. "danmu": true
  1147. }
  1148. },
  1149. {
  1150. "key": "玩偶备用弹幕",
  1151. "name": "玩偶备用|4K弹幕",
  1152. "type": 3,
  1153. "api": "csp_Wogg",
  1154. "quickSearch": 1,
  1155. "changeable": 1,
  1156. "filterable": 1,
  1157. "ext": {
  1158. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1159. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1160. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  1161. "site": "https://wogg.xxooo.cf",
  1162. "danmu": true
  1163. }
  1164. },
  1165. {
  1166. "key": "夸克欧歌弹幕",
  1167. "name": "欧哥|4K弹幕",
  1168. "type": 3,
  1169. "api": "csp_Wobg",
  1170. "searchable": 1,
  1171. "quickSearch": 1,
  1172. "filterable": 1,
  1173. "changeable": 1,
  1174. "ext": {
  1175. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1176. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1177. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  1178. "site": "https://woog.nxog.eu.org",
  1179. "danmu": true
  1180. }
  1181. },
  1182. {
  1183. "key": "夸克土豆弹幕",
  1184. "name": "土豆|4K弹幕",
  1185. "type": 3,
  1186. "api": "csp_Wobg",
  1187. "quickSearch": 1,
  1188. "changeable": 1,
  1189. "filterable": 1,
  1190. "ext": {
  1191. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1192. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1193. "site": "https://yunpan.yunpay.cc",
  1194. "danmu": true
  1195. }
  1196. },
  1197. {
  1198. "key": "夸克多多弹幕",
  1199. "name": "多多|4K弹幕",
  1200. "type": 3,
  1201. "api": "csp_Wobg",
  1202. "quickSearch": 1,
  1203. "changeable": 1,
  1204. "filterable": 1,
  1205. "ext": {
  1206. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1207. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1208. "site": "https://tv.yydsys.top",
  1209. "danmu": true
  1210. }
  1211. },
  1212. {
  1213. "key": "夸克蜡笔弹幕",
  1214. "name": "蜡笔|4K弹幕",
  1215. "type": 3,
  1216. "api": "csp_Wobg",
  1217. "quickSearch": 1,
  1218. "changeable": 1,
  1219. "filterable": 1,
  1220. "ext": {
  1221. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1222. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1223. "site": "http://duopan.fun",
  1224. "danmu": true
  1225. }
  1226. },
  1227. {
  1228. "key": "夸克至臻弹幕",
  1229. "name": "至臻|4K弹幕",
  1230. "type": 3,
  1231. "api": "csp_Wobg",
  1232. "quickSearch": 1,
  1233. "changeable": 1,
  1234. "filterable": 1,
  1235. "ext": {
  1236. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1237. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1238. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  1239. "site": "https://mihdr.top",
  1240. "danmu": true
  1241. }
  1242. },
  1243. {
  1244. "key": "夸克奥秘弹幕",
  1245. "name": "奥秘|4K弹幕",
  1246. "type": 3,
  1247. "api": "csp_Wobg",
  1248. "quickSearch": 1,
  1249. "changeable": 1,
  1250. "filterable": 1,
  1251. "ext": {
  1252. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1253. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1254. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  1255. "site": "https://vip.omii.top",
  1256. "danmu": true
  1257. }
  1258. },
  1259. {
  1260. "key": "夸克云星弹幕",
  1261. "name": "云星|4K弹幕",
  1262. "type": 3,
  1263. "api": "csp_Wobg",
  1264. "quickSearch": 1,
  1265. "changeable": 1,
  1266. "filterable": 1,
  1267. "ext": {
  1268. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1269. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1270. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  1271. "site": "https://4k.4u4.cn",
  1272. "danmu": true
  1273. }
  1274. },
  1275. {
  1276. "key": "夸克木偶弹幕",
  1277. "name": "木偶|4K弹幕",
  1278. "type": 3,
  1279. "api": "csp_Wobg",
  1280. "quickSearch": 1,
  1281. "changeable": 1,
  1282. "filterable": 1,
  1283. "ext": {
  1284. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1285. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1286. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  1287. "site": "http://mogg.top",
  1288. "danmu": true
  1289. }
  1290. },
  1291. {
  1292. "key": "夸克影搜弹幕",
  1293. "name": "影搜|弹幕",
  1294. "type": 3,
  1295. "api": "csp_Yingso",
  1296. "searchable": 1,
  1297. "filterable": 0,
  1298. "changeable": 1,
  1299. "ext": {
  1300. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1301. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1302. "danmu": true
  1303. }
  1304. },
  1305. {
  1306. "key": "搜索弹幕",
  1307. "name": "搜索|弹幕",
  1308. "type": 3,
  1309. "api": "csp_PanSearch",
  1310. "searchable": 1,
  1311. "filterable": 0,
  1312. "changeable": 1,
  1313. "ext": {
  1314. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1315. "danmu": true
  1316. }
  1317. },
  1318. {
  1319. "key": "云云弹幕",
  1320. "name": "云云|弹幕",
  1321. "type": 3,
  1322. "api": "csp_Upys",
  1323. "searchable": 1,
  1324. "filterable": 0,
  1325. "changeable": 1,
  1326. "ext": {
  1327. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1328. "danmu": true
  1329. }
  1330. },
  1331. {
  1332. "key": "云搜弹幕",
  1333. "name": "云搜|弹幕",
  1334. "type": 3,
  1335. "api": "csp_UpYun",
  1336. "searchable": 1,
  1337. "filterable": 0,
  1338. "changeable": 1,
  1339. "ext": {
  1340. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1341. "danmu": true
  1342. }
  1343. },
  1344. {
  1345. "key": "盘搜弹幕",
  1346. "name": "盘搜|弹幕",
  1347. "type": 3,
  1348. "api": "csp_PanSou",
  1349. "searchable": 1,
  1350. "filterable": 0,
  1351. "changeable": 1,
  1352. "ext": {
  1353. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1354. "danmu": true
  1355. }
  1356. },
  1357. {
  1358. "key": "易搜弹幕",
  1359. "name": "易搜|弹幕",
  1360. "type": 3,
  1361. "api": "csp_YiSo",
  1362. "searchable": 1,
  1363. "filterable": 0,
  1364. "changeable": 1,
  1365. "ext": {
  1366. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1367. "danmu": true,
  1368. "cookie": "satoken=0eedba28-be8a-4f01-81af-2d8d44808ecf"
  1369. }
  1370. },
  1371. {
  1372. "key": "云盘弹幕",
  1373. "name": "云盘|弹幕",
  1374. "type": 3,
  1375. "api": "csp_Yunpan4k",
  1376. "searchable": 1,
  1377. "filterable": 0,
  1378. "changeable": 1,
  1379. "ext": {
  1380. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1381. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1382. "danmu": true
  1383. }
  1384. },
  1385. {
  1386. "key": "米搜弹幕",
  1387. "name": "米搜|弹幕",
  1388. "type": 3,
  1389. "api": "csp_Qkpanso",
  1390. "searchable": 1,
  1391. "filterable": 1,
  1392. "changeable": 0,
  1393. "ext": {
  1394. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1395. "site": "https://www.misou.fun",
  1396. "danmu": true
  1397. }
  1398. },
  1399. {
  1400. "key": "夸搜弹幕",
  1401. "name": "夸搜|弹幕",
  1402. "type": 3,
  1403. "api": "csp_Qkso",
  1404. "searchable": 1,
  1405. "filterable": 1,
  1406. "changeable": 0,
  1407. "ext": {
  1408. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1409. "danmu": true
  1410. }
  1411. },
  1412. {
  1413. "key": "小纸条弹幕",
  1414. "name": "小纸条|弹幕",
  1415. "type": 3,
  1416. "api": "csp_XiaoZhiTiao",
  1417. "searchable": 1,
  1418. "filterable": 1,
  1419. "changeable": 0,
  1420. "ext": {
  1421. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1422. "danmu": true
  1423. }
  1424. },
  1425. {
  1426. "key": "夸克趣盘搜弹幕",
  1427. "name": "趣盘搜|弹幕",
  1428. "type": 3,
  1429. "api": "csp_QuPanSou",
  1430. "searchable": 1,
  1431. "quickSearch": 1,
  1432. "filterable": 1,
  1433. "changeable": 1,
  1434. "ext": {
  1435. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1436. "danmu": true
  1437. }
  1438. },
  1439. {
  1440. "key": "夸克爱盘搜弹幕",
  1441. "name": "爱盘搜|弹幕",
  1442. "type": 3,
  1443. "api": "csp_AiPanSou",
  1444. "searchable": 1,
  1445. "quickSearch": 1,
  1446. "filterable": 1,
  1447. "changeable": 1,
  1448. "ext": {
  1449. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1450. "danmu": true
  1451. }
  1452. },
  1453. {
  1454. "key": "夸克盘搜弹幕",
  1455. "name": "夸克盘搜|弹幕",
  1456. "type": 3,
  1457. "api": "csp_Qkpanso",
  1458. "searchable": 1,
  1459. "filterable": 1,
  1460. "changeable": 1,
  1461. "ext": {
  1462. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1463. "danmu": true
  1464. }
  1465. },
  1466. {
  1467. "key": "荐片",
  1468. "name": "荐片|磁力",
  1469. "type": 3,
  1470. "api": "csp_Jianpian",
  1471. "playerType": 1,
  1472. "searchable": 1,
  1473. "quickSearch": 1,
  1474. "filterable": 1
  1475. },
  1476. {
  1477. "key": "New6v",
  1478. "name": "New6V|磁力",
  1479. "type": 3,
  1480. "api": "csp_New6v",
  1481. "searchable": 1,
  1482. "quickSearch": 1,
  1483. "filterable": 1,
  1484. "ext": "https://www.xb6v.com"
  1485. },
  1486. {
  1487. "key": "SeedHub",
  1488. "name": "SeedHub|磁力",
  1489. "type": 3,
  1490. "api": "csp_SeedHub",
  1491. "searchable": 1,
  1492. "quickSearch": 1,
  1493. "filterable": 1
  1494. },
  1495. {
  1496. "key": "音范丝",
  1497. "name": "音范丝|磁力",
  1498. "type": 3,
  1499. "api": "csp_XPath",
  1500. "searchable": 1,
  1501. "quickSearch": 0,
  1502. "changeable": 0,
  1503. "ext": "./XPath/音范丝.json"
  1504. },
  1505. {
  1506. "key": "磁力熊",
  1507. "name": "磁力熊|磁力",
  1508. "type": 3,
  1509. "api": "./JS/drpy2.min.js",
  1510. "ext": "./JS/磁力熊.js"
  1511. },
  1512. {
  1513. "key": "美剧迷",
  1514. "name": "美剧迷|磁力",
  1515. "type": 3,
  1516. "api": "csp_MeijuMi",
  1517. "searchable": 1,
  1518. "quickSearch": 1,
  1519. "filterable": 1
  1520. },
  1521. {
  1522. "key": "迅雷吧",
  1523. "name": "迅雷吧|磁力",
  1524. "type": 3,
  1525. "api": "csp_Xunlei8",
  1526. "searchable": 1,
  1527. "quickSearch": 1,
  1528. "filterable": 1
  1529. },
  1530. {
  1531. "key": "电影港",
  1532. "name": "电影港|磁力",
  1533. "type": 3,
  1534. "api": "csp_XYQHiker",
  1535. "searchable": 1,
  1536. "quickSearch": 1,
  1537. "filterable": 1,
  1538. "ext": "./XYQHiker/电影港.json"
  1539. },
  1540. {
  1541. "key": "布谷TV",
  1542. "name": "布谷TV|磁力",
  1543. "type": 3,
  1544. "api": "csp_XBPQ",
  1545. "searchable": 1,
  1546. "quickSearch": 1,
  1547. "filterable": 1,
  1548. "ext": "./XBPQ/布谷TV.json"
  1549. },
  1550. {
  1551. "key": "BT天堂",
  1552. "name": "BT天堂|磁力",
  1553. "type": 3,
  1554. "api": "csp_XYQHiker",
  1555. "searchable": 1,
  1556. "quickSearch": 1,
  1557. "filterable": 1,
  1558. "ext": "./XYQHiker/BT天堂.json"
  1559. },
  1560. {
  1561. "key": "Mp4电影",
  1562. "name": "Mp4电影|磁力",
  1563. "type": 3,
  1564. "api": "csp_Mp4Mov",
  1565. "searchable": 1,
  1566. "quickSearch": 1,
  1567. "filterable": 1
  1568. },
  1569. {
  1570. "key": "哔嘀影视",
  1571. "name": "哔嘀影视|磁力",
  1572. "type": 3,
  1573. "api": "csp_XYQHiker",
  1574. "searchable": 1,
  1575. "quickSearch": 1,
  1576. "filterable": 1,
  1577. "ext": "./XYQHiker/哔嘀影视.json"
  1578. },
  1579. {
  1580. "key": "酷吧电影",
  1581. "name": "酷吧电影|磁力",
  1582. "type": 3,
  1583. "api": "csp_KubaCL",
  1584. "searchable": 1,
  1585. "quickSearch": 1,
  1586. "filterable": 1
  1587. },
  1588. {
  1589. "key": "美剧天堂",
  1590. "name": "美剧天堂|磁力",
  1591. "type": 3,
  1592. "api": "csp_MeijuTT",
  1593. "searchable": 1,
  1594. "quickSearch": 1,
  1595. "filterable": 1
  1596. },
  1597. {
  1598. "key": "我的阿里",
  1599. "name": "我的|阿里",
  1600. "type": 3,
  1601. "api": "csp_MyAli",
  1602. "searchable": 0,
  1603. "quickSearch": 0,
  1604. "filterable": 0,
  1605. "indexs": 0,
  1606. "ext": {
  1607. "token": "http://127.0.0.1:9978/file/TVBox/token.txt"
  1608. },
  1609. "style": {
  1610. "type": "list"
  1611. }
  1612. },
  1613. {
  1614. "key": "我的夸克",
  1615. "name": "我的|夸克",
  1616. "type": 3,
  1617. "api": "csp_MyQuark",
  1618. "searchable": 0,
  1619. "quickSearch": 0,
  1620. "filterable": 0,
  1621. "indexs": 0,
  1622. "ext": {
  1623. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt"
  1624. },
  1625. "style": {
  1626. "type": "list"
  1627. }
  1628. },
  1629. {
  1630. "key": "我的UC",
  1631. "name": "我的|UC",
  1632. "type": 3,
  1633. "api": "csp_MyUc",
  1634. "searchable": 0,
  1635. "quickSearch": 0,
  1636. "filterable": 0,
  1637. "indexs": 0,
  1638. "ext": {
  1639. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt"
  1640. },
  1641. "style": {
  1642. "type": "list"
  1643. }
  1644. },
  1645. {
  1646. "key": "阿里合集",
  1647. "name": "阿里|合集",
  1648. "type": 3,
  1649. "api": "csp_AliShare",
  1650. "searchable": 1,
  1651. "changeable": 0,
  1652. "filterable": 0,
  1653. "indexs": 0,
  1654. "ext": {
  1655. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1656. "share": "./JS/alishare.txt"
  1657. },
  1658. "style": {
  1659. "type": "list"
  1660. }
  1661. },
  1662. {
  1663. "key": "短剧合集",
  1664. "name": "短剧|合集",
  1665. "type": 3,
  1666. "api": "./js/drpy2.min.js",
  1667. "ext": "./js/短剧合集.js",
  1668. "style": {
  1669. "type": "list"
  1670. }
  1671. },
  1672. {
  1673. "key": "push_agent",
  1674. "name": "手机|推送",
  1675. "type": 3,
  1676. "api": "csp_Push",
  1677. "searchable": 0,
  1678. "filterable": 0,
  1679. "changeable": 0,
  1680. "ext": {
  1681. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1682. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1683. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  1684. "danmu": true
  1685. }
  1686. }
  1687. ],
  1688. "parses": [
  1689. {
  1690. "name": "聚合",
  1691. "type": 3,
  1692. "url": "Demo"
  1693. },
  1694. {
  1695. "name": "推荐",
  1696. "type": 1,
  1697. "url": "https://jxjson.icu/neibu.php?url=",
  1698. "ext": {
  1699. "flag": [
  1700. "qq",
  1701. "腾讯",
  1702. "qiyi",
  1703. "爱奇艺",
  1704. "奇艺",
  1705. "youku",
  1706. "优酷",
  1707. "sohu",
  1708. "搜狐",
  1709. "letv",
  1710. "乐视",
  1711. "mgtv",
  1712. "芒果",
  1713. "tnmb",
  1714. "seven",
  1715. "bilibili",
  1716. "1905"
  1717. ],
  1718. "header": {
  1719. "User-Agent": "okhttp/4.9.1"
  1720. }
  1721. }
  1722. },
  1723. {
  1724. "name": "臻享",
  1725. "type": "1",
  1726. "url": "http://43.248.100.147:6068/KEY/XGJ/root/key/70.php?url=",
  1727. "ext": {
  1728. "flag": [
  1729. "youku",
  1730. "qq",
  1731. "qiyi",
  1732. "bilibili",
  1733. "mgtv",
  1734. "pptv",
  1735. "xigua",
  1736. "NBY",
  1737. "ETH-",
  1738. "BBA",
  1739. "TX",
  1740. "MXTV",
  1741. "mytv",
  1742. "nmys",
  1743. "yhdm",
  1744. "BNNB",
  1745. "letu",
  1746. "DJWB",
  1747. "DJWX",
  1748. "DJWT",
  1749. "duanju"
  1750. ],
  1751. "header": {
  1752. "User-Agent": "Dalvik/2.1.0"
  1753. }
  1754. }
  1755. },
  1756. {
  1757. "name": "线路1",
  1758. "type": 0,
  1759. "url": "https://jx.xmflv.com/?url=",
  1760. "ext": {
  1761. "header": {
  1762. "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 Edg/110.0.1587.57"
  1763. }
  1764. }
  1765. },
  1766. {
  1767. "name": "线路2",
  1768. "type": 0,
  1769. "url": "https://jx.quankan.app/?url=",
  1770. "ext": {
  1771. "header": {
  1772. "user-agent": "Mozilla/5.0 (Linux; Android 13; V2049A Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/116.0.0.0 Mobile Safari/537.36"
  1773. }
  1774. }
  1775. },
  1776. {
  1777. "name": "线路3",
  1778. "type": 0,
  1779. "url": "https://jx.yparse.com/index.php?url=",
  1780. "ext": {
  1781. "header": {
  1782. "user-agent": "Mozilla/5.0 (Linux; Android 13; V2049A Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/116.0.0.0 Mobile Safari/537.36"
  1783. }
  1784. }
  1785. },
  1786. {
  1787. "name": "线路4",
  1788. "type": 0,
  1789. "url": "https://jx.aidouer.net/?url=",
  1790. "ext": {
  1791. "header": {
  1792. "user-agent": "Mozilla/5.0 (Linux; Android 13; V2049A Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/116.0.0.0 Mobile Safari/537.36",
  1793. "referer": "https://jiejie.uk/"
  1794. }
  1795. }
  1796. },
  1797. {
  1798. "name": "线路5",
  1799. "type": 0,
  1800. "url": "https://www.8090g.cn/?url="
  1801. },
  1802. {
  1803. "name": "线路6",
  1804. "type": 0,
  1805. "url": "https://jx.yangtu.top?url="
  1806. },
  1807. {
  1808. "name": "线路7",
  1809. "type": 0,
  1810. "url": "https://jx.m3u8.tv/jiexi/?url="
  1811. },
  1812. {
  1813. "name": "线路8",
  1814. "type": 0,
  1815. "url": "https://www.ckplayer.vip/jiexi/?url="
  1816. }
  1817. ],
  1818. "rules": [
  1819. {
  1820. "name": "暴风",
  1821. "hosts": [
  1822. "bfzy",
  1823. "bfbfvip",
  1824. "bfengbf"
  1825. ],
  1826. "regex": [
  1827. "#EXTINF.*?\\s+.*?adjump.*?\\.ts"
  1828. ]
  1829. },
  1830. {
  1831. "name": "量子",
  1832. "hosts": [
  1833. "vip.lz",
  1834. "hd.lz",
  1835. ".cdnlz"
  1836. ],
  1837. "regex": [
  1838. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:7\\.166667,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1839. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:4\\.066667,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1840. "17.19"
  1841. ]
  1842. },
  1843. {
  1844. "name": "非凡",
  1845. "hosts": [
  1846. "vip.ffzy",
  1847. "hd.ffzy",
  1848. "super.ffzy"
  1849. ],
  1850. "regex": [
  1851. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:6\\.400000,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1852. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:6\\.666667,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1853. "#EXTINF.*?\\s+.*?1171(057).*?\\.ts",
  1854. "#EXTINF.*?\\s+.*?6d7b(077).*?\\.ts",
  1855. "#EXTINF.*?\\s+.*?6718a(403).*?\\.ts",
  1856. "17.99",
  1857. "14.45"
  1858. ]
  1859. },
  1860. {
  1861. "name": "索尼",
  1862. "hosts": [
  1863. "suonizy"
  1864. ],
  1865. "regex": [
  1866. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:1\\.000000,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1867. "#EXTINF.*?\\s+.*?p1ayer.*?\\.ts",
  1868. "#EXTINF.*?\\s+.*?\\/video\\/original.*?\\.ts"
  1869. ]
  1870. },
  1871. {
  1872. "name": "快看",
  1873. "hosts": [
  1874. "kuaikan"
  1875. ],
  1876. "regex": [
  1877. "#EXT-X-KEY:METHOD=NONE\\r*\\n*#EXTINF:5,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1878. "#EXT-X-KEY:METHOD=NONE\\r*\\n*#EXTINF:2\\.4,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1879. "#EXT-X-KEY:METHOD=NONE\\r*\\n*#EXTINF:1\\.467,[\\s\\S]*?#EXT-X-DISCONTINUITY"
  1880. ]
  1881. },
  1882. {
  1883. "name": "磁力广告",
  1884. "hosts": [
  1885. "magnet"
  1886. ],
  1887. "regex": [
  1888. "更多",
  1889. "请访问",
  1890. "example",
  1891. "社 區",
  1892. "x u u",
  1893. "直 播",
  1894. "更 新",
  1895. "社 区",
  1896. "有趣",
  1897. "有 趣",
  1898. "英皇体育",
  1899. "全中文AV在线",
  1900. "澳门皇冠赌场",
  1901. "哥哥快来",
  1902. "美女荷官",
  1903. "裸聊",
  1904. "新片首发",
  1905. "UUE29"
  1906. ]
  1907. },
  1908. {
  1909. "name": "火山嗅探",
  1910. "hosts": [
  1911. "huoshan.com"
  1912. ],
  1913. "regex": [
  1914. "item_id="
  1915. ]
  1916. },
  1917. {
  1918. "name": "抖音嗅探",
  1919. "hosts": [
  1920. "douyin.com"
  1921. ],
  1922. "regex": [
  1923. "is_play_url="
  1924. ]
  1925. },
  1926. {
  1927. "name": "农民嗅探",
  1928. "hosts": [
  1929. "toutiaovod.com"
  1930. ],
  1931. "regex": [
  1932. "video/tos/cn"
  1933. ]
  1934. }
  1935. ],
  1936. "doh": [
  1937. {
  1938. "name": "Google",
  1939. "url": "https://dns.google/dns-query",
  1940. "ips": [
  1941. "8.8.4.4",
  1942. "8.8.8.8"
  1943. ]
  1944. },
  1945. {
  1946. "name": "Cloudflare",
  1947. "url": "https://cloudflare-dns.com/dns-query",
  1948. "ips": [
  1949. "1.1.1.1",
  1950. "1.0.0.1",
  1951. "2606:4700:4700::1111",
  1952. "2606:4700:4700::1001"
  1953. ]
  1954. },
  1955. {
  1956. "name": "AdGuard",
  1957. "url": "https://dns.adguard.com/dns-query",
  1958. "ips": [
  1959. "94.140.14.140",
  1960. "94.140.14.141"
  1961. ]
  1962. },
  1963. {
  1964. "name": "DNSWatch",
  1965. "url": "https://resolver2.dns.watch/dns-query",
  1966. "ips": [
  1967. "84.200.69.80",
  1968. "84.200.70.40"
  1969. ]
  1970. },
  1971. {
  1972. "name": "Quad9",
  1973. "url": "https://dns.quad9.net/dns-quer",
  1974. "ips": [
  1975. "9.9.9.9",
  1976. "149.112.112.112"
  1977. ]
  1978. }
  1979. ],
  1980. "lives": [
  1981. {
  1982. "name": "直播",
  1983. "type": 0,
  1984. "url": "http://127.0.0.1:9978/proxy?do=live&url=https://tv.iill.top/m3u/Gather",
  1985. "playerType": 2
  1986. },
  1987. {
  1988. "name": "范明明",
  1989. "type": 0,
  1990. "url": "https://live.fanmingming.com/tv/m3u/ipv6.m3u",
  1991. "playerType": 2
  1992. },
  1993. {
  1994. "name": "肥羊",
  1995. "type": 3,
  1996. "api": "csp_Ysptp",
  1997. "ext": "./live.txt",
  1998. "logo": "https://live.fanmingming.com/tv/{name}.png"
  1999. }
  2000. ],
  2001. "flags": [
  2002. "youku",
  2003. "优酷",
  2004. "优 酷",
  2005. "优酷视频",
  2006. "qq",
  2007. "腾讯",
  2008. "腾 讯",
  2009. "腾讯视频",
  2010. "iqiyi",
  2011. "qiyi",
  2012. "奇艺",
  2013. "爱奇艺",
  2014. "爱 奇 艺",
  2015. "m1905",
  2016. "xigua",
  2017. "letv",
  2018. "leshi",
  2019. "乐视",
  2020. "乐 视",
  2021. "sohu",
  2022. "搜狐",
  2023. "搜 狐",
  2024. "搜狐视频",
  2025. "tudou",
  2026. "pptv",
  2027. "mgtv",
  2028. "芒果",
  2029. "imgo",
  2030. "芒果TV",
  2031. "芒 果 T V",
  2032. "bilibili",
  2033. "哔 哩",
  2034. "哔 哩 哔 哩"
  2035. ],
  2036. "ijk": [
  2037. {
  2038. "group": "软解码",
  2039. "options": [
  2040. {
  2041. "category": 4,
  2042. "name": "opensles",
  2043. "value": "0"
  2044. },
  2045. {
  2046. "category": 4,
  2047. "name": "overlay-format",
  2048. "value": "842225234"
  2049. },
  2050. {
  2051. "category": 4,
  2052. "name": "framedrop",
  2053. "value": "1"
  2054. },
  2055. {
  2056. "category": 4,
  2057. "name": "soundtouch",
  2058. "value": "1"
  2059. },
  2060. {
  2061. "category": 4,
  2062. "name": "start-on-prepared",
  2063. "value": "1"
  2064. },
  2065. {
  2066. "category": 1,
  2067. "name": "http-detect-range-support",
  2068. "value": "0"
  2069. },
  2070. {
  2071. "category": 1,
  2072. "name": "fflags",
  2073. "value": "fastseek"
  2074. },
  2075. {
  2076. "category": 2,
  2077. "name": "skip_loop_filter",
  2078. "value": "48"
  2079. },
  2080. {
  2081. "category": 4,
  2082. "name": "reconnect",
  2083. "value": "1"
  2084. },
  2085. {
  2086. "category": 4,
  2087. "name": "enable-accurate-seek",
  2088. "value": "0"
  2089. },
  2090. {
  2091. "category": 4,
  2092. "name": "mediacodec",
  2093. "value": "0"
  2094. },
  2095. {
  2096. "category": 4,
  2097. "name": "mediacodec-auto-rotate",
  2098. "value": "0"
  2099. },
  2100. {
  2101. "category": 4,
  2102. "name": "mediacodec-handle-resolution-change",
  2103. "value": "0"
  2104. },
  2105. {
  2106. "category": 4,
  2107. "name": "mediacodec-hevc",
  2108. "value": "0"
  2109. },
  2110. {
  2111. "category": 1,
  2112. "name": "dns_cache_timeout",
  2113. "value": "600000000"
  2114. }
  2115. ]
  2116. },
  2117. {
  2118. "group": "硬解码",
  2119. "options": [
  2120. {
  2121. "category": 4,
  2122. "name": "opensles",
  2123. "value": "0"
  2124. },
  2125. {
  2126. "category": 4,
  2127. "name": "overlay-format",
  2128. "value": "842225234"
  2129. },
  2130. {
  2131. "category": 4,
  2132. "name": "framedrop",
  2133. "value": "1"
  2134. },
  2135. {
  2136. "category": 4,
  2137. "name": "soundtouch",
  2138. "value": "1"
  2139. },
  2140. {
  2141. "category": 4,
  2142. "name": "start-on-prepared",
  2143. "value": "1"
  2144. },
  2145. {
  2146. "category": 1,
  2147. "name": "http-detect-range-support",
  2148. "value": "0"
  2149. },
  2150. {
  2151. "category": 1,
  2152. "name": "fflags",
  2153. "value": "fastseek"
  2154. },
  2155. {
  2156. "category": 2,
  2157. "name": "skip_loop_filter",
  2158. "value": "48"
  2159. },
  2160. {
  2161. "category": 4,
  2162. "name": "reconnect",
  2163. "value": "1"
  2164. },
  2165. {
  2166. "category": 4,
  2167. "name": "enable-accurate-seek",
  2168. "value": "0"
  2169. },
  2170. {
  2171. "category": 4,
  2172. "name": "mediacodec",
  2173. "value": "1"
  2174. },
  2175. {
  2176. "category": 4,
  2177. "name": "mediacodec-auto-rotate",
  2178. "value": "1"
  2179. },
  2180. {
  2181. "category": 4,
  2182. "name": "mediacodec-handle-resolution-change",
  2183. "value": "1"
  2184. },
  2185. {
  2186. "category": 4,
  2187. "name": "mediacodec-hevc",
  2188. "value": "1"
  2189. },
  2190. {
  2191. "category": 1,
  2192. "name": "dns_cache_timeout",
  2193. "value": "600000000"
  2194. }
  2195. ]
  2196. }
  2197. ],
  2198. "ads": [
  2199. "static-mozai.4gtv.tv"
  2200. ]
  2201. }