XS.json 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118
  1. {
  2. "spider": "https://git.acwing.com/fkaf/fk/-/raw/main/jar/xiaosa.jar1.jar",
  3. "wallpaper": "http://bobohome.ignorelist.com:20247/bing",
  4. "logo": "http://127.0.0.1:9978/file/TVBox/logo.png",
  5. "sites": [
  6. {
  7. "key": "豆瓣",
  8. "name": "豆瓣|首页",
  9. "type": 3,
  10. "api": "csp_Douban",
  11. "searchable": 0
  12. },
  13. {
  14. "key": "预告",
  15. "name": "新片|预告",
  16. "type": 3,
  17. "api": "csp_YGP",
  18. "searchable": 0
  19. },
  20. {
  21. "key": "本地",
  22. "name": "本地|视频",
  23. "type": 3,
  24. "api": "csp_LocalFile"
  25. },
  26. {
  27. "key": "配置中心",
  28. "name": "配置|中心",
  29. "type": 3,
  30. "api": "csp_Config",
  31. "searchable": 0,
  32. "changeable": 0,
  33. "indexs": 0,
  34. "style": {
  35. "type": "rect",
  36. "ratio": 1.597
  37. }
  38. },
  39. {
  40. "key": "热播影视",
  41. "name": "热播|APP",
  42. "type": 3,
  43. "api": "csp_AppRJ",
  44. "searchable": 1,
  45. "quickSearch": 1,
  46. "filterable": 0,
  47. "ext": {
  48. "url": "http://v.rbotv.cn"
  49. }
  50. },
  51. {
  52. "key": "天天影视",
  53. "name": "天天|APP",
  54. "type": 3,
  55. "api": "csp_AppRJ",
  56. "searchable": 1,
  57. "quickSearch": 1,
  58. "filterable": 0,
  59. "ext": {
  60. "url": "http://tt.ysdqjs.cn"
  61. }
  62. },
  63. {
  64. "key": "浪酷影视",
  65. "name": "浪酷|APP",
  66. "type": 3,
  67. "api": "csp_AppRJ",
  68. "searchable": 1,
  69. "quickSearch": 1,
  70. "filterable": 0,
  71. "ext": {
  72. "url": "http://v.lkuys.cn"
  73. }
  74. },
  75. {
  76. "key": "星河",
  77. "name": "星河|APP",
  78. "type": 3,
  79. "quickSearch": 1,
  80. "api": "csp_AppSy",
  81. "ext": {
  82. "url": "http://192.140.161.171:2563",
  83. "key1": "aassddwwxxllsx1x",
  84. "key2": "aassddwwxxllsx1x",
  85. "key3": "aassddwwxxllsx1x"
  86. }
  87. },
  88. {
  89. "key": "追忆",
  90. "name": "追忆|APP",
  91. "type": 3,
  92. "quickSearch": 1,
  93. "api": "csp_AppSy",
  94. "ext": {
  95. "url": "http://110.42.7.130:1866",
  96. "key1": "aassddwwxxllsx1x",
  97. "key2": "1e765e9b09b4dbba",
  98. "key3": "1e765e9b09b4dbba"
  99. }
  100. },
  101. {
  102. "key": "乐达",
  103. "name": "乐达|APP",
  104. "type": 3,
  105. "quickSearch": 1,
  106. "api": "csp_AppGet",
  107. "ext": {
  108. "url": "https://ledayy.com",
  109. "site": "",
  110. "dataKey": "hjjp68c2okw12345",
  111. "dataIv": "hjjp68c2okw12345",
  112. "deviceId": "",
  113. "version": ""
  114. }
  115. },
  116. {
  117. "key": "灵虎",
  118. "name": "灵虎|APP",
  119. "type": 3,
  120. "quickSearch": 1,
  121. "api": "csp_AppGet",
  122. "ext": {
  123. "url": "",
  124. "site": "https://bind.315999.xyz/89.txt",
  125. "dataKey": "#getapp@TMD@2025",
  126. "dataIv": "#getapp@TMD@2025",
  127. "deviceId": "",
  128. "version": "120"
  129. }
  130. },
  131. {
  132. "key": "旗星",
  133. "name": "旗星|APP",
  134. "type": 3,
  135. "quickSearch": 1,
  136. "api": "csp_AppGet",
  137. "ext": {
  138. "url": "http://ys.qist.top",
  139. "site": "",
  140. "dataKey": "2SWSPFxugBLPPOKo",
  141. "dataIv": "2SWSPFxugBLPPOKo",
  142. "deviceId": "",
  143. "version": "120"
  144. }
  145. },
  146. {
  147. "key": "云云",
  148. "name": "云云|APP",
  149. "type": 3,
  150. "quickSearch": 1,
  151. "api": "csp_AppGet2",
  152. "ext": {
  153. "url": "",
  154. "site": "https://staraugust123456.oss-cn-hangzhou.aliyuncs.com/1.txt",
  155. "dataKey": "staraugust123456",
  156. "dataIv": "staraugust123456",
  157. "deviceId": "",
  158. "version": "120"
  159. }
  160. },
  161. {
  162. "key": "光影",
  163. "name": "光影|APP",
  164. "type": 3,
  165. "quickSearch": 1,
  166. "api": "csp_AppGet",
  167. "ext": {
  168. "url": "https://www.guangyingmi.com",
  169. "dataKey": "230fnsodfsdhfon2",
  170. "dataIv": "230fnsodfsdhfon2",
  171. "deviceId": "",
  172. "version": ""
  173. }
  174. },
  175. {
  176. "key": "火猫",
  177. "name": "火猫丨APP",
  178. "type": 3,
  179. "quickSearch": 1,
  180. "api": "csp_AppGet",
  181. "ext": {
  182. "url": "",
  183. "site": "https://cunchu8.obs.cn-north-4.myhuaweicloud.com/03.txt",
  184. "dataKey": "J6AIORKJ3PQOJKM9",
  185. "dataIv": "J6AIORKJ3PQOJKM9",
  186. "deviceId": "",
  187. "version": ""
  188. }
  189. },
  190. {
  191. "key": "若雪",
  192. "name": "若雪丨APP",
  193. "type": 3,
  194. "quickSearch": 1,
  195. "api": "csp_AppGet2",
  196. "ext": {
  197. "url": "https://appcms.rx4k.top",
  198. "site": "",
  199. "dataKey": "ZX10ysTYZWtIJCTU",
  200. "dataIv": "ZX10ysTYZWtIJCTU",
  201. "deviceId": "",
  202. "version": "120"
  203. }
  204. },
  205. {
  206. "key": "丫丫",
  207. "name": "丫丫|APP",
  208. "type": 3,
  209. "quickSearch": 1,
  210. "api": "csp_AppGet",
  211. "ext": {
  212. "url": "http://tv.yy-fun.cc",
  213. "dataKey": "qkxnwkfjwpcnwycl",
  214. "dataIv": "qkxnwkfjwpcnwycl",
  215. "deviceId": "",
  216. "version": ""
  217. }
  218. },
  219. {
  220. "key": "爱看",
  221. "name": "爱看丨APP",
  222. "type": 3,
  223. "quickSearch": 1,
  224. "api": "csp_AppGet",
  225. "ext": {
  226. "url": "http://154.37.220.65",
  227. "dataKey": "uI1TkPJC8B46AyN3",
  228. "dataIv": "uI1TkPJC8B46AyN3",
  229. "deviceId": "2112fc5eac600314ba95c4d65da9286b3",
  230. "version": "120"
  231. }
  232. },
  233. {
  234. "key": "蓝光",
  235. "name": "蓝光|APP",
  236. "type": 3,
  237. "quickSearch": 1,
  238. "api": "csp_AppGet",
  239. "ext": {
  240. "url": "http://122.228.193.2:9654",
  241. "dataKey": "ca94b06ca3c7d80e",
  242. "dataIv": "ca94b06ca3c7d80e",
  243. "deviceId": "",
  244. "version": "119"
  245. }
  246. },
  247. {
  248. "key": "豆丁",
  249. "name": "豆丁|APP",
  250. "type": 3,
  251. "quickSearch": 1,
  252. "api": "csp_AppGet",
  253. "ext": {
  254. "url": "",
  255. "site": "https://vip.123pan.cn/1848451100/zl/xfdd.txt",
  256. "dataKey": "xasdasdqwertyuio",
  257. "dataIv": "xasdasdqwertyuio",
  258. "deviceId": "",
  259. "version": ""
  260. }
  261. },
  262. {
  263. "key": "蓝鹰",
  264. "name": "蓝鹰|APP",
  265. "type": 3,
  266. "quickSearch": 1,
  267. "api": "csp_AppGet2",
  268. "ext": {
  269. "url": "",
  270. "site": "https://lanyinghz.oss-cn-hangzhou.aliyuncs.com/lanyingxmy.txt",
  271. "dataKey": "ca94b06ca359d80e",
  272. "dataIv": "ca94b06ca359d80e",
  273. "deviceId": "",
  274. "version": "120"
  275. }
  276. },
  277. {
  278. "key": "仓鼠",
  279. "name": "仓鼠|APP",
  280. "type": 3,
  281. "quickSearch": 1,
  282. "api": "csp_AppGet2",
  283. "ext": {
  284. "url": "",
  285. "site": "https://ceshi307386.oss-cn-beijing.aliyuncs.com/csurl.txt",
  286. "dataKey": "Z98KXaLtO2wC1Pte",
  287. "dataIv": "Z98KXaLtO2wC1Pte",
  288. "deviceId": "",
  289. "version": "120"
  290. }
  291. },
  292. {
  293. "key": "鲸鱼",
  294. "name": "鲸鱼|APP",
  295. "type": 3,
  296. "quickSearch": 1,
  297. "api": "csp_AppGet2",
  298. "ext": {
  299. "url": "",
  300. "site": "https://jingyu4k-1312635929.cos.ap-nanjing.myqcloud.com/1.json",
  301. "dataKey": "AAdgrdghjfgswerA",
  302. "dataIv": "AAdgrdghjfgswerA",
  303. "deviceId": "",
  304. "version": ""
  305. }
  306. },
  307. {
  308. "key": "米诺",
  309. "name": "米诺|APP",
  310. "type": 3,
  311. "quickSearch": 1,
  312. "api": "csp_AppGet",
  313. "ext": {
  314. "url": "http://www.milkidc.cn",
  315. "dataKey": "20c79c979da8db0f",
  316. "dataIv": "20c79c979da8db0f",
  317. "deviceId": "",
  318. "version": ""
  319. }
  320. },
  321. {
  322. "key": "云速",
  323. "name": "云速|APP",
  324. "type": 3,
  325. "quickSearch": 1,
  326. "api": "csp_AppGet",
  327. "ext": {
  328. "url": "",
  329. "site": "http://59.153.167.137:7788/1.json",
  330. "dataKey": "4d83b87c4c5ea111",
  331. "dataIv": "4d83b87c4c5ea111",
  332. "deviceId": "",
  333. "version": "105"
  334. }
  335. },
  336. {
  337. "key": "瓜萌",
  338. "name": "瓜萌|APP",
  339. "type": 3,
  340. "quickSearch": 1,
  341. "api": "csp_AppGet",
  342. "ext": {
  343. "url": "",
  344. "site": "https://www.guahd.com/1.txt",
  345. "dataKey": "f2A7D4B9E8C16531",
  346. "dataIv": "f2A7D4B9E8C16531",
  347. "deviceId": "",
  348. "version": ""
  349. }
  350. },
  351. {
  352. "key": "晴天",
  353. "name": "晴天|APP",
  354. "type": 3,
  355. "quickSearch": 1,
  356. "api": "csp_AppGet",
  357. "ext": {
  358. "url": "https://qjappcms.sun4k.top",
  359. "dataKey": "sBxqXVF5pAHbGzrH",
  360. "dataIv": "sBxqXVF5pAHbGzrH",
  361. "deviceId": "",
  362. "version": "119"
  363. }
  364. },
  365. {
  366. "key": "橘子",
  367. "name": "橘子|APP",
  368. "type": 3,
  369. "quickSearch": 1,
  370. "api": "csp_AppGet",
  371. "ext": {
  372. "url": "",
  373. "site": "http://t.bffree.cn/1.txt",
  374. "dataKey": "2015692015692015",
  375. "dataIv": "2015692015692015",
  376. "deviceId": "",
  377. "version": "300"
  378. }
  379. },
  380. {
  381. "key": "萝卜",
  382. "name": "萝卜|APP",
  383. "type": 3,
  384. "quickSearch": 1,
  385. "api": "csp_AppGet",
  386. "ext": {
  387. "url": "https://apiapplbys.lbys.app:5678",
  388. "dataKey": "apiapplbyskey168",
  389. "dataIv": "apiapplbyskey168",
  390. "deviceId": "",
  391. "version": "107"
  392. }
  393. },
  394. {
  395. "key": "米兔",
  396. "name": "米兔|APP",
  397. "type": 3,
  398. "quickSearch": 1,
  399. "api": "csp_AppGet",
  400. "ext": {
  401. "url": "https://new.tkbot.fun",
  402. "dataKey": "d032c12876bc6848",
  403. "dataIv": "d032c12876bc6848",
  404. "deviceId": "",
  405. "version": "200"
  406. }
  407. },
  408. {
  409. "key": "小红",
  410. "name": "小红|APP",
  411. "type": 3,
  412. "quickSearch": 1,
  413. "api": "csp_AppGet",
  414. "ext": {
  415. "url": "https://www.xiaohys.com",
  416. "dataKey": "ENonBHeVBoYZhVUV",
  417. "dataIv": "ENonBHeVBoYZhVUV",
  418. "deviceId": "298e5fe29c74b35aabb9836ee2f6f449f",
  419. "version": "166"
  420. }
  421. },
  422. {
  423. "key": "白蛇",
  424. "name": "白蛇|APP",
  425. "type": 3,
  426. "quickSearch": 1,
  427. "api": "csp_AppGet",
  428. "ext": {
  429. "url": "",
  430. "site": "http://tengxunyunaliyun.oss-cn-shanghai.aliyuncs.com/tengxunyun.txt",
  431. "dataKey": "n3l2tx5jdkp9s2c8",
  432. "dataIv": "n3l2tx5jdkp9s2c8",
  433. "deviceId": "",
  434. "version": "361"
  435. }
  436. },
  437. {
  438. "key": "若惜",
  439. "name": "若惜|APP",
  440. "type": 3,
  441. "quickSearch": 1,
  442. "api": "csp_AppGet",
  443. "ext": {
  444. "url": "http://110.40.59.188:9527",
  445. "dataKey": "ebad3f1a58b13933",
  446. "dataIv": "ebad3f1a58b13933",
  447. "deviceId": "",
  448. "version": ""
  449. }
  450. },
  451. {
  452. "key": "外剧",
  453. "name": "外剧|APP",
  454. "type": 3,
  455. "quickSearch": 1,
  456. "api": "csp_AppGet",
  457. "ext": {
  458. "url": "https://guowaiju.com",
  459. "dataKey": "7xv16h7qgkrs9b1p",
  460. "dataIv": "7xv16h7qgkrs9b1p",
  461. "deviceId": "",
  462. "version": ""
  463. }
  464. },
  465. {
  466. "key": "移动",
  467. "name": "移动|APP",
  468. "type": 3,
  469. "api": "csp_YD",
  470. "searchable": 1,
  471. "quickSearch": 1,
  472. "style": {
  473. "type": "list"
  474. }
  475. },
  476. {
  477. "key": "哔哩视频",
  478. "name": "哔哩|视频",
  479. "type": 3,
  480. "api": "csp_BiliYS",
  481. "searchable": 1,
  482. "quickSearch": 0,
  483. "filterable": 0,
  484. "changeable": 0,
  485. "style": {
  486. "type": "rect",
  487. "ratio": 1.433
  488. },
  489. "ext": {
  490. "json": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/BLSP.json",
  491. "cookie": "http://127.0.0.1:9978/file/TVBox/bili_cookie.txt"
  492. }
  493. },
  494. {
  495. "key": "腾讯视频",
  496. "name": "腾讯|视频",
  497. "type": 3,
  498. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  499. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/js/TXSP.js"
  500. },
  501. {
  502. "key": "优酷视频",
  503. "name": "优酷|视频",
  504. "type": 3,
  505. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  506. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/js/YKSP.js"
  507. },
  508. {
  509. "key": "芒果视频",
  510. "name": "芒果|视频",
  511. "type": 3,
  512. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  513. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/js/MGSP.js"
  514. },
  515. {
  516. "key": "爱奇艺",
  517. "name": "爱奇艺|视频",
  518. "type": 3,
  519. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  520. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/js/AQY.js"
  521. },
  522. {
  523. "key": "三六零",
  524. "name": "三六零|视频",
  525. "type": 3,
  526. "api": "csp_SP360"
  527. },
  528. {
  529. "key": "小斑快映",
  530. "name": "快映|4K弹幕",
  531. "type": 3,
  532. "api": "csp_PanWebShare",
  533. "searchable": 1,
  534. "quickSearch": 1,
  535. "filterable": 1,
  536. "changeable": 1,
  537. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/xbky.json"
  538. },
  539. {
  540. "key": "玩偶哥哥",
  541. "name": "玩偶|4K弹幕",
  542. "type": 3,
  543. "api": "csp_PanWebShare",
  544. "searchable": 1,
  545. "quickSearch": 1,
  546. "filterable": 1,
  547. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/wogg.json"
  548. },
  549. {
  550. "key": "木偶",
  551. "name": "木偶|4K弹幕",
  552. "type": 3,
  553. "api": "csp_PanWebShare",
  554. "searchable": 1,
  555. "quickSearch": 1,
  556. "filterable": 1,
  557. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/mogg.json"
  558. },
  559. {
  560. "key": "蜡笔",
  561. "name": "蜡笔|4K弹幕",
  562. "type": 3,
  563. "api": "csp_PanWebShare",
  564. "searchable": 1,
  565. "quickSearch": 1,
  566. "filterable": 1,
  567. "changeable": 1,
  568. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/lb.json"
  569. },
  570. {
  571. "key": "至臻",
  572. "name": "至臻|4K弹幕",
  573. "type": 3,
  574. "api": "csp_PanWebShare",
  575. "searchable": 1,
  576. "quickSearch": 1,
  577. "filterable": 1,
  578. "changeable": 1,
  579. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/zz.json"
  580. },
  581. {
  582. "key": "多多",
  583. "name": "多多|4K弹幕",
  584. "type": 3,
  585. "api": "csp_PanWebShare",
  586. "searchable": 1,
  587. "quickSearch": 1,
  588. "filterable": 1,
  589. "changeable": 1,
  590. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/yyds.json"
  591. },
  592. {
  593. "key": "欧哥",
  594. "name": "欧哥|4K弹幕",
  595. "type": 3,
  596. "api": "csp_PanWebShare",
  597. "searchable": 1,
  598. "quickSearch": 1,
  599. "filterable": 1,
  600. "changeable": 1,
  601. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/og.json"
  602. },
  603. {
  604. "key": "二小",
  605. "name": "二小|4K弹幕",
  606. "type": 3,
  607. "api": "csp_PanWebShare",
  608. "searchable": 1,
  609. "quickSearch": 1,
  610. "filterable": 1,
  611. "changeable": 1,
  612. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/ex.json"
  613. },
  614. {
  615. "key": "虎斑",
  616. "name": "虎斑|4K弹幕",
  617. "type": 3,
  618. "api": "csp_PanWebShare",
  619. "searchable": 1,
  620. "quickSearch": 1,
  621. "filterable": 1,
  622. "changeable": 1,
  623. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/hb.json"
  624. },
  625. {
  626. "key": "闪电",
  627. "name": "闪电|4K弹幕",
  628. "type": 3,
  629. "api": "csp_PanWebShare",
  630. "searchable": 1,
  631. "quickSearch": 1,
  632. "filterable": 1,
  633. "changeable": 1,
  634. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/sd.json"
  635. },
  636. {
  637. "key": "百家",
  638. "name": "百家|4K弹幕",
  639. "type": 3,
  640. "api": "csp_PanWebShare",
  641. "searchable": 1,
  642. "quickSearch": 1,
  643. "filterable": 1,
  644. "changeable": 1,
  645. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/bj.json"
  646. },
  647. {
  648. "key": "团长",
  649. "name": "团长|4K弹幕",
  650. "type": 3,
  651. "api": "csp_PanWebTz",
  652. "searchable": 1,
  653. "quickSearch": 1,
  654. "filterable": 1,
  655. "changeable": 1
  656. },
  657. {
  658. "key": "雷鲸",
  659. "name": "雷鲸|4K弹幕",
  660. "type": 3,
  661. "api": "csp_PanWebShareCloudLJ",
  662. "searchable": 1,
  663. "quickSearch": 1,
  664. "filterable": 1,
  665. "changeable": 1,
  666. "style": {
  667. "type": "list",
  668. "ratio": 1.433
  669. },
  670. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/lj.json"
  671. },
  672. {
  673. "key": "海绵",
  674. "name": "海绵|4K弹幕",
  675. "type": 3,
  676. "api": "csp_PanWebShareCloudHM",
  677. "searchable": 1,
  678. "quickSearch": 1,
  679. "filterable": 1,
  680. "changeable": 1,
  681. "style": {
  682. "type": "list",
  683. "ratio": 1.433
  684. },
  685. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/hm.json"
  686. },
  687. {
  688. "key": "夸父",
  689. "name": "夸父|4K弹幕",
  690. "type": 3,
  691. "api": "csp_PanWebShareCloudKF",
  692. "searchable": 1,
  693. "quickSearch": 1,
  694. "filterable": 1,
  695. "changeable": 1,
  696. "style": {
  697. "type": "list",
  698. "ratio": 1.433
  699. },
  700. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/kf.json"
  701. },
  702. {
  703. "key": "123",
  704. "name": "123|4K弹幕",
  705. "type": 3,
  706. "api": "csp_PanWebShareCloud123",
  707. "searchable": 1,
  708. "quickSearch": 1,
  709. "filterable": 1,
  710. "changeable": 1,
  711. "style": {
  712. "type": "list",
  713. "ratio": 1.433
  714. },
  715. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/123.json"
  716. },
  717. {
  718. "key": "趣盘",
  719. "name": "趣盘|4K弹幕",
  720. "type": 3,
  721. "api": "csp_PanWebQu",
  722. "searchable": 1,
  723. "quickSearch": 1,
  724. "filterable": 1,
  725. "changeable": 1,
  726. "style": {
  727. "type": "list",
  728. "ratio": 1.433
  729. },
  730. "ext": {
  731. "url": "https://www.qupanshe.com"
  732. }
  733. },
  734. {
  735. "key": "盘库",
  736. "name": "盘库|4K弹幕",
  737. "type": 3,
  738. "api": "csp_PanWebKuBa",
  739. "searchable": 1,
  740. "quickSearch": 1,
  741. "filterable": 1,
  742. "changeable": 1,
  743. "ext": {
  744. "url": "https://panku8.com,https://yipanso.com"
  745. }
  746. },
  747. {
  748. "key": "双星",
  749. "name": "双星|4K弹幕",
  750. "type": 3,
  751. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  752. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/js/SX.js",
  753. "style": {
  754. "type": "list"
  755. }
  756. },
  757. {
  758. "key": "校长",
  759. "name": "校长|4K弹幕",
  760. "type": 3,
  761. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  762. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/js/XZ.js",
  763. "style": {
  764. "type": "list"
  765. }
  766. },
  767. {
  768. "key": "天堂",
  769. "name": "天堂|4K弹幕",
  770. "type": 3,
  771. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  772. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/js/TT.js",
  773. "style": {
  774. "type": "list"
  775. }
  776. },
  777. {
  778. "key": "人人电影网",
  779. "name": "人人|4K弹幕",
  780. "type": 3,
  781. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  782. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/js/RRDYW.js",
  783. "style": {
  784. "type": "list"
  785. }
  786. },
  787. {
  788. "key": "糖果",
  789. "name": "糖果|搜索",
  790. "type": 3,
  791. "api": "csp_TGSou",
  792. "searchable": 1,
  793. "quickSearch": 1,
  794. "filterable": 1
  795. },
  796. {
  797. "key": "音海",
  798. "name": "音海|搜索",
  799. "type": 3,
  800. "api": "csp_YinHai",
  801. "searchable": 1,
  802. "quickSearch": 1,
  803. "filterable": 1
  804. },
  805. {
  806. "key": "盘搜",
  807. "name": "盘搜|搜索",
  808. "type": 3,
  809. "api": "csp_PanSou",
  810. "searchable": 1,
  811. "quickSearch": 1,
  812. "filterable": 1
  813. },
  814. {
  815. "key": "百酷",
  816. "name": "百酷|搜索",
  817. "type": 3,
  818. "api": "csp_Baiku"
  819. },
  820. {
  821. "key": "米搜",
  822. "name": "米搜|搜索",
  823. "type": 3,
  824. "api": "csp_MiSou"
  825. },
  826. {
  827. "key": "短剧大全",
  828. "name": "短剧|大全",
  829. "type": 3,
  830. "api": "csp_DuanjuDQ"
  831. },
  832. {
  833. "key": "短剧合集",
  834. "name": "短剧|合集",
  835. "type": 3,
  836. "api": "csp_DuanjuHJ"
  837. },
  838. {
  839. "key": "全盘",
  840. "name": "全盘|搜索",
  841. "type": 3,
  842. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  843. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/js/QP.js",
  844. "style": {
  845. "type": "list"
  846. }
  847. },
  848. {
  849. "key": "星芽短剧",
  850. "name": "星芽|短剧",
  851. "type": 3,
  852. "api": "csp_AppXY",
  853. "searchable": 1,
  854. "quickSearch": 0,
  855. "filterable": 0
  856. },
  857. {
  858. "key": "甜圈短剧",
  859. "name": "甜圈|短剧",
  860. "type": 3,
  861. "api": "https://gitee.com/PizazzXS/another-d/raw/master/movie/py/TQDJ.py",
  862. "searchable": 1,
  863. "changeable": 1,
  864. "quickSearch": 1,
  865. "filterable": 1
  866. },
  867. {
  868. "key": "偷乐短剧",
  869. "name": "偷乐|短剧",
  870. "type": 3,
  871. "api": "https://gitee.com/PizazzXS/another-d/raw/master/movie/py/TLDJ.py",
  872. "searchable": 1,
  873. "changeable": 1,
  874. "quickSearch": 1,
  875. "filterable": 1
  876. },
  877. {
  878. "key": "爱看短剧",
  879. "name": "爱看|短剧",
  880. "type": 3,
  881. "api": "https://gitee.com/PizazzXS/another-d/raw/master/movie/py/AKDJ.py",
  882. "searchable": 1,
  883. "changeable": 1,
  884. "quickSearch": 1,
  885. "filterable": 1
  886. },
  887. {
  888. "key": "锦鲤短剧",
  889. "name": "锦鲤|短剧",
  890. "type": 3,
  891. "api": "https://gitee.com/PizazzXS/another-d/raw/master/movie/py/JLDJ.py",
  892. "searchable": 1,
  893. "changeable": 1,
  894. "quickSearch": 1,
  895. "filterable": 1
  896. },
  897. {
  898. "key": "剧王短剧",
  899. "name": "剧王|短剧",
  900. "type": 3,
  901. "api": "https://gitee.com/PizazzXS/another-d/raw/master/movie/py/JWDJ.py",
  902. "searchable": 1,
  903. "changeable": 1,
  904. "quickSearch": 1,
  905. "filterable": 1
  906. },
  907. {
  908. "key": "短剧屋",
  909. "name": "短剧屋|短剧",
  910. "type": 3,
  911. "api": "csp_XYQHiker",
  912. "searchable": 1,
  913. "quickSearch": 1,
  914. "filterable": 1,
  915. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/DJWu.json"
  916. },
  917. {
  918. "key": "七七",
  919. "name": "七七|影视",
  920. "type": 1,
  921. "api": "http://6.qqqtv.top/api.php/provide/vod/",
  922. "searchable": 1,
  923. "quickSearch": 1,
  924. "filterable": 1,
  925. "categories": [
  926. "推荐",
  927. "电影",
  928. "电视剧",
  929. "综艺",
  930. "动漫"
  931. ]
  932. },
  933. {
  934. "key": "金牌影视",
  935. "name": "金牌|影视",
  936. "type": 3,
  937. "api": "https://gitee.com/PizazzXS/another-d/raw/master/movie/py/JPYS.py",
  938. "searchable": 1,
  939. "quickSearch": 1,
  940. "filterable": 1,
  941. "ext": {
  942. "site": "https://m.hkybqufgh.com,https://m.sizhengxt.com,https://m.9zhoukj.com,https://m.sizhengxt.com,https://m.jiabaide.cn"
  943. }
  944. },
  945. {
  946. "key": "猎手影视",
  947. "name": "猎手|影视",
  948. "type": 3,
  949. "api": "https://gitee.com/PizazzXS/another-d/raw/master/movie/py/LSYS.py",
  950. "searchable": 1,
  951. "changeable": 1,
  952. "quickSearch": 1,
  953. "filterable": 1
  954. },
  955. {
  956. "key": "厂长影视",
  957. "name": "厂长|影视",
  958. "type": 3,
  959. "playerType": "2",
  960. "api": "csp_Czsapp",
  961. "searchable": 1,
  962. "quickSearch": 1,
  963. "filterable": 1,
  964. "ext": "https://www.czzymovie.com/"
  965. },
  966. {
  967. "key": "绝对影视",
  968. "name": "绝对|影视",
  969. "type": 3,
  970. "api": "csp_FourK",
  971. "ext": "https://www.4kvm.tv"
  972. },
  973. {
  974. "key": "云播影视",
  975. "name": "云播|影视",
  976. "type": 3,
  977. "api": "csp_Tvyb",
  978. "ext": "http://www.viptv01.com"
  979. },
  980. {
  981. "key": "奇优影视",
  982. "name": "奇优|影视",
  983. "type": 3,
  984. "api": "csp_Qiyou"
  985. },
  986. {
  987. "key": "苹果影视",
  988. "name": "苹果|影视",
  989. "type": 3,
  990. "api": "csp_LiteApple",
  991. "searchable": 1,
  992. "quickSearch": 1,
  993. "filterable": 1
  994. },
  995. {
  996. "key": "全网影视",
  997. "name": "全看|影视",
  998. "type": 3,
  999. "api": "csp_Quanwk",
  1000. "ext": "https://www.91qkw.com"
  1001. },
  1002. {
  1003. "key": "饺子影视",
  1004. "name": "饺子|影视",
  1005. "type": 3,
  1006. "api": "csp_Jiaozi"
  1007. },
  1008. {
  1009. "key": "鸭梨影视",
  1010. "name": "鸭梨|影视",
  1011. "type": 3,
  1012. "api": "csp_KmeiJu"
  1013. },
  1014. {
  1015. "key": "白白影视",
  1016. "name": "白白|影视",
  1017. "type": 3,
  1018. "api": "csp_SuBaiBai",
  1019. "ext": "https://www.subaibai.com"
  1020. },
  1021. {
  1022. "key": "低端影视",
  1023. "name": "低端|影视",
  1024. "type": 3,
  1025. "api": "csp_Ddys",
  1026. "searchable": 1,
  1027. "quickSearch": 1,
  1028. "filterable": 1
  1029. },
  1030. {
  1031. "key": "瓜子影视",
  1032. "name": "瓜子|影视",
  1033. "type": 3,
  1034. "api": "csp_Gz360",
  1035. "searchable": 1,
  1036. "quickSearch": 1,
  1037. "filterable": 1
  1038. },
  1039. {
  1040. "key": "采集之王",
  1041. "name": "采集|合集",
  1042. "type": 3,
  1043. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  1044. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/js/CJZW.js?type=url&params=https://gitee.com/PizazzXS/another-d/raw/master/movie/json/CJJT.json$1$1"
  1045. },
  1046. {
  1047. "key": "爱看机器人",
  1048. "name": "爱看|影视",
  1049. "type": 3,
  1050. "api": "csp_Ikanbot",
  1051. "searchable": 1,
  1052. "quickSearch": 1,
  1053. "filterable": 1
  1054. },
  1055. {
  1056. "key": "面包影视",
  1057. "name": "面包|影视",
  1058. "type": 3,
  1059. "api": "csp_XBPQ",
  1060. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/MBYS.json"
  1061. },
  1062. {
  1063. "key": "永乐影视",
  1064. "name": "永乐|影视",
  1065. "type": 3,
  1066. "api": "csp_XBPQ",
  1067. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/YLYS.json"
  1068. },
  1069. {
  1070. "key": "雪糕影视",
  1071. "name": "雪糕|影视",
  1072. "type": 3,
  1073. "api": "csp_XBPQ",
  1074. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/XGYS.json"
  1075. },
  1076. {
  1077. "key": "骚火影视",
  1078. "name": "骚火|影视",
  1079. "type": 3,
  1080. "api": "csp_XBPQ",
  1081. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/SHYS.json"
  1082. },
  1083. {
  1084. "key": "七点影视",
  1085. "name": "七点|影视",
  1086. "type": 3,
  1087. "api": "csp_XBPQ",
  1088. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/QDYS.json"
  1089. },
  1090. {
  1091. "key": "三九影视",
  1092. "name": "三九|影视",
  1093. "type": 3,
  1094. "api": "csp_XBPQ",
  1095. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/SJYS.json"
  1096. },
  1097. {
  1098. "key": "三四影视",
  1099. "name": "三四|影视",
  1100. "type": 3,
  1101. "api": "csp_XBPQ",
  1102. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/SSYS.json"
  1103. },
  1104. {
  1105. "key": "农民影视",
  1106. "name": "农民|影视",
  1107. "type": 3,
  1108. "api": "csp_XYQHiker",
  1109. "searchable": 1,
  1110. "quickSearch": 1,
  1111. "filterable": 1,
  1112. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/NMYS.json"
  1113. },
  1114. {
  1115. "key": "盒子影视",
  1116. "name": "盒子|影视",
  1117. "type": 3,
  1118. "api": "csp_XYQHiker",
  1119. "searchable": 1,
  1120. "quickSearch": 1,
  1121. "filterable": 1,
  1122. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/HZYS.json"
  1123. },
  1124. {
  1125. "key": "电影牛",
  1126. "name": "影牛|影视",
  1127. "type": 3,
  1128. "api": "csp_XYQHiker",
  1129. "searchable": 1,
  1130. "quickSearch": 1,
  1131. "filterable": 1,
  1132. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/DYN.json"
  1133. },
  1134. {
  1135. "key": "剧圈圈",
  1136. "name": "剧圈|影视",
  1137. "type": 3,
  1138. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  1139. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/js/JQQ.js"
  1140. },
  1141. {
  1142. "key": "1905",
  1143. "name": "1905|影视",
  1144. "type": 3,
  1145. "api": "csp_Web1905",
  1146. "searchable": 1,
  1147. "quickSearch": 0,
  1148. "filterable": 0
  1149. },
  1150. {
  1151. "key": "哆啦新番社",
  1152. "name": "哆啦|新番社",
  1153. "type": 3,
  1154. "api": "csp_XBPQ",
  1155. "style": {
  1156. "type": "list"
  1157. },
  1158. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/json/DLXFS.json"
  1159. },
  1160. {
  1161. "key": "56动漫",
  1162. "name": "56|动漫",
  1163. "type": 3,
  1164. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  1165. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/56DM.js"
  1166. },
  1167. {
  1168. "key": "NT动漫",
  1169. "name": "NT|动漫",
  1170. "type": 3,
  1171. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  1172. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/NTDM.js"
  1173. },
  1174. {
  1175. "key": "Anime1",
  1176. "name": "A1|动漫",
  1177. "type": 3,
  1178. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  1179. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/Anime1.js"
  1180. },
  1181. {
  1182. "key": "曼波动漫",
  1183. "name": "曼波|动漫",
  1184. "type": 3,
  1185. "quickSearch": 1,
  1186. "api": "csp_AppGet",
  1187. "ext": {
  1188. "url": "https://app.omofun1.top",
  1189. "dataKey": "66dc309cbeeca454",
  1190. "dataIv": "66dc309cbeeca454",
  1191. "deviceId": "",
  1192. "version": ""
  1193. }
  1194. },
  1195. {
  1196. "key": "稀饭动漫",
  1197. "name": "稀饭|动漫",
  1198. "type": 3,
  1199. "quickSearch": 1,
  1200. "api": "csp_AppGet",
  1201. "ext": {
  1202. "url": "",
  1203. "site": "https://xfapp-1305390065.cos.ap-guangzhou.myqcloud.com/getapp.txt",
  1204. "dataKey": "1yZ2Spn9krnzVKoC",
  1205. "dataIv": "1yZ2Spn9krnzVKoC",
  1206. "deviceId": "",
  1207. "version": ""
  1208. }
  1209. },
  1210. {
  1211. "key": "咕咕动漫",
  1212. "name": "咕咕|动漫",
  1213. "type": 3,
  1214. "quickSearch": 1,
  1215. "api": "csp_AppGet",
  1216. "ext": {
  1217. "url": "https://www.gugu3.com",
  1218. "dataKey": "nKfZ8KX6JTNWRzTD",
  1219. "dataIv": "nKfZ8KX6JTNWRzTD",
  1220. "deviceId": "",
  1221. "version": ""
  1222. }
  1223. },
  1224. {
  1225. "key": "多多动漫",
  1226. "name": "多多|动漫",
  1227. "type": 3,
  1228. "quickSearch": 1,
  1229. "api": "csp_AppGet",
  1230. "ext": {
  1231. "url": "",
  1232. "site": "https://app.cf4k.xyz/1.txt",
  1233. "dataKey": "qqqqqqqqqqqqqqqq",
  1234. "dataIv": "qqqqqqqqqqqqqqqq",
  1235. "deviceId": "",
  1236. "version": ""
  1237. }
  1238. },
  1239. {
  1240. "key": "次元动漫",
  1241. "name": "次元|动漫",
  1242. "type": 3,
  1243. "quickSearch": 1,
  1244. "api": "csp_AppGet",
  1245. "ext": {
  1246. "url": "https://jjjj.nilinili.org",
  1247. "dataKey": "672263e98f232a05",
  1248. "dataIv": "672263e98f232a05",
  1249. "deviceId": "",
  1250. "version": "170"
  1251. }
  1252. },
  1253. {
  1254. "key": "派对动漫",
  1255. "name": "派对|动漫",
  1256. "type": 3,
  1257. "quickSearch": 1,
  1258. "api": "csp_AppGet",
  1259. "ext": {
  1260. "url": "https://qjappcms.acg.party",
  1261. "dataKey": "AmtMYFCJDPoTlK7z",
  1262. "dataIv": "AmtMYFCJDPoTlK7z",
  1263. "deviceId": "",
  1264. "version": ""
  1265. }
  1266. },
  1267. {
  1268. "key": "黑猫动漫",
  1269. "name": "黑猫|动漫",
  1270. "type": 3,
  1271. "quickSearch": 1,
  1272. "api": "csp_AppGet",
  1273. "ext": {
  1274. "url": "https://dm.xxdm123.top:9991",
  1275. "dataKey": "0fe3b5781782c621",
  1276. "dataIv": "0fe3b5781782c621",
  1277. "deviceId": "",
  1278. "version": "203"
  1279. }
  1280. },
  1281. {
  1282. "key": "樱花动漫",
  1283. "name": "樱花|动漫",
  1284. "type": 3,
  1285. "api": "csp_XBPQ",
  1286. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/json/YHDM.json"
  1287. },
  1288. {
  1289. "key": "巴士动漫",
  1290. "name": "巴士|动漫",
  1291. "type": 3,
  1292. "api": "csp_XYQHiker",
  1293. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/json/bsdm.json"
  1294. },
  1295. {
  1296. "key": "好看动漫",
  1297. "name": "好看|动漫",
  1298. "type": 3,
  1299. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  1300. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/HKDM.js"
  1301. },
  1302. {
  1303. "key": "奇米动漫",
  1304. "name": "奇米|动漫",
  1305. "type": 3,
  1306. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  1307. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/QMDM.js"
  1308. },
  1309. {
  1310. "key": "花子动漫",
  1311. "name": "花子|动漫",
  1312. "type": 3,
  1313. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  1314. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/HZDM.js"
  1315. },
  1316. {
  1317. "key": "动画片",
  1318. "name": "动画片|动漫",
  1319. "type": 3,
  1320. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  1321. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/DHPDQ.js"
  1322. },
  1323. {
  1324. "key": "路漫漫",
  1325. "name": "路漫漫|动漫",
  1326. "type": 3,
  1327. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  1328. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/LMM.js"
  1329. },
  1330. {
  1331. "key": "动漫岛",
  1332. "name": "动漫岛|动漫",
  1333. "type": 3,
  1334. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  1335. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/DMD.js"
  1336. },
  1337. {
  1338. "key": "去看吧",
  1339. "name": "去看吧|动漫",
  1340. "type": 3,
  1341. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  1342. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/QKB.js"
  1343. },
  1344. {
  1345. "key": "爱弹幕",
  1346. "name": "爱弹幕|动漫",
  1347. "type": 3,
  1348. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  1349. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/ADM.js"
  1350. },
  1351. {
  1352. "key": "异世界",
  1353. "name": "异世界|动漫",
  1354. "type": 3,
  1355. "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
  1356. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/YSJ.js"
  1357. },
  1358. {
  1359. "key": "荐片",
  1360. "name": "荐片|磁力",
  1361. "api": "csp_Jianpian",
  1362. "type": 3
  1363. },
  1364. {
  1365. "key": "修罗影视",
  1366. "name": "修罗|磁力",
  1367. "type": 3,
  1368. "api": "csp_XBPQ",
  1369. "searchable": 1,
  1370. "quickSearch": 1,
  1371. "filterable": 1,
  1372. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/XLYS.json"
  1373. },
  1374. {
  1375. "key": "七味",
  1376. "name": "七味|磁力",
  1377. "type": 3,
  1378. "api": "csp_QnMp4",
  1379. "searchable": 1,
  1380. "quickSearch": 1,
  1381. "filterable": 1,
  1382. "ext": {
  1383. "url": "https://www.pkmp4.xyz,https://www.qwnull.com,https://www.qwmkv.com,https://www.qwfilm.com,https://www.qnmp4.com,https://www.qnnull.com,https://www.qnhot.com"
  1384. }
  1385. },
  1386. {
  1387. "key": "80S",
  1388. "name": "80S|磁力",
  1389. "type": 3,
  1390. "api": "csp_BLSGod",
  1391. "playerType": 1,
  1392. "searchable": 1,
  1393. "quickSearch": 1,
  1394. "filterable": 1
  1395. },
  1396. {
  1397. "key": "New6v",
  1398. "name": "New6V|磁力",
  1399. "type": 3,
  1400. "api": "csp_New6v",
  1401. "searchable": 1,
  1402. "quickSearch": 1,
  1403. "filterable": 1,
  1404. "ext": "https://www.xb6v.com"
  1405. },
  1406. {
  1407. "key": "美剧迷",
  1408. "name": "美剧迷|磁力",
  1409. "type": 3,
  1410. "api": "csp_MeijuMi",
  1411. "searchable": 1,
  1412. "quickSearch": 1,
  1413. "filterable": 1
  1414. },
  1415. {
  1416. "key": "迅雷吧",
  1417. "name": "迅雷吧|磁力",
  1418. "type": 3,
  1419. "api": "csp_Xunlei8",
  1420. "searchable": 1,
  1421. "quickSearch": 1,
  1422. "filterable": 1
  1423. },
  1424. {
  1425. "key": "电影港",
  1426. "name": "电影港|磁力",
  1427. "type": 3,
  1428. "api": "csp_XYQHiker",
  1429. "searchable": 1,
  1430. "quickSearch": 1,
  1431. "filterable": 1,
  1432. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/magnet/json/DYG.json"
  1433. },
  1434. {
  1435. "key": "狐狸君",
  1436. "name": "狐狸君|磁力",
  1437. "type": 3,
  1438. "api": "csp_XBPQ",
  1439. "changeable": 1,
  1440. "searchable": 1,
  1441. "quickSearch": 1,
  1442. "filterable": 1,
  1443. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/magnet/json/HLJ.json"
  1444. },
  1445. {
  1446. "key": "Mp4电影",
  1447. "name": "Mp4电影|磁力",
  1448. "type": 3,
  1449. "api": "csp_Mp4Mov",
  1450. "searchable": 1,
  1451. "quickSearch": 1,
  1452. "filterable": 1
  1453. },
  1454. {
  1455. "key": "美剧天堂",
  1456. "name": "美剧天堂|磁力",
  1457. "type": 3,
  1458. "api": "csp_MeijuTT",
  1459. "searchable": 1,
  1460. "quickSearch": 1,
  1461. "filterable": 1
  1462. },
  1463. {
  1464. "key": "电影天堂",
  1465. "name": "电影天堂|磁力",
  1466. "type": 3,
  1467. "api": "csp_DyGod",
  1468. "searchable": 1,
  1469. "quickSearch": 1,
  1470. "filterable": 1
  1471. },
  1472. {
  1473. "key": "夸克云盘",
  1474. "name": "夸克|云盘",
  1475. "type": 3,
  1476. "api": "csp_PanQuark",
  1477. "searchable": 0,
  1478. "filterable": 0,
  1479. "changeable": 0,
  1480. "style": {
  1481. "type": "list",
  1482. "ratio": 1.433
  1483. },
  1484. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/quarkShare.json"
  1485. },
  1486. {
  1487. "key": "UC",
  1488. "name": "UC|云盘",
  1489. "type": 3,
  1490. "api": "csp_PanUc",
  1491. "searchable": 0,
  1492. "filterable": 0,
  1493. "changeable": 0,
  1494. "style": {
  1495. "type": "list",
  1496. "ratio": 1.433
  1497. },
  1498. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/ucShare.json"
  1499. },
  1500. {
  1501. "key": "百度云盘",
  1502. "name": "百度|云盘",
  1503. "type": 3,
  1504. "api": "csp_PanBaiDu",
  1505. "searchable": 0,
  1506. "filterable": 0,
  1507. "changeable": 0,
  1508. "style": {
  1509. "type": "list",
  1510. "ratio": 1.433
  1511. }
  1512. },
  1513. {
  1514. "key": "AList",
  1515. "name": "AList|合集",
  1516. "type": 3,
  1517. "api": "csp_Alist",
  1518. "searchable": 1,
  1519. "filterable": 1,
  1520. "changeable": 0,
  1521. "style": {
  1522. "type": "list"
  1523. },
  1524. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/alist.json"
  1525. },
  1526. {
  1527. "key": "88看球",
  1528. "name": "88|看球",
  1529. "type": 3,
  1530. "api": "csp_Kanqiu",
  1531. "gridview": 3,
  1532. "style": {
  1533. "type": "list"
  1534. }
  1535. },
  1536. {
  1537. "key": "网络直播",
  1538. "name": "网络|直播",
  1539. "type": 3,
  1540. "api": "https://gitee.com/PizazzXS/another-d/raw/master/webcast/py/WLZB.py"
  1541. },
  1542. {
  1543. "key": "哔哩直播",
  1544. "name": "哔哩|直播",
  1545. "type": 3,
  1546. "api": "https://gitee.com/PizazzXS/another-d/raw/master/webcast/py/BLZB.py"
  1547. },
  1548. {
  1549. "key": "哔哩合集",
  1550. "name": "哔哩|合集",
  1551. "type": 3,
  1552. "api": "csp_Bili",
  1553. "searchable": 1,
  1554. "quickSearch": 0,
  1555. "filterable": 0,
  1556. "changeable": 0,
  1557. "style": {
  1558. "type": "rect",
  1559. "ratio": 1.433
  1560. },
  1561. "ext": {
  1562. "json": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/BLHJ.json",
  1563. "cookie": "http://127.0.0.1:9978/file/TVBox/bili_cookie.txt"
  1564. }
  1565. },
  1566. {
  1567. "key": "哔哩哔哩戏曲",
  1568. "name": "哔哩|音乐",
  1569. "type": 3,
  1570. "api": "csp_Bili",
  1571. "searchable": 0,
  1572. "quickSearch": 0,
  1573. "filterable": 0,
  1574. "ext": {
  1575. "cookie": "http://127.0.0.1:9978/file/TVBox/bili_cookie.txt",
  1576. "json": "https://gitee.com/PizazzXS/another-d/raw/master/other/json/BLYCH.json"
  1577. },
  1578. "style": {
  1579. "type": "rect",
  1580. "ratio": 1.597
  1581. }
  1582. },
  1583. {
  1584. "key": "哔哩哔哩听书",
  1585. "name": "哔哩|听书",
  1586. "type": 3,
  1587. "api": "csp_Bili",
  1588. "searchable": 0,
  1589. "quickSearch": 0,
  1590. "filterable": 0,
  1591. "ext": {
  1592. "cookie": "http://127.0.0.1:9978/file/TVBox/bili_cookie.txt",
  1593. "json": "https://gitee.com/PizazzXS/another-d/raw/master/other/json/BLTS.json"
  1594. },
  1595. "style": {
  1596. "type": "rect",
  1597. "ratio": 1.597
  1598. }
  1599. },
  1600. {
  1601. "key": "哔哩哔哩相声",
  1602. "name": "哔哩|相声",
  1603. "type": 3,
  1604. "api": "csp_Bili",
  1605. "searchable": 0,
  1606. "quickSearch": 0,
  1607. "filterable": 0,
  1608. "ext": {
  1609. "cookie": "http://127.0.0.1:9978/file/TVBox/bili_cookie.txt",
  1610. "json": "https://gitee.com/PizazzXS/another-d/raw/master/other/json/BLXS.json"
  1611. },
  1612. "style": {
  1613. "type": "rect",
  1614. "ratio": 1.597
  1615. }
  1616. },
  1617. {
  1618. "key": "哔哩哔哩小品",
  1619. "name": "哔哩|小品",
  1620. "type": 3,
  1621. "api": "csp_Bili",
  1622. "searchable": 0,
  1623. "quickSearch": 0,
  1624. "filterable": 0,
  1625. "ext": {
  1626. "cookie": "http://127.0.0.1:9978/file/TVBox/bili_cookie.txt",
  1627. "json": "https://gitee.com/PizazzXS/another-d/raw/master/other/json/BLXP.json"
  1628. },
  1629. "style": {
  1630. "type": "rect",
  1631. "ratio": 1.597
  1632. }
  1633. },
  1634. {
  1635. "key": "哔哩哔哩戏曲",
  1636. "name": "哔哩|戏曲",
  1637. "type": 3,
  1638. "api": "csp_Bili",
  1639. "searchable": 0,
  1640. "quickSearch": 0,
  1641. "filterable": 0,
  1642. "ext": {
  1643. "cookie": "http://127.0.0.1:9978/file/TVBox/bili_cookie.txt",
  1644. "json": "https://gitee.com/PizazzXS/another-d/raw/master/other/json/BLXQ.json"
  1645. },
  1646. "style": {
  1647. "type": "rect",
  1648. "ratio": 1.597
  1649. }
  1650. },
  1651. {
  1652. "key": "急救教学",
  1653. "name": "急救|教学",
  1654. "type": 3,
  1655. "api": "csp_FirstAid",
  1656. "searchable": 0,
  1657. "quickSearch": 0,
  1658. "changeable": 0,
  1659. "style": {
  1660. "type": "rect",
  1661. "ratio": 3.8
  1662. },
  1663. "gridview": "0-0-4.1"
  1664. },
  1665. {
  1666. "key": "养生堂",
  1667. "name": "养生|知识",
  1668. "type": 3,
  1669. "api": "csp_XBPQ",
  1670. "ext": "https://gitee.com/PizazzXS/another-d/raw/master/other/json/YST.json",
  1671. "style": {
  1672. "type": "rect",
  1673. "ratio": 1.597
  1674. }
  1675. },
  1676. {
  1677. "key": "push_agent",
  1678. "name": "手机|推送",
  1679. "type": 3,
  1680. "api": "csp_Push",
  1681. "searchable": 0,
  1682. "filterable": 0,
  1683. "changeable": 0
  1684. }
  1685. ],
  1686. "parses": [
  1687. {
  1688. "name": "无上",
  1689. "type": "1",
  1690. "url": "https://mfjx.iwsyy.xyz/?url=",
  1691. "ext": {
  1692. "flag": [
  1693. "qq",
  1694. "腾讯",
  1695. "qiyi",
  1696. "爱奇艺",
  1697. "奇艺",
  1698. "youku",
  1699. "优酷",
  1700. "sohu",
  1701. "搜狐",
  1702. "letv",
  1703. "乐视",
  1704. "mgtv",
  1705. "芒果",
  1706. "tnmb",
  1707. "seven",
  1708. "bilibili",
  1709. "1905"
  1710. ],
  1711. "header": {
  1712. "User-Agent": "okhttp/4.9.1"
  1713. }
  1714. }
  1715. },
  1716. {
  1717. "name": "巧计",
  1718. "type": 1,
  1719. "url": "https://zy.qiaoji8.com/xiafan.php?url=",
  1720. "ext": {
  1721. "flag": [
  1722. "QD4K",
  1723. "iyf",
  1724. "duanju",
  1725. "gzcj",
  1726. "GTV",
  1727. "GZYS",
  1728. "weggz",
  1729. "Ace"
  1730. ],
  1731. "header": {
  1732. "User-Agent": "okhttp/4.9.1"
  1733. }
  1734. }
  1735. },
  1736. {
  1737. "name": "咸鱼",
  1738. "type": 0,
  1739. "url": "https://jx.xymp4.cc/?url=",
  1740. "ext": {
  1741. "header": {
  1742. "user-agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.3124.68"
  1743. }
  1744. }
  1745. },
  1746. {
  1747. "name": "虾米",
  1748. "type": 0,
  1749. "url": "https://jx.xmflv.com/?url=",
  1750. "ext": {
  1751. "header": {
  1752. "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"
  1753. }
  1754. }
  1755. },
  1756. {
  1757. "name": "淘片",
  1758. "type": 0,
  1759. "url": "https://jx.yparse.com/index.php?url=",
  1760. "ext": {
  1761. "header": {
  1762. "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"
  1763. }
  1764. }
  1765. },
  1766. {
  1767. "name": "冰豆",
  1768. "type": 0,
  1769. "url": "https://bd.jx.cn/?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": "七七",
  1778. "type": 0,
  1779. "url": "https://jx.77flv.cc/?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": "盘古",
  1788. "type": 0,
  1789. "url": "https://www.playm3u8.cn/jiexi.php?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. }
  1794. }
  1795. },
  1796. {
  1797. "name": "夜幕",
  1798. "type": 0,
  1799. "url": "https://yemu.xyz/?url=",
  1800. "ext": {
  1801. "header": {
  1802. "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"
  1803. }
  1804. }
  1805. }
  1806. ],
  1807. "rules": [
  1808. {
  1809. "name": "农民",
  1810. "hosts": [
  1811. "toutiaovod.com"
  1812. ],
  1813. "regex": [
  1814. "video/tos/cn"
  1815. ]
  1816. },
  1817. {
  1818. "name": "火山",
  1819. "hosts": [
  1820. "huoshan.com"
  1821. ],
  1822. "regex": [
  1823. "item_id="
  1824. ]
  1825. },
  1826. {
  1827. "name": "抖音",
  1828. "hosts": [
  1829. "douyin.com"
  1830. ],
  1831. "regex": [
  1832. "is_play_url="
  1833. ]
  1834. },
  1835. {
  1836. "name": "饭团点击",
  1837. "hosts": [
  1838. "dadagui",
  1839. "freeok",
  1840. "dadagui"
  1841. ],
  1842. "script": [
  1843. "document.querySelector(\"#playleft iframe\").contentWindow.document.querySelector(\"#start\").click();"
  1844. ]
  1845. },
  1846. {
  1847. "name": "毛驴点击",
  1848. "hosts": [
  1849. "www.maolvys.com"
  1850. ],
  1851. "script": [
  1852. "document.getElementsByClassName('swal-button swal-button--confirm')[0].click()"
  1853. ]
  1854. },
  1855. {
  1856. "name": "ofiii",
  1857. "hosts": [
  1858. "www.ofiii.com"
  1859. ],
  1860. "script": [
  1861. "const play=document.getElementsByClassName('play_icon')[0],event=new MouseEvent('click',{bubbles:!0,cancelable:!0,view:window,screenX:100,screenY:100,clientX:50,clientY:50,button:0,shiftKey:!1,ctrlKey:!1,altKey:!1,metaKey:!1,modifierState:0});play.dispatchEvent(event);"
  1862. ]
  1863. }
  1864. ],
  1865. "doh": [
  1866. {
  1867. "name": "Google",
  1868. "url": "https://dns.google/dns-query",
  1869. "ips": [
  1870. "8.8.4.4",
  1871. "8.8.8.8"
  1872. ]
  1873. },
  1874. {
  1875. "name": "Cloudflare",
  1876. "url": "https://cloudflare-dns.com/dns-query",
  1877. "ips": [
  1878. "1.1.1.1",
  1879. "1.0.0.1",
  1880. "2606:4700:4700::1111",
  1881. "2606:4700:4700::1001"
  1882. ]
  1883. },
  1884. {
  1885. "name": "AdGuard",
  1886. "url": "https://dns.adguard.com/dns-query",
  1887. "ips": [
  1888. "94.140.14.140",
  1889. "94.140.14.141"
  1890. ]
  1891. },
  1892. {
  1893. "name": "DNSWatch",
  1894. "url": "https://resolver2.dns.watch/dns-query",
  1895. "ips": [
  1896. "84.200.69.80",
  1897. "84.200.70.40"
  1898. ]
  1899. },
  1900. {
  1901. "name": "Quad9",
  1902. "url": "https://dns.quad9.net/dns-quer",
  1903. "ips": [
  1904. "9.9.9.9",
  1905. "149.112.112.112"
  1906. ]
  1907. }
  1908. ],
  1909. "lives": [],
  1910. "hosts": [
  1911. "cache.ott.*.itv.cmvideo.cn=base-v4-free-mghy.e.cdn.chinamobile.com",
  1912. "cache.ott.ystenlive.itv.cmvideo.cn=base-v4-free-mghy.e.cdn.chinamobile.com",
  1913. "cache.ott.bestlive.itv.cmvideo.cn=base-v4-free-mghy.e.cdn.chinamobile.com",
  1914. "cache.ott.wasulive.itv.cmvideo.cn=base-v4-free-mghy.e.cdn.chinamobile.com",
  1915. "cache.ott.fifalive.itv.cmvideo.cn=base-v4-free-mghy.e.cdn.chinamobile.com",
  1916. "cache.ott.hnbblive.itv.cmvideo.cn=base-v4-free-mghy.e.cdn.chinamobile.com"
  1917. ],
  1918. "flags": [
  1919. "youku",
  1920. "优酷",
  1921. "优 酷",
  1922. "优酷视频",
  1923. "qq",
  1924. "腾讯",
  1925. "腾 讯",
  1926. "腾讯视频",
  1927. "iqiyi",
  1928. "qiyi",
  1929. "奇艺",
  1930. "爱奇艺",
  1931. "爱 奇 艺",
  1932. "m1905",
  1933. "xigua",
  1934. "letv",
  1935. "leshi",
  1936. "乐视",
  1937. "乐 视",
  1938. "sohu",
  1939. "搜狐",
  1940. "搜 狐",
  1941. "搜狐视频",
  1942. "tudou",
  1943. "pptv",
  1944. "mgtv",
  1945. "芒果",
  1946. "imgo",
  1947. "芒果TV",
  1948. "芒 果 T V",
  1949. "bilibili",
  1950. "哔 哩",
  1951. "哔 哩 哔 哩"
  1952. ],
  1953. "ijk": [
  1954. {
  1955. "group": "软解码",
  1956. "options": [
  1957. {
  1958. "category": 4,
  1959. "name": "opensles",
  1960. "value": "0"
  1961. },
  1962. {
  1963. "category": 4,
  1964. "name": "overlay-format",
  1965. "value": "842225234"
  1966. },
  1967. {
  1968. "category": 4,
  1969. "name": "framedrop",
  1970. "value": "1"
  1971. },
  1972. {
  1973. "category": 4,
  1974. "name": "soundtouch",
  1975. "value": "1"
  1976. },
  1977. {
  1978. "category": 4,
  1979. "name": "start-on-prepared",
  1980. "value": "1"
  1981. },
  1982. {
  1983. "category": 1,
  1984. "name": "http-detect-range-support",
  1985. "value": "0"
  1986. },
  1987. {
  1988. "category": 1,
  1989. "name": "fflags",
  1990. "value": "fastseek"
  1991. },
  1992. {
  1993. "category": 2,
  1994. "name": "skip_loop_filter",
  1995. "value": "48"
  1996. },
  1997. {
  1998. "category": 4,
  1999. "name": "reconnect",
  2000. "value": "1"
  2001. },
  2002. {
  2003. "category": 4,
  2004. "name": "enable-accurate-seek",
  2005. "value": "0"
  2006. },
  2007. {
  2008. "category": 4,
  2009. "name": "mediacodec",
  2010. "value": "0"
  2011. },
  2012. {
  2013. "category": 4,
  2014. "name": "mediacodec-auto-rotate",
  2015. "value": "0"
  2016. },
  2017. {
  2018. "category": 4,
  2019. "name": "mediacodec-handle-resolution-change",
  2020. "value": "0"
  2021. },
  2022. {
  2023. "category": 4,
  2024. "name": "mediacodec-hevc",
  2025. "value": "0"
  2026. },
  2027. {
  2028. "category": 1,
  2029. "name": "dns_cache_timeout",
  2030. "value": "600000000"
  2031. }
  2032. ]
  2033. },
  2034. {
  2035. "group": "硬解码",
  2036. "options": [
  2037. {
  2038. "category": 4,
  2039. "name": "opensles",
  2040. "value": "0"
  2041. },
  2042. {
  2043. "category": 4,
  2044. "name": "overlay-format",
  2045. "value": "842225234"
  2046. },
  2047. {
  2048. "category": 4,
  2049. "name": "framedrop",
  2050. "value": "1"
  2051. },
  2052. {
  2053. "category": 4,
  2054. "name": "soundtouch",
  2055. "value": "1"
  2056. },
  2057. {
  2058. "category": 4,
  2059. "name": "start-on-prepared",
  2060. "value": "1"
  2061. },
  2062. {
  2063. "category": 1,
  2064. "name": "http-detect-range-support",
  2065. "value": "0"
  2066. },
  2067. {
  2068. "category": 1,
  2069. "name": "fflags",
  2070. "value": "fastseek"
  2071. },
  2072. {
  2073. "category": 2,
  2074. "name": "skip_loop_filter",
  2075. "value": "48"
  2076. },
  2077. {
  2078. "category": 4,
  2079. "name": "reconnect",
  2080. "value": "1"
  2081. },
  2082. {
  2083. "category": 4,
  2084. "name": "enable-accurate-seek",
  2085. "value": "0"
  2086. },
  2087. {
  2088. "category": 4,
  2089. "name": "mediacodec",
  2090. "value": "1"
  2091. },
  2092. {
  2093. "category": 4,
  2094. "name": "mediacodec-auto-rotate",
  2095. "value": "1"
  2096. },
  2097. {
  2098. "category": 4,
  2099. "name": "mediacodec-handle-resolution-change",
  2100. "value": "1"
  2101. },
  2102. {
  2103. "category": 4,
  2104. "name": "mediacodec-hevc",
  2105. "value": "1"
  2106. },
  2107. {
  2108. "category": 1,
  2109. "name": "dns_cache_timeout",
  2110. "value": "600000000"
  2111. }
  2112. ]
  2113. }
  2114. ],
  2115. "ads": [
  2116. "static-mozai.4gtv.tv"
  2117. ]
  2118. }