api.json 63 KB

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