api.json 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968
  1. //关注微信公众号:奇奇乐分享,发送“本地包”,获取本地包更新链接与图文教程。
  2. {
  3. "wallpaper": "https://o.nxog.top/m//t/",
  4. "logo": "https://o.nxog.top/m//LOGO2.gif",
  5. "spider": "./spider.jar",
  6. "warningText": "o提示:\n📢接口软件永远免费 \n📢长期维护切勿贩卖\n📢智能AI已过滤广告",
  7. "lives": [
  8. {
  9. "name": "o",
  10. "type": 0,
  11. "url": "./lives/o.txt",
  12. "epg": ""
  13. }
  14. ],
  15. "sites": [
  16. {
  17. "key": "豆瓣2",
  18. "name": "📢o榜单nxog.top",
  19. "type": 3,
  20. "api": "csp_Douban",
  21. "searchable": 0
  22. },
  23. {
  24. "key": "豆瓣1",
  25. "name": "📢o公告❤更新:12/18❤",
  26. "type": 3,
  27. "api": "csp_Notice",
  28. "searchable": 0,
  29. "changeable": 0,
  30. "jar": "./jars/豆瓣1.jar",
  31. "ext": "https://nxog.top/%E5%85%AC%E4%BC%97%E5%8F%B7%E6%AC%A7%E6%AD%8CAPP/ts/?b=o"
  32. },
  33. {
  34. "key": "csp_woog",
  35. "name": "🐲欧歌┃4K",
  36. "type": 3,
  37. "api": "csp_woog",
  38. "changeable": 0,
  39. "filterable": 1,
  40. "jar": "./jars/csp_woog.jar",
  41. "ext": {
  42. "site_urls": [
  43. "https://woog.nxog.eu.org",
  44. "https://ogog.nxog.eu.org",
  45. "http://woog.nxog.asia",
  46. "http://1.woog.xn--dkw.xn--6qq986b3xl"
  47. ]
  48. }
  49. },
  50. {
  51. "key": "欧歌js",
  52. "name": "🐲欧歌┃夸速4k",
  53. "type": 3,
  54. "api": "./api/4k.min.js",
  55. "ext": "./js/og4K.js",
  56. "searchable": 1,
  57. "quickSearch": 1,
  58. "filterable": 1
  59. },
  60. {
  61. "key": "csp_欧歌G",
  62. "name": "🐲欧歌4K┃配置",
  63. "type": 3,
  64. "api": "csp_Config",
  65. "searchable": 0,
  66. "quickSearch": 0,
  67. "filterable": 1,
  68. "jar": "./jars/csp_欧歌G.jar"
  69. },
  70. {
  71. "key": "配置中心",
  72. "name": "❤通用┃配置",
  73. "type": 3,
  74. "api": "csp_Config",
  75. "searchable": 0,
  76. "changeable": 0,
  77. "style": {
  78. "type": "rect",
  79. "ratio": 1.597
  80. }
  81. },
  82. {
  83. "key": "荐片",
  84. "name": "💡荐片|影视",
  85. "type": 3,
  86. "api": "csp_Jianpian",
  87. "playerType": 1,
  88. "searchable": 1,
  89. "quickSearch": 1,
  90. "filterable": 1
  91. },
  92. {
  93. "key": "天天",
  94. "name": "💡天天┃影视",
  95. "type": 3,
  96. "api": "csp_AppTT",
  97. "searchable": 1,
  98. "quickSearch": 1,
  99. "filterable": 1
  100. },
  101. {
  102. "key": "韩小圈",
  103. "name": "💡韩小|影视",
  104. "type": 3,
  105. "api": "csp_HanXiaoQuan",
  106. "searchable": 1,
  107. "quickSearch": 1,
  108. "filterable": 1
  109. },
  110. {
  111. "key": "快看影视",
  112. "name": "💡快看|影视",
  113. "type": 3,
  114. "api": "csp_Kuaikan",
  115. "searchable": 1,
  116. "quickSearch": 1,
  117. "filterable": 1
  118. },
  119. {
  120. "key": "热播影视",
  121. "name": "💡热播|影视",
  122. "type": 3,
  123. "api": "csp_AppRB",
  124. "searchable": 1,
  125. "quickSearch": 1,
  126. "filterable": 1
  127. },
  128. {
  129. "key": "低端影视",
  130. "name": "💡低端|影视",
  131. "type": 3,
  132. "api": "csp_Ddys",
  133. "searchable": 1,
  134. "quickSearch": 1,
  135. "filterable": 1
  136. },
  137. {
  138. "key": "瓜子影视1",
  139. "name": "💡瓜子|影视",
  140. "type": 3,
  141. "api": "csp_Gz360",
  142. "searchable": 1,
  143. "quickSearch": 1,
  144. "filterable": 1
  145. },
  146. {
  147. "key": "骚火影视1",
  148. "name": "💡骚火|影视",
  149. "type": 3,
  150. "api": "csp_SaoHuo",
  151. "searchable": 1,
  152. "quickSearch": 1,
  153. "filterable": 1
  154. },
  155. {
  156. "key": "农民影视",
  157. "name": "💡农民|影视",
  158. "type": 3,
  159. "api": "csp_Nmys",
  160. "searchable": 1,
  161. "quickSearch": 1,
  162. "filterable": 1
  163. },
  164. {
  165. "key": "饺子影视",
  166. "name": "💡饺子|影视",
  167. "type": 3,
  168. "api": "csp_Jiaozi",
  169. "searchable": 1,
  170. "quickSearch": 1,
  171. "filterable": 1
  172. },
  173. {
  174. "key": "洽洽影视",
  175. "name": "💡洽洽|影视",
  176. "type": 3,
  177. "api": "csp_AppGZ",
  178. "searchable": 1,
  179. "quickSearch": 1,
  180. "filterable": 1
  181. },
  182. {
  183. "key": "金牌影视",
  184. "name": "💡金牌|影视",
  185. "type": 3,
  186. "api": "csp_WebJP",
  187. "searchable": 1,
  188. "quickSearch": 1,
  189. "filterable": 1
  190. },
  191. {
  192. "key": "真心影视",
  193. "name": "💡真心|影视",
  194. "type": 3,
  195. "api": "csp_WebGZ",
  196. "searchable": 1,
  197. "quickSearch": 1,
  198. "filterable": 1
  199. },
  200. {
  201. "key": "机器人",
  202. "name": "💡机器|影视",
  203. "type": 3,
  204. "api": "csp_Ikanbot",
  205. "searchable": 1,
  206. "quickSearch": 1,
  207. "filterable": 1
  208. },
  209. {
  210. "key": "1905",
  211. "name": "💡1905|影视",
  212. "type": 3,
  213. "api": "csp_Web1905",
  214. "searchable": 1,
  215. "quickSearch": 0,
  216. "filterable": 0
  217. },
  218. {
  219. "key": "忍者影视",
  220. "name": "💡忍者|影视",
  221. "type": 3,
  222. "api": "csp_AppRZ",
  223. "searchable": 1,
  224. "quickSearch": 1,
  225. "filterable": 1
  226. },
  227. {
  228. "key": "星星影视",
  229. "name": "💡星星|影视",
  230. "type": 3,
  231. "api": "csp_AppZX",
  232. "searchable": 1,
  233. "quickSearch": 0,
  234. "filterable": 0,
  235. "ext": "KhY021WelCEl+6MsvwnzaLK5slLrVkVKpWWFo0f0XrIG4I/KFx5RJf8ee99ij0p6UXFSzynUUoQn+CMLXQSrHrks8dKtjc6OXESxcMCKZWCfIZLnBIHXbQkKgwbMN1ancbdBF0wmVANCCrQQTm2Nd1Q68RP63nGTicCesKtoaOomHl8T0c2P6T1te5WMsJkNyDa8tsgx5q0uDyR6+QqFAx0l92nhDqQ8"
  236. },
  237. {
  238. "key": "米米影视",
  239. "name": "💡米米|影视",
  240. "type": 3,
  241. "api": "csp_AppZX",
  242. "searchable": 1,
  243. "quickSearch": 0,
  244. "filterable": 0,
  245. "ext": "KhY021WelCEl+6MsvwnzaLK5sg6yEQRc8CLY+R2wReBS99eCRx9APeYSJ5VWzBI5XnVfjFiTSsduqSYOWQC3AqI3+tLwmZ/aT2z/PZuRbHjEUNX8RMiGfg8bkgTbOVjmN6hVB1V3ZE4DTbUbATLmIUci/wOblS2T54u1dxfP2owIfTg1nKSiYD1ndF3VotBmw5u8hM7jpJZ3Ugcaqy/mTj7oMr8="
  246. },
  247. {
  248. "key": "兄弟影视",
  249. "name": "💡兄弟|影视",
  250. "type": 3,
  251. "api": "csp_AppGetApp",
  252. "searchable": 1,
  253. "quickSearch": 1,
  254. "filterable": 1,
  255. "ext": "KhYl01Kekjo9vLs09V+rOtv/6QaOFwdQp2ne4h22GLkT99eCXh9SJ/lGZNM8zgk1OnFWx0zBQ9Y/9mAjQB67LaEp7Yj7w9SYBEjFbdPjKy3EHp7uBIHXVI7/dZ4r/dJapz6ihlWwqY2KlGuarL/+9suxO4ZJFOg1OxN+dTrTbi2Muff1CmBkNfrY+sENTEbHAsgpQRtycD7pjvPePZ1AgNT8ZuBCcf4lIM858OSMK4u76tpjIfqzVA=="
  256. },
  257. {
  258. "key": "西瓜视频",
  259. "name": "💡西瓜|影视",
  260. "type": 3,
  261. "api": "csp_AmuXiguaV2",
  262. "searchable": 1,
  263. "quickSearch": 0,
  264. "filterable": 0,
  265. "changeable": 0,
  266. "style": {
  267. "type": "rect",
  268. "ratio": 1.597
  269. }
  270. },
  271. {
  272. "key": "厂长资源",
  273. "name": "💡厂长|资源",
  274. "type": 3,
  275. "api": "csp_Czzy",
  276. "searchable": 1,
  277. "quickSearch": 1,
  278. "filterable": 1
  279. },
  280. {
  281. "key": "看客影视",
  282. "name": "💡看客|影视",
  283. "type": 3,
  284. "api": "csp_Kanke",
  285. "searchable": 1,
  286. "quickSearch": 1,
  287. "filterable": 1
  288. },
  289. {
  290. "key": "移动云盘",
  291. "name": "💡移动|影视",
  292. "type": 3,
  293. "api": "csp_YDjisu",
  294. "searchable": 1,
  295. "changeable": 1
  296. },
  297. {
  298. "key": "csp_南果",
  299. "name": "💡南果|影视",
  300. "type": 3,
  301. "api": "csp_MITU",
  302. "ext": "ewogICAgICAgICJ1cmwiOiAiaHR0cDovLzExMS4xODAuMjA2LjEyNzozMzAiLAogICAgICAgICJkYXRhS2V5IjogInZhM2hmNzkzbjNDRmR2RlMiLAogICAgICAgICJkYXRhSXYiOiAidmEzaGY3OTNuM0NGZHZGUyIsCiAgICAgICAgImRldmljZUlkIjogIjIzODEzYjE1YmY3YmQzNTljYjhkMzJmOWQwMjg2MjQ0YyIKICB9"
  303. },
  304. {
  305. "key": "cspMiTuApp",
  306. "name": "💡米兔|影视",
  307. "type": 3,
  308. "api": "csp_MITU",
  309. "ext": "ewogICAgICAgICJ1cmwiOiAiaHR0cHM6Ly9reTEwODAudG9wIiwKICAgICAgICAiZGF0YUtleSI6ICJlNTlkNDRiMmVlZjAzYmEyIiwKICAgICAgICAiZGF0YUl2IjogImU1OWQ0NGIyZWVmMDNiYTIiLAogICAgICAgICJkZXZpY2VJZCI6ICIyMzgxM2IxNWJmN2JkMzU5Y2I4ZDMyZjlkMDI4NjI0NGMiCiAgfQ=="
  310. },
  311. {
  312. "key": "csp电影",
  313. "name": "💡电影|影视",
  314. "type": 3,
  315. "api": "csp_MITU",
  316. "ext": "ewogICAgICAgICJ1cmwiOiAiaHR0cHM6Ly9hcGlhcHBkeXl6dHZ5eWRzcXdkeS42OC5neTo1Njg5IiwKICAgICAgICAiZGF0YUtleSI6ICJkeXl6dHZhcGlhcHB5eWRzIiwKICAgICAgICAiZGF0YUl2IjogImR5eXp0dmFwaWFwcHl5ZHMiLAogICAgICAgICJkZXZpY2VJZCI6ICIyMzgxM2IxNWJmN2JkMzU5Y2I4ZDMyZjlkMDI4NjI0NGMiCiAgICAgIH0="
  317. },
  318. {
  319. "key": "cszhufan",
  320. "name": "💡追饭|影视",
  321. "searchable": 1,
  322. "quickSearch": 1,
  323. "type": 3,
  324. "api": "csp_MITO",
  325. "ext": {
  326. "url": "http://103.88.35.251:8989",
  327. "dataKey": "aassddwwxxllsx1x",
  328. "playKey": "bbssqdbbssll25sx",
  329. "version": "2.1.0"
  330. }
  331. },
  332. {
  333. "key": "全网影视",
  334. "name": "💡全网|影视",
  335. "type": 3,
  336. "api": "csp_Quanwk",
  337. "searchable": 1,
  338. "quickSearch": 1,
  339. "filterable": 1,
  340. "ext": "https://www.91qkw.com"
  341. },
  342. {
  343. "key": "奇优影视",
  344. "name": "💡奇优|影视",
  345. "type": 3,
  346. "api": "csp_Qiyou",
  347. "searchable": 1,
  348. "quickSearch": 1,
  349. "filterable": 1,
  350. "ext": "http://www.dyxz2.com/"
  351. },
  352. {
  353. "key": "素白白",
  354. "name": "💡白白|影视",
  355. "type": 3,
  356. "api": "csp_Subaibai",
  357. "searchable": 1,
  358. "quickSearch": 1,
  359. "filterable": 1,
  360. "ext": "http://subaibai.com"
  361. },
  362. {
  363. "key": "csp_XYQHiker_农民影视",
  364. "name": "🧿农民|影视",
  365. "type": 3,
  366. "api": "csp_XYQHiker",
  367. "searchable": 1,
  368. "quickSearch": 1,
  369. "filterable": 1,
  370. "ext": "./json/农民影视.json"
  371. },
  372. {
  373. "key": "嫖嫖嫖",
  374. "name": "🧿嫖嫖┃影视",
  375. "type": 3,
  376. "api": "csp_XBPQ",
  377. "ext": {
  378. "主页url": "https://www.gs4x7nq4.com/",
  379. "播放请求头": "User-Agent$Mozilla/5.0(WindowsNT10.0;Win64;x64)AppleWebKit/537.36(KHTML,likeGecko)Chrome/128.0.0.0Safari/537.36",
  380. "简介": "⚠️欧歌特别提醒您⚠️请勿相信影片中的广告,以免上当受骗❗️+</label>&&</div>",
  381. "嗅探词": ".mp4#.m3u8#.flv#.m3u8?#.mp4?",
  382. "影片类型": "tags\">&&director\">",
  383. "影片状态": "bottom\">&&</div>",
  384. "二次截取": "videoList\":\\[&&\\]",
  385. "数组": "{&&}[不包含:伦理剧]",
  386. "图片": "https+://ywxohs.com+obs.gduamoe.com&&\",",
  387. "标题": "vodName\":\"&&\"",
  388. "副标题": "vodRemarks\":\"&&\"",
  389. "链接": "https://www.gs4x7nq4.com/detail/+vodId\":&&,",
  390. "导演": "导演:</div>&&主演",
  391. "主演": "主演:</div>&&别名",
  392. "线路标题": "xxx",
  393. "播放数组": "listitem\">&&info\">",
  394. "播放列表": "<a&&</a>",
  395. "倒序": "否",
  396. "搜索url": "https://www.gs4x7nq4.com/vod/search/{wd}",
  397. "搜索副标题": "class=\"boottom\"*<div>&&</div",
  398. "分类": "电影$1#电视剧$2#综艺$3#动漫$4",
  399. "分类url": "https://www.gs4x7nq4.com/vod/show/id/{cateId}/class/{class}/year/{year}/area/{area}/page/{catePg}"
  400. }
  401. },
  402. {
  403. "key": "白嫖者",
  404. "name": "🧿白嫖┃影视",
  405. "type": 3,
  406. "api": "csp_XBPQ",
  407. "ext": {
  408. "分类url": "https://www.qyzf88.com/qyvodshow/{cateId}-{area}-{by}-{class}-----{catePg}---{year}.html",
  409. "分类": "电影$1#电视剧$2#动漫$4#综艺$3",
  410. "副标题": "class=\"pic-texttext-right\"&&</span>",
  411. "简介": "️欧歌特别提醒您⚠️请勿相信影片中的广告,以免上当受骗❗+剧情介绍:&&</p>"
  412. }
  413. },
  414. {
  415. "key": "656",
  416. "name": "🧿梦想┃影视",
  417. "type": 3,
  418. "api": "csp_XBPQ",
  419. "searchable": 1,
  420. "quickSearch": 1,
  421. "filterable": 1,
  422. "ext": {
  423. "主页url": "https://www.kkys02.com/",
  424. "分类url": "https://www.kkys02.com/{cateId}-{catePg}.html[https://www.kkys02.com/{cateId}-.html];;ak",
  425. "分类": "豆瓣TOP250&2023最佳影片&毒舌电影&热映电影&热播剧集&热门综艺&Netflix电影&Netflix剧集&经典美剧&海外短画&爱情治愈&漫威宇宙&星爷系列&迪士尼&国产剧&台湾剧&韩国剧&欧美剧&香港剧&泰国剧&日本剧&动作片&喜剧片&科幻片&恐怖片&爱情片&剧情片&战争片&传记片&动画片&国产动漫&日本动漫&韩国动漫&欧美动漫&大陆综艺&香港综艺&台湾综艺&日本综艺&韩国综艺&欧美综艺&短剧",
  426. "分类值": "topic/detail/1&topic/detail/460&topic/detail/3&topic/detail/12&topic/detail/15&topic/detail/456&show/1-NETFLIX----3&show/2-NETFLIX----3&topic/detail/399&topic/detail/384&topic/detail/383&topic/detail/33&topic/detail/26&topic/detail/34&show/2--%E4%B8%AD%E5%9B%BD%E5%A4%A7%E9%99%86---3&show/2--%E4%B8%AD%E5%9B%BD%E5%8F%B0%E6%B9%BE---3&show/2--%E9%9F%A9%E5%9B%BD---3&show/2--%E7%BE%8E%E5%9B%BD---3&show/2--%E4%B8%AD%E5%9B%BD%E9%A6%99%E6%B8%AF---3&show/2--%E6%B3%B0%E5%9B%BD---3&show/2--%E6%97%A5%E6%9C%AC---3&show/1-%E5%8A%A8%E4%BD%9C----3&show/1-%E5%96%9C%E5%89%A7----3&show/1-%E7%A7%91%E5%B9%BB----3&show/1-%E6%81%90%E6%80%96----3&show/1-%E7%88%B1%E6%83%85----3&show/1-%E5%89%A7%E6%83%85----3&show/1-%E6%88%98%E4%BA%89----3&show/1-%E4%BC%A0%E8%AE%B0----3&show/1-%E5%8A%A8%E7%94%BB----3&show/3--%E4%B8%AD%E5%9B%BD%E5%A4%A7%E9%99%86---1&show/3--%E6%97%A5%E6%9C%AC---1&show/3--%E9%9F%A9%E5%9B%BD---1&show/3--%E7%BE%8E%E5%9B%BD---1&show/4--%E4%B8%AD%E5%9B%BD%E5%A4%A7%E9%99%86---3&show/4--%E4%B8%AD%E5%9B%BD%E9%A6%99%E6%B8%AF---3&show/4--%E4%B8%AD%E5%9B%BD%E5%8F%B0%E6%B9%BE---3&show/4--%E6%97%A5%E6%9C%AC---3&show/4--%E9%9F%A9%E5%9B%BD---3&show/4--%E7%BE%8E%E5%9B%BD---3&show/6-----1",
  427. "数组": "module-item\">&&\"v-item-footer\">",
  428. "图片": "https://61.147.93.252:15002+data-original=\"&&\"",
  429. "标题": "title=\"&&\"",
  430. "副标题": "影视</span&&</div>",
  431. "链接": "href=\"&&\"",
  432. "搜索二次截取": "id=\"units_top\"&&id=\"units_footer\"",
  433. "搜索url": "https://www.kkys02.com/search?os=pc&k={wd}",
  434. "搜索数组": "<a&&class=\"tags\"",
  435. "搜索图片": "data-original=\"&&\"[替换:/vod1/>>https://61.147.93.252:15002/vod1/][不包含:https://61.147.93.155:15001/vod_pc_static_kkdy/images/p/logo_placeholder_vertical.png?ver=240905]",
  436. "搜索标题": "title=\"&&\"",
  437. "搜索副标题": "v-item-bottom\">&&</div>",
  438. "搜索链接": "href=\"&&\"",
  439. "线路数组": "可可影视提供&&<i[不包含:4K(高峰不卡)]",
  440. "线路标题": ">&&</span",
  441. "播放数组": "episode-list\"&&</div",
  442. "播放列表": "<a&&/a",
  443. "播放标题": ">&&<",
  444. "播放链接": "href=\"&&\"",
  445. "嗅探词": ".m3u8#video_mp4#tos-#.mp4#cdn.123pan.cn#huoshanvod.com",
  446. "影片年代": "class=\"detail-tags-item\">&&</a>",
  447. "影片类型": "<divclass=\"detail-tagsfs-margin-topfs-margin-bottom\">&&立即播放",
  448. "影片状态": "备注:&&</div>",
  449. "导演": "导演:</div>&&</div>",
  450. "主演": "演员:</div>&&</div>",
  451. "简介": "detail-desc\">&&</p>"
  452. }
  453. },
  454. {
  455. "key": "8号影院",
  456. "name": "🧿8号┃影视",
  457. "type": 3,
  458. "api": "csp_XBPQ",
  459. "searchable": 1,
  460. "quickSearch": 1,
  461. "filterable": 1,
  462. "ext": {
  463. "搜索url": "http://www.soutiyi.com/search.php?searchword={wd}",
  464. "搜索链接": "href=\"&&\"",
  465. "简介": "请勿相信影片中的广告,以免上当受骗。+<pclass=\"col-pddetail\"&&</span>",
  466. "线路数组": "<imgsrc=\"/statics/icon/icon_26.png\"&&</h3>",
  467. "线路标题": "蓝光专线",
  468. "分类url": "http://www.soutiyi.com/frim/{cateId}-{catePg}.html",
  469. "分类": "动作片$5#爱情片$6#科幻片$7#恐怖片$8#喜剧片$10#剧情片$12#国产剧$13#港台剧$14#欧美剧$15#日韩剧$16#综艺$3#动漫$4"
  470. }
  471. },
  472. {
  473. "key": "csp_红狐狸影视",
  474. "name": "🧿狐狸┃影视",
  475. "type": 3,
  476. "api": "csp_XBPQ",
  477. "ext": {
  478. "分类url": "https://honghuli.com/leibiao/{cateId}-{area}-------{catePg}---{year}.html",
  479. "分类": "电影$1#电视剧$2#综艺$3#动漫$4"
  480. }
  481. },
  482. {
  483. "key": "大师兄",
  484. "name": "🧿大师┃影视",
  485. "type": 3,
  486. "api": "csp_XBPQ",
  487. "ext": {
  488. "分类url": "https://www.dsxysproo.com/dqvodshow/{cateId}-{area}--{class}-----{catePg}---{year}.html",
  489. "分类": "电视剧$2#电影$1#动漫$4#综艺$3"
  490. }
  491. },
  492. {
  493. "key": "疯狗",
  494. "name": "🧿疯狗┃影视",
  495. "type": 3,
  496. "api": "csp_XBPQ",
  497. "ext": {
  498. "线路数组": "page-header\">&&</div>",
  499. "播放数组": "list-unstyledrowtext-centerff-playurl-lineff-playurl\"&&</ul>",
  500. "分类url": "https://m.fenggoudy3.com/list-select-id-{cateId}-type-{class}-area-{area}-year-{year}-star--state--order-addtime-p-{catePg}.html;;d0",
  501. "分类": "电视剧$2#电影$1#动漫$3#综艺$4"
  502. }
  503. },
  504. {
  505. "key": "哔哩弹幕",
  506. "name": "🅱哔哩|弹幕",
  507. "type": 3,
  508. "api": "csp_Bilimd",
  509. "searchable": 1,
  510. "quickSearch": 1,
  511. "filterable": 1,
  512. "style": {
  513. "type": "rect",
  514. "ratio": 1.433
  515. },
  516. "ext": {
  517. "cookie": "./txt/bilibili.txt"
  518. },
  519. "timeout": 10
  520. },
  521. {
  522. "key": "糯米弹幕",
  523. "name": "💘糯米|弹幕",
  524. "type": 3,
  525. "api": "csp_Nmys",
  526. "searchable": 1,
  527. "quickSearch": 1,
  528. "filterable": 1,
  529. "ext": {
  530. "danmu": true
  531. }
  532. },
  533. {
  534. "key": "三六零弹幕",
  535. "name": "💘三六┃弹幕",
  536. "type": 3,
  537. "api": "csp_Sp360",
  538. "searchable": 1,
  539. "filterable": 1,
  540. "changeable": 1,
  541. "ext": {
  542. "danmu": true
  543. }
  544. },
  545. {
  546. "key": "天天弹幕",
  547. "name": "💘天天┃弹幕",
  548. "type": 3,
  549. "api": "csp_TianTian",
  550. "searchable": 1,
  551. "quickSearch": 1,
  552. "filterable": 1,
  553. "ext": {
  554. "danmu": true
  555. }
  556. },
  557. {
  558. "key": "荐片弹幕",
  559. "name": "💘荐片┃弹幕",
  560. "type": 3,
  561. "api": "csp_Jianpian",
  562. "playerType": 1,
  563. "searchable": 1,
  564. "quickSearch": 1,
  565. "filterable": 1,
  566. "ext": {
  567. "danmu": true
  568. }
  569. },
  570. {
  571. "key": "小苹果弹幕",
  572. "name": "💘苹果┃弹幕",
  573. "type": 3,
  574. "api": "csp_Xpg",
  575. "searchable": 1,
  576. "quickSearch": 1,
  577. "filterable": 1,
  578. "ext": {
  579. "danmu": true
  580. }
  581. },
  582. {
  583. "key": "文才弹幕",
  584. "name": "💘文才┃弹幕",
  585. "type": 3,
  586. "api": "csp_Jpys",
  587. "searchable": 1,
  588. "quickSearch": 1,
  589. "filterable": 1,
  590. "ext": {
  591. "danmu": true
  592. }
  593. },
  594. {
  595. "key": "厂长弹幕",
  596. "name": "💘厂长|弹幕",
  597. "type": 3,
  598. "api": "csp_Czzy",
  599. "searchable": 1,
  600. "quickSearch": 1,
  601. "filterable": 1,
  602. "ext": {
  603. "danmu": true
  604. }
  605. },
  606. {
  607. "key": "热播弹幕",
  608. "name": "💘热播|弹幕",
  609. "type": 3,
  610. "api": "csp_ReBo",
  611. "searchable": 1,
  612. "quickSearch": 1,
  613. "filterable": 1,
  614. "ext": {
  615. "danmu": true
  616. }
  617. },
  618. {
  619. "key": "哔嘀弹幕",
  620. "name": "💘哔嘀|弹幕",
  621. "type": 3,
  622. "api": "csp_Bdys",
  623. "searchable": 1,
  624. "quickSearch": 1,
  625. "filterable": 1,
  626. "ext": {
  627. "site": "https://www.xlys01.com",
  628. "danmu": true
  629. }
  630. },
  631. {
  632. "key": "立播弹幕",
  633. "name": "❤立播┃弹幕",
  634. "type": 3,
  635. "api": "csp_Libvio",
  636. "searchable": 1,
  637. "filterable": 1,
  638. "changeable": 1,
  639. "ext": {
  640. "token": "./txt/token.txt",
  641. "cookie": "http://127.0.0.1:9978/file/TV/.quark",
  642. "uc_cookie": "http://127.0.0.1:9978/file/TV/.uc",
  643. "danmu": true
  644. }
  645. },
  646. {
  647. "key": "玩弹幕1",
  648. "name": "❤玩哥┃弹幕",
  649. "type": 3,
  650. "api": "csp_Wobg",
  651. "searchable": 1,
  652. "quickSearch": 1,
  653. "filterable": 1,
  654. "changeable": 1,
  655. "ext": {
  656. "token": "./txt/token.txt",
  657. "cookie": "http://127.0.0.1:9978/file/TV/.quark",
  658. "uc_cookie": "http://127.0.0.1:9978/file/TV/.uc",
  659. "site": "https://woog.nxog.asia",
  660. "danmu": true
  661. }
  662. },
  663. {
  664. "key": "夸克玩弹幕1",
  665. "name": "❤玩偶┃弹幕",
  666. "type": 3,
  667. "api": "csp_Wobg",
  668. "searchable": 1,
  669. "quickSearch": 1,
  670. "filterable": 1,
  671. "changeable": 1,
  672. "ext": {
  673. "token": "./txt/token.txt",
  674. "cookie": "http://127.0.0.1:9978/file/TV/.quark",
  675. "uc_cookie": "http://127.0.0.1:9978/file/TV/.uc",
  676. "site": "http://mogg.小胡.top",
  677. "danmu": true
  678. }
  679. },
  680. {
  681. "key": "夸克玩弹幕2",
  682. "name": "❤玩姐┃弹幕",
  683. "type": 3,
  684. "api": "csp_Wobg",
  685. "quickSearch": 1,
  686. "changeable": 1,
  687. "filterable": 1,
  688. "ext": {
  689. "token": "./txt/token.txt",
  690. "cookie": "http://127.0.0.1:9978/file/TV/.quark",
  691. "uc_cookie": "http://127.0.0.1:9978/file/TV/.uc",
  692. "site": "https://tv.yydsys.top",
  693. "danmu": true
  694. }
  695. },
  696. {
  697. "key": "夸克玩弹幕3",
  698. "name": "❤玩妹┃弹幕",
  699. "type": 3,
  700. "api": "csp_Wobg",
  701. "quickSearch": 1,
  702. "changeable": 1,
  703. "filterable": 1,
  704. "ext": {
  705. "token": "./txt/token.txt",
  706. "cookie": "http://127.0.0.1:9978/file/TV/.quark",
  707. "uc_cookie": "http://127.0.0.1:9978/file/TV/.uc",
  708. "site": "http://labipan.com",
  709. "danmu": true
  710. }
  711. },
  712. {
  713. "key": "夸克玩弹幕4",
  714. "name": "❤玩弟┃弹幕",
  715. "type": 3,
  716. "api": "csp_Wobg",
  717. "quickSearch": 1,
  718. "changeable": 1,
  719. "filterable": 1,
  720. "ext": {
  721. "token": "./txt/token.txt",
  722. "cookie": "http://127.0.0.1:9978/file/TV/.quark",
  723. "uc_cookie": "http://127.0.0.1:9978/file/TV/.uc",
  724. "site": "https://mihdr.top",
  725. "danmu": true
  726. }
  727. },
  728. {
  729. "key": "搜索弹幕",
  730. "name": "❤搜索┃弹幕",
  731. "type": 3,
  732. "api": "csp_PanSearch",
  733. "searchable": 1,
  734. "filterable": 0,
  735. "changeable": 1,
  736. "ext": {
  737. "token": "./txt/token.txt",
  738. "danmu": true
  739. }
  740. },
  741. {
  742. "key": "米搜弹幕",
  743. "name": "❤米搜|弹幕",
  744. "type": 3,
  745. "api": "csp_Qkpanso",
  746. "searchable": 1,
  747. "filterable": 1,
  748. "changeable": 0,
  749. "ext": {
  750. "cookie": "http://127.0.0.1:9978/file/TV/.quark",
  751. "site": "https://www.misou.fun",
  752. "danmu": true
  753. }
  754. },
  755. {
  756. "key": "易搜弹幕",
  757. "name": "❤易搜|弹幕",
  758. "type": 3,
  759. "api": "csp_YiSo",
  760. "searchable": 1,
  761. "filterable": 0,
  762. "changeable": 1,
  763. "ext": {
  764. "token": "./txt/token.txt",
  765. "danmu": true,
  766. "cookie": "satoken=0eedba28-be8a-4f01-81af-2d8d44808ecf"
  767. }
  768. },
  769. {
  770. "key": "小纸条弹幕",
  771. "name": "❤纸条|弹幕",
  772. "type": 3,
  773. "api": "csp_XiaoZhiTiao",
  774. "searchable": 1,
  775. "filterable": 1,
  776. "changeable": 0,
  777. "ext": {
  778. "token": "./txt/token.txt",
  779. "danmu": true
  780. }
  781. },
  782. {
  783. "key": "我的阿里",
  784. "name": "❤我的┃阿里",
  785. "type": 3,
  786. "api": "csp_MyAli",
  787. "searchable": 0,
  788. "quickSearch": 0,
  789. "filterable": 0,
  790. "ext": {
  791. "token": "./txt/token.txt"
  792. },
  793. "style": {
  794. "type": "list"
  795. }
  796. },
  797. {
  798. "key": "阿里合集",
  799. "name": "❤阿里┃合集",
  800. "type": 3,
  801. "api": "csp_AliShare",
  802. "searchable": 1,
  803. "changeable": 0,
  804. "filterable": 0,
  805. "ext": {
  806. "token": "./txt/token.txt",
  807. "share": "./json/alishare.json"
  808. },
  809. "style": {
  810. "type": "list"
  811. }
  812. },
  813. {
  814. "key": "我的夸克",
  815. "name": "❤我的|夸克",
  816. "type": 3,
  817. "api": "csp_MyQuark",
  818. "searchable": 0,
  819. "quickSearch": 0,
  820. "filterable": 0,
  821. "indexs": 0,
  822. "ext": {
  823. "cookie": "http://127.0.0.1:9978/file/TV/.quark"
  824. },
  825. "style": {
  826. "type": "list"
  827. }
  828. },
  829. {
  830. "key": "我的UC",
  831. "name": "❤我的|UC",
  832. "type": 3,
  833. "api": "csp_MyUc",
  834. "searchable": 0,
  835. "quickSearch": 0,
  836. "filterable": 0,
  837. "indexs": 0,
  838. "ext": {
  839. "uc_cookie": "http://127.0.0.1:9978/file/TV/.uc"
  840. },
  841. "style": {
  842. "type": "list"
  843. }
  844. },
  845. {
  846. "key": "New6v",
  847. "name": "🎃New6V┃磁力",
  848. "type": 3,
  849. "api": "csp_New6v",
  850. "searchable": 1,
  851. "quickSearch": 1,
  852. "filterable": 1,
  853. "ext": "https://www.xb6v.com"
  854. },
  855. {
  856. "key": "SeedHub",
  857. "name": "🎃SeedHub┃磁力",
  858. "type": 3,
  859. "api": "csp_SeedHub",
  860. "searchable": 1,
  861. "quickSearch": 1,
  862. "filterable": 1
  863. },
  864. {
  865. "key": "剧迷",
  866. "name": "🎃剧迷┃磁力",
  867. "type": 3,
  868. "api": "csp_MeijuMi",
  869. "searchable": 1,
  870. "quickSearch": 1,
  871. "filterable": 1
  872. },
  873. {
  874. "key": "迅吧",
  875. "name": "🎃迅吧┃磁力",
  876. "type": 3,
  877. "api": "csp_Xunlei8",
  878. "searchable": 1,
  879. "quickSearch": 1,
  880. "filterable": 1
  881. },
  882. {
  883. "key": "电影",
  884. "name": "🎃Mp4┃磁力",
  885. "type": 3,
  886. "api": "csp_Mp4Mov",
  887. "searchable": 1,
  888. "quickSearch": 1,
  889. "filterable": 1
  890. },
  891. {
  892. "key": "酷吧",
  893. "name": "🎃酷吧┃磁力",
  894. "type": 3,
  895. "api": "csp_KubaCL",
  896. "searchable": 1,
  897. "quickSearch": 1,
  898. "filterable": 1
  899. },
  900. {
  901. "key": "天堂",
  902. "name": "🎃美剧┃磁力",
  903. "type": 3,
  904. "api": "csp_MeijuTT",
  905. "searchable": 1,
  906. "quickSearch": 1,
  907. "filterable": 1
  908. },
  909. {
  910. "key": "csp_FirstAid",
  911. "name": "🚑急救┃教学",
  912. "type": 3,
  913. "api": "csp_FirstAid",
  914. "searchable": 0,
  915. "quickSearch": 0,
  916. "style": {
  917. "type": "rect",
  918. "ratio": 3.8
  919. },
  920. "gridview": "0-0-4.1"
  921. },
  922. {
  923. "key": "学堂",
  924. "name": "🅰️学堂┃教育",
  925. "type": 3,
  926. "api": "./api/drpy2.min.js",
  927. "searchable": 0,
  928. "quickSearch": 0,
  929. "filterable": 1,
  930. "order_num": 142,
  931. "ext": "./js/我的哔哩.js?type=url&params=./json/学堂教育.json"
  932. },
  933. {
  934. "key": "少儿",
  935. "name": "🅰️少儿┃合集",
  936. "type": 3,
  937. "api": "./api/drpy2.min.js",
  938. "searchable": 0,
  939. "quickSearch": 0,
  940. "filterable": 1,
  941. "order_num": 142,
  942. "ext": "./js/我的哔哩.js?type=url&params=./json/少儿合集.json"
  943. },
  944. {
  945. "key": "小学课堂",
  946. "name": "🅰️小学┃课堂",
  947. "type": 3,
  948. "api": "./api/drpy2.min.js",
  949. "searchable": 0,
  950. "quickSearch": 0,
  951. "filterable": 1,
  952. "order_num": 142,
  953. "ext": "./js/我的哔哩.js?type=url&params=./json/小学课堂.json"
  954. },
  955. {
  956. "key": "初中课堂",
  957. "name": "🅰️初中┃课堂",
  958. "type": 3,
  959. "api": "./api/drpy2.min.js",
  960. "searchable": 0,
  961. "quickSearch": 0,
  962. "filterable": 1,
  963. "order_num": 142,
  964. "ext": "./js/我的哔哩.js?type=url&params=./json/初中课堂.json"
  965. },
  966. {
  967. "key": "高中课堂",
  968. "name": "🅰️高中┃课堂",
  969. "type": 3,
  970. "api": "./api/drpy2.min.js",
  971. "searchable": 0,
  972. "quickSearch": 0,
  973. "filterable": 1,
  974. "order_num": 142,
  975. "ext": "./js/我的哔哩.js?type=url&params=./json/高中课堂.json"
  976. },
  977. {
  978. "key": "儿童口才",
  979. "name": " 🧒口才┃儿童",
  980. "type": 3,
  981. "api": "./api/drpy2.min.js",
  982. "searchable": 0,
  983. "quickSearch": 0,
  984. "filterable": 1,
  985. "order_num": 142,
  986. "ext": "./js/我的哔哩.js?type=url&params=./json/儿童口才.json"
  987. },
  988. {
  989. "key": "儿童拼音",
  990. "name": " 🧒拼音┃儿童",
  991. "type": 3,
  992. "api": "./api/drpy2.min.js",
  993. "searchable": 0,
  994. "quickSearch": 0,
  995. "filterable": 1,
  996. "order_num": 142,
  997. "ext": "./js/我的哔哩.js?type=url&params=./json/儿童拼音.json"
  998. },
  999. {
  1000. "key": "儿童识字",
  1001. "name": " 🧒识字┃儿童",
  1002. "type": 3,
  1003. "api": "./api/drpy2.min.js",
  1004. "searchable": 0,
  1005. "quickSearch": 0,
  1006. "filterable": 1,
  1007. "order_num": 142,
  1008. "ext": "./js/我的哔哩.js?type=url&params=./json/儿童识字.json"
  1009. },
  1010. {
  1011. "key": "儿童思维",
  1012. "name": " 🧒思维┃儿童",
  1013. "type": 3,
  1014. "api": "./api/drpy2.min.js",
  1015. "searchable": 0,
  1016. "quickSearch": 0,
  1017. "filterable": 1,
  1018. "order_num": 142,
  1019. "ext": "./js/我的哔哩.js?type=url&params=./json/儿童思维.json"
  1020. },
  1021. {
  1022. "key": "儿童英语",
  1023. "name": " 🧒英语┃儿童",
  1024. "type": 3,
  1025. "api": "./api/drpy2.min.js",
  1026. "searchable": 0,
  1027. "quickSearch": 0,
  1028. "filterable": 1,
  1029. "order_num": 142,
  1030. "ext": "./js/我的哔哩.js?type=url&params=./json/儿童英语.json"
  1031. },
  1032. {
  1033. "key": "儿童硬笔",
  1034. "name": " 🧒硬笔┃儿童",
  1035. "type": 3,
  1036. "api": "./api/drpy2.min.js",
  1037. "searchable": 0,
  1038. "quickSearch": 0,
  1039. "filterable": 1,
  1040. "order_num": 142,
  1041. "ext": "./js/我的哔哩.js?type=url&params=./json/儿童硬笔.json"
  1042. },
  1043. {
  1044. "key": "儿童编程",
  1045. "name": " 🧒编程┃儿童",
  1046. "type": 3,
  1047. "api": "./api/drpy2.min.js",
  1048. "searchable": 0,
  1049. "quickSearch": 0,
  1050. "filterable": 1,
  1051. "order_num": 142,
  1052. "ext": "./js/我的哔哩.js?type=url&params=./json/儿童编程.json"
  1053. },
  1054. {
  1055. "key": "儿童武术",
  1056. "name": " 🧒武术┃儿童",
  1057. "type": 3,
  1058. "api": "./api/drpy2.min.js",
  1059. "searchable": 0,
  1060. "quickSearch": 0,
  1061. "filterable": 1,
  1062. "order_num": 142,
  1063. "ext": "./js/我的哔哩.js?type=url&params=./json/儿童武术.json"
  1064. },
  1065. {
  1066. "key": "csp_BBB",
  1067. "name": "🅱️套餐┃哔哩",
  1068. "type": 3,
  1069. "api": "./api/drpy2.min.js",
  1070. "searchable": 0,
  1071. "quickSearch": 0,
  1072. "filterable": 1,
  1073. "order_num": 142,
  1074. "ext": "./js/我的哔哩.js?type=url&params=./json/哔哩套餐1.json"
  1075. },
  1076. {
  1077. "key": "Bili",
  1078. "name": "🅱️套餐2┃哔哩",
  1079. "type": 3,
  1080. "api": "./api/drpy2.min.js",
  1081. "searchable": 0,
  1082. "quickSearch": 0,
  1083. "filterable": 1,
  1084. "order_num": 142,
  1085. "ext": "./js/我的哔哩.js?type=url&params=./json/哔哩套餐2.json"
  1086. },
  1087. {
  1088. "key": "软件",
  1089. "name": "🅰️软件┃教程",
  1090. "type": 3,
  1091. "api": "./api/drpy2.min.js",
  1092. "searchable": 0,
  1093. "quickSearch": 0,
  1094. "filterable": 1,
  1095. "order_num": 142,
  1096. "ext": "./js/我的哔哩.js?type=url&params=./json/软件教程.json"
  1097. },
  1098. {
  1099. "key": "演唱会",
  1100. "name": "🅰️演唱会┃哔哩",
  1101. "type": 3,
  1102. "api": "./api/drpy2.min.js",
  1103. "searchable": 0,
  1104. "quickSearch": 0,
  1105. "filterable": 1,
  1106. "order_num": 142,
  1107. "ext": "./js/我的哔哩.js?type=url&params=./json/演唱会.json"
  1108. },
  1109. {
  1110. "key": "戏曲",
  1111. "name": "🅰️戏曲┃合集",
  1112. "type": 3,
  1113. "api": "./api/drpy2.min.js",
  1114. "searchable": 0,
  1115. "quickSearch": 0,
  1116. "filterable": 1,
  1117. "order_num": 142,
  1118. "ext": "./js/我的哔哩.js?type=url&params=./json/戏曲合集.json"
  1119. },
  1120. {
  1121. "key": "MV",
  1122. "name": "🌈歌曲┃哔哩",
  1123. "type": 3,
  1124. "api": "./api/drpy2.min.js",
  1125. "searchable": 0,
  1126. "quickSearch": 0,
  1127. "filterable": 1,
  1128. "order_num": 142,
  1129. "ext": "./js/我的哔哩.js?type=url&params=./json/歌曲MV.json"
  1130. },
  1131. {
  1132. "key": "美食",
  1133. "name": "🌈美食┃哔哩",
  1134. "type": 3,
  1135. "api": "./api/drpy2.min.js",
  1136. "searchable": 0,
  1137. "quickSearch": 0,
  1138. "filterable": 1,
  1139. "order_num": 142,
  1140. "ext": "./js/我的哔哩.js?type=url&params=./json/美食.json"
  1141. },
  1142. {
  1143. "key": "球类",
  1144. "name": "⚽️球类┃合集",
  1145. "type": 3,
  1146. "api": "./api/drpy2.min.js",
  1147. "searchable": 0,
  1148. "quickSearch": 0,
  1149. "filterable": 1,
  1150. "order_num": 142,
  1151. "ext": "./js/我的哔哩.js?type=url&params=./json/球类合集.json"
  1152. },
  1153. {
  1154. "key": "球星",
  1155. "name": "⚽️球星┃合集",
  1156. "type": 3,
  1157. "api": "./api/drpy2.min.js",
  1158. "searchable": 0,
  1159. "quickSearch": 0,
  1160. "filterable": 1,
  1161. "order_num": 142,
  1162. "ext": "./js/我的哔哩.js?type=url&params=./json/球星合集.json"
  1163. },
  1164. {
  1165. "key": "合集",
  1166. "name": "💋哔哩┃合集",
  1167. "type": 3,
  1168. "api": "./api/drpy2.min.js",
  1169. "searchable": 1,
  1170. "quickSearch": 0,
  1171. "filterable": 1,
  1172. "order_num": 142,
  1173. "ext": "./js/我的哔哩.js?type=url&params=./json/合集.json"
  1174. },
  1175. {
  1176. "key": "酷狗",
  1177. "name": "🐾酷狗┃音乐",
  1178. "type": 3,
  1179. "api": "csp_Kugou",
  1180. "playerType": 2,
  1181. "ext": {
  1182. "classes": [
  1183. {
  1184. "type_name": "酷狗",
  1185. "type_id": "kugou"
  1186. }
  1187. ]
  1188. }
  1189. },
  1190. {
  1191. "key": "星芽短剧",
  1192. "name": "🐞星芽|短剧",
  1193. "type": 3,
  1194. "api": "csp_AppXY",
  1195. "searchable": 1,
  1196. "quickSearch": 0,
  1197. "filterable": 0
  1198. },
  1199. {
  1200. "key": "河马短剧",
  1201. "name": "🐞河马|短剧",
  1202. "type": 3,
  1203. "api": "csp_AppHMDJ",
  1204. "searchable": 1,
  1205. "quickSearch": 0,
  1206. "filterable": 0
  1207. },
  1208. {
  1209. "key": "Dm84",
  1210. "name": "🤣巴士┃动漫",
  1211. "type": 3,
  1212. "api": "csp_Dm84",
  1213. "searchable": 1,
  1214. "quickSearch": 1,
  1215. "changeable": 1
  1216. },
  1217. {
  1218. "key": "58动漫网",
  1219. "name": "🤣之家┃动漫",
  1220. "type": 3,
  1221. "api": "csp_XBPQ",
  1222. "searchable": 1,
  1223. "quickSearch": 1,
  1224. "filterable": 1,
  1225. "ext": {
  1226. "简介": "⚠️欧歌特别提醒您⚠️请勿相信影片中的广告,以免上当受骗。+简介:&&</p>",
  1227. "搜索url": "https://dbwyt.com/search.php?searchword={wd}",
  1228. "分类url": "https://dbwyt.com/wuba/{cateId}-{catePg}.html",
  1229. "分类": "国产动漫$1#日本动漫$2#欧美动漫$47#海外动漫$3#动漫电影$4"
  1230. }
  1231. },
  1232. {
  1233. "key": "动漫大全",
  1234. "name": "🤣大全┃动漫",
  1235. "type": 3,
  1236. "api": "csp_XBPQ",
  1237. "searchable": 1,
  1238. "quickSearch": 1,
  1239. "filterable": 1,
  1240. "ext": {
  1241. "简介": "⚠️欧歌特别提醒您⚠️请勿相信影片中的广告,以免上当受骗。+简介:&&</p>",
  1242. "线路数组": "<aclass=\"hl-tabs-btnhl-slide-swiper\"&&</a>",
  1243. "线路标题": "</i>&nbsp;&&</a>+集",
  1244. "分类url": "https://dingdingdm.com/list/{cateId}-{catePg}.html",
  1245. "分类": "动漫电影$1#国产动漫$3#日本动漫$2#欧美动漫$4#短剧$20"
  1246. }
  1247. },
  1248. {
  1249. "key": "萝卜动漫",
  1250. "name": "🤣萝卜┃动漫",
  1251. "type": 3,
  1252. "api": "csp_XBPQ",
  1253. "searchable": 1,
  1254. "quickSearch": 1,
  1255. "filterable": 1,
  1256. "ext": {
  1257. "影片类型": "分类:&&</a>",
  1258. "简介": "请勿相信影片中的广告,以免上当受骗。+简介:&&</p>",
  1259. "分类url": "https://985dm.com/list/{cateId}-{catePg}.html",
  1260. "分类": "国产动漫$3#日本动漫$2#欧美动漫$4#动漫电影$1#短剧$20"
  1261. }
  1262. },
  1263. {
  1264. "key": "魔都资源",
  1265. "name": "🤣魔都┃动漫",
  1266. "type": 1,
  1267. "api": "https://caiji.moduapi.cc/api.php/provide/vod/?ac=list",
  1268. "searchable": 1,
  1269. "quickSearch": 1,
  1270. "filterable": 1
  1271. },
  1272. {
  1273. "key": "NyaFun动漫",
  1274. "name": "🤣妮呀┃动漫",
  1275. "type": 3,
  1276. "api": "csp_XBPQ",
  1277. "searchable": 1,
  1278. "quickSearch": 1,
  1279. "filterable": 1,
  1280. "ext": {
  1281. "分类url": "https://nyafun.cc/index.php/vod/show/id/{cateId}/area/{area}/by/{by}/class/{class}/page/{catePg}/year/{year}.html",
  1282. "分类": "TV动画$20#国漫$24#日漫$23#美漫$25#剧场版$21"
  1283. }
  1284. },
  1285. {
  1286. "key": "直播转点播",
  1287. "name": "📺电视┃直播",
  1288. "type": 3,
  1289. "api": "./api/live.js",
  1290. "searchable": 0,
  1291. "quickSearch": 1,
  1292. "filterable": 0,
  1293. "ext": "https://o.nxog.top/m//json/live.php?ou=公众号欧歌APP"
  1294. },
  1295. {
  1296. "key": "本地",
  1297. "name": "🌸本地|视频",
  1298. "type": 3,
  1299. "api": "csp_LocalFile"
  1300. },
  1301. {
  1302. "key": "push_agent",
  1303. "name": "🎱推送┃电视",
  1304. "type": 3,
  1305. "api": "csp_Push",
  1306. "searchable": 0,
  1307. "filterable": 0,
  1308. "changeable": 0,
  1309. "jar": "./jars/csp_woog.jar",
  1310. "ext\"": {
  1311. "token": "http://127.0.0.1:9978/file/TV/token.txt",
  1312. "cookie": "http://127.0.0.1:9978/file/TV/.quark",
  1313. "uc_cookie": "http://127.0.0.1:9978/file/TV/.uc"
  1314. }
  1315. },
  1316. {
  1317. "key": "应用商店",
  1318. "name": "🛒影视应用商店",
  1319. "type": 3,
  1320. "jar": "./jars/豆瓣1.jar",
  1321. "api": "csp_Market",
  1322. "searchable": 0,
  1323. "changeable": 0,
  1324. "ext": "https://nxog.top/%E5%85%AC%E4%BC%97%E5%8F%B7%E6%AC%A7%E6%AD%8CAPP/ts/sd.php"
  1325. },
  1326. {
  1327. "key": "豆瓣3",
  1328. "name": "📢接口软件永远免费",
  1329. "type": 3,
  1330. "api": "csp_Douban",
  1331. "searchable": 0
  1332. },
  1333. {
  1334. "key": "豆瓣4",
  1335. "name": "📢智能AI已过滤广告",
  1336. "type": 3,
  1337. "api": "csp_Douban",
  1338. "searchable": 0
  1339. }
  1340. ],
  1341. "parses": [
  1342. {
  1343. "name": "-聚合-",
  1344. "type": 3,
  1345. "url": "Demo"
  1346. },
  1347. {
  1348. "name": "欧歌解析",
  1349. "type": "1",
  1350. "url": "https://欧歌解析.v.nxog.top/m/jx.php?ou=公众号欧歌APP&mz=0&url=",
  1351. "ext": {
  1352. "header": {
  1353. "user-agent": "Mozilla/5.0(Linux;Android13;V2049ABuild/TP1A.220624.014;wv)AppleWebKit/537.36(KHTML,likeGecko)Version/4.0Chrome/116.0.0.0MobileSafari/537.36"
  1354. }
  1355. }
  1356. },
  1357. {
  1358. "name": "-关注-",
  1359. "type": 1,
  1360. "url": "https://欧歌解析.v.nxog.top/m/jx.php?ou=公众号欧歌APP&mz=1&url="
  1361. },
  1362. {
  1363. "name": "-欧歌-",
  1364. "type": 1,
  1365. "url": "https://欧歌解析.v.nxog.top/m/jx.php?ou=公众号欧歌APP&mz=2&url="
  1366. },
  1367. {
  1368. "name": "-公众号-",
  1369. "type": 1,
  1370. "url": "https://欧歌解析.v.nxog.top/m/jx.php?ou=公众号欧歌APP&mz=3&url="
  1371. },
  1372. {
  1373. "name": "欧歌APP",
  1374. "type": 1,
  1375. "url": "https://欧歌解析.v.nxog.top/m/jx.php?ou=公众号欧歌APP&mz=8&url="
  1376. },
  1377. {
  1378. "name": "线路1",
  1379. "type": 0,
  1380. "url": "https://www.8090g.cn/?url=",
  1381. "ext": {
  1382. "header": {
  1383. "user-agent": "Mozilla/5.0(WindowsNT10.0;Win64;x64)AppleWebKit/537.36(KHTML,likeGecko)Chrome/110.0.0.0Safari/537.36Edg/110.0.1587.57"
  1384. }
  1385. }
  1386. },
  1387. {
  1388. "name": "线路2",
  1389. "type": 0,
  1390. "url": "https://bd.jx.cn/?url=",
  1391. "ext": {
  1392. "header": {
  1393. "user-agent": "Mozilla/5.0(Linux;Android13;V2049ABuild/TP1A.220624.014;wv)AppleWebKit/537.36(KHTML,likeGecko)Version/4.0Chrome/116.0.0.0MobileSafari/537.36"
  1394. }
  1395. }
  1396. },
  1397. {
  1398. "name": "线路3",
  1399. "type": 0,
  1400. "url": "https://jx.yparse.com/index.php?url=",
  1401. "ext": {
  1402. "header": {
  1403. "user-agent": "Mozilla/5.0(Linux;Android13;V2049ABuild/TP1A.220624.014;wv)AppleWebKit/537.36(KHTML,likeGecko)Version/4.0Chrome/116.0.0.0MobileSafari/537.36"
  1404. }
  1405. }
  1406. },
  1407. {
  1408. "name": "线路4",
  1409. "type": 0,
  1410. "url": "https://jx.m3u8.tv/jiexi/?url=",
  1411. "ext": {
  1412. "header": {
  1413. "user-agent": "Mozilla/5.0(Linux;Android13;V2049ABuild/TP1A.220624.014;wv)AppleWebKit/537.36(KHTML,likeGecko)Version/4.0Chrome/116.0.0.0MobileSafari/537.36",
  1414. "referer": "https://jiejie.uk/"
  1415. }
  1416. }
  1417. },
  1418. {
  1419. "name": "线路5",
  1420. "type": 0,
  1421. "url": "https://cdn.zyc888.top/?url="
  1422. },
  1423. {
  1424. "name": "线路6",
  1425. "type": 0,
  1426. "url": "https://jx.yangtu.top?url="
  1427. },
  1428. {
  1429. "name": "线路7",
  1430. "type": 0,
  1431. "url": "https://player.mrgaocloud.com/player/?url="
  1432. }
  1433. ],
  1434. "flags": [
  1435. "youku",
  1436. "优酷",
  1437. "优 酷",
  1438. "优酷视频",
  1439. "qq",
  1440. "腾讯",
  1441. "腾 讯",
  1442. "腾讯视频",
  1443. "iqiyi",
  1444. "qiyi",
  1445. "奇艺",
  1446. "爱奇艺",
  1447. "爱 奇 艺",
  1448. "m1905",
  1449. "xigua",
  1450. "letv",
  1451. "leshi",
  1452. "乐视",
  1453. "乐 视",
  1454. "sohu",
  1455. "搜狐",
  1456. "搜 狐",
  1457. "搜狐视频",
  1458. "tudou",
  1459. "pptv",
  1460. "mgtv",
  1461. "芒果",
  1462. "imgo",
  1463. "芒果TV",
  1464. "芒 果 T V",
  1465. "bilibili",
  1466. "哔 哩",
  1467. "哔 哩 哔 哩"
  1468. ],
  1469. "rules": [
  1470. {
  1471. "name": "暴风",
  1472. "hosts": [
  1473. "bfzy",
  1474. "bfbfvip",
  1475. "bfengbf"
  1476. ],
  1477. "regex": [
  1478. "#EXTINF.*?\\s+.*?adjump.*?\\.ts"
  1479. ]
  1480. },
  1481. {
  1482. "name": "量子",
  1483. "hosts": [
  1484. "vip.lz",
  1485. "hd.lz",
  1486. ".cdnlz"
  1487. ],
  1488. "regex": [
  1489. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:7\\.166667,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1490. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:4\\.066667,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1491. "17.19"
  1492. ]
  1493. },
  1494. {
  1495. "name": "非凡",
  1496. "hosts": [
  1497. "vip.ffzy",
  1498. "hd.ffzy",
  1499. "super.ffzy"
  1500. ],
  1501. "regex": [
  1502. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:6\\.400000,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1503. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:6\\.666667,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1504. "#EXTINF.*?\\s+.*?1171(057).*?\\.ts",
  1505. "#EXTINF.*?\\s+.*?6d7b(077).*?\\.ts",
  1506. "#EXTINF.*?\\s+.*?6718a(403).*?\\.ts",
  1507. "17.99",
  1508. "14.45"
  1509. ]
  1510. },
  1511. {
  1512. "name": "索尼",
  1513. "hosts": [
  1514. "suonizy"
  1515. ],
  1516. "regex": [
  1517. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:1\\.000000,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1518. "#EXTINF.*?\\s+.*?p1ayer.*?\\.ts",
  1519. "#EXTINF.*?\\s+.*?\\/video\\/original.*?\\.ts"
  1520. ]
  1521. },
  1522. {
  1523. "name": "快看",
  1524. "hosts": [
  1525. "kuaikan"
  1526. ],
  1527. "regex": [
  1528. "#EXT-X-KEY:METHOD=NONE\\r*\\n*#EXTINF:5,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1529. "#EXT-X-KEY:METHOD=NONE\\r*\\n*#EXTINF:2\\.4,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1530. "#EXT-X-KEY:METHOD=NONE\\r*\\n*#EXTINF:1\\.467,[\\s\\S]*?#EXT-X-DISCONTINUITY"
  1531. ]
  1532. },
  1533. {
  1534. "name": "一起看广告",
  1535. "hosts": [
  1536. "yqk88"
  1537. ],
  1538. "regex": [
  1539. "18.4",
  1540. "15.1666",
  1541. "16.5333",
  1542. "#EXT-X-DISCONTINUITY\\r*\\n*[\\s\\S]*?#EXT-X-CUE-IN"
  1543. ]
  1544. },
  1545. {
  1546. "name": "磁力广告",
  1547. "hosts": [
  1548. "magnet"
  1549. ],
  1550. "regex": [
  1551. "更多",
  1552. "请访问",
  1553. "example",
  1554. "社區",
  1555. "xuu",
  1556. "直播",
  1557. "更新",
  1558. "社区",
  1559. "有趣",
  1560. "有趣",
  1561. "英皇体育",
  1562. "全中文AV在线",
  1563. "澳门皇冠赌场",
  1564. "哥哥快来",
  1565. "美女荷官",
  1566. "裸聊",
  1567. "新片首发",
  1568. "UUE29"
  1569. ]
  1570. },
  1571. {
  1572. "name": "火山嗅探",
  1573. "hosts": [
  1574. "huoshan.com"
  1575. ],
  1576. "regex": [
  1577. "item_id="
  1578. ]
  1579. },
  1580. {
  1581. "name": "proxy",
  1582. "hosts": [
  1583. "raw.githubusercontent.com",
  1584. "googlevideo.com",
  1585. "cdn.v82u1l.com",
  1586. "cdn.iz8qkg.com",
  1587. "cdn.kin6c1.com",
  1588. "c.biggggg.com",
  1589. "c.olddddd.com",
  1590. "haiwaikan.com",
  1591. "www.histar.tv",
  1592. "access.mypikpak.com",
  1593. "api-drive.mypikpak.com",
  1594. "user.mypikpak.com",
  1595. "youtube.com",
  1596. "uhibo.com",
  1597. "thze.cc",
  1598. ".*boku.*",
  1599. ".*nivod.*",
  1600. "*.t4tv.hz.cz",
  1601. ".*ulivetv.*"
  1602. ]
  1603. },
  1604. {
  1605. "host": "www.iesdouyin.com",
  1606. "rule": [
  1607. "playwm/?video_id="
  1608. ]
  1609. },
  1610. {
  1611. "host": "www.ysgc.vip",
  1612. "rule": [
  1613. "getm3u8?url=http"
  1614. ]
  1615. },
  1616. {
  1617. "host": "v.douyin.com",
  1618. "rule": [
  1619. "playwm/?video_id="
  1620. ]
  1621. },
  1622. {
  1623. "host": "dyxs20.com",
  1624. "rule": [
  1625. ".m3u8"
  1626. ]
  1627. },
  1628. {
  1629. "host": "www.agemys.cc",
  1630. "rule": [
  1631. "cdn-tos",
  1632. "obj/tos-cn"
  1633. ]
  1634. },
  1635. {
  1636. "host": "*",
  1637. "rule": [
  1638. "default.365yg.com"
  1639. ]
  1640. },
  1641. {
  1642. "host": "www.sharenice.net",
  1643. "rule": [
  1644. "qianpailive.com",
  1645. "vid="
  1646. ]
  1647. },
  1648. {
  1649. "host": "*",
  1650. "rule": [
  1651. "douyin.com/aweme",
  1652. "video_id="
  1653. ]
  1654. },
  1655. {
  1656. "host": "*",
  1657. "rule": [
  1658. "huoshan.com",
  1659. "/item/video/"
  1660. ]
  1661. },
  1662. {
  1663. "host": "*",
  1664. "rule": [
  1665. "http((?!http).){12,}?\\.(m3u8|mp4|flv|avi|mkv|rm|wmv|mpg|m4a)\\?.*"
  1666. ]
  1667. },
  1668. {
  1669. "host": "*",
  1670. "rule": [
  1671. "http((?!http).){12,}\\.(m3u8|mp4|flv|avi|mkv|rm|wmv|mpg|m4a)"
  1672. ]
  1673. },
  1674. {
  1675. "name": "欧:智能AI已过滤广告🥨欢迎继续收看节目",
  1676. "hosts": [
  1677. "http"
  1678. ],
  1679. "disable": [
  1680. "aliyuncs.com",
  1681. "olemovienews.com",
  1682. "ninjia.online",
  1683. "vdtuzv.com",
  1684. "json.icu",
  1685. "/asp/hls/",
  1686. "huya.com",
  1687. "zsyzcy.cn",
  1688. "/nby/",
  1689. "yjys.me",
  1690. "122.228.8.29:4433/Cache",
  1691. "huohua",
  1692. "cdn.json.icu"
  1693. ],
  1694. "rules": [
  1695. {
  1696. "regexp": "AI"
  1697. }
  1698. ],
  1699. "toLog": 0
  1700. },
  1701. {
  1702. "name": "欧:智能AI已过滤广告🥨欢迎继续收看节目",
  1703. "hosts": [
  1704. "http"
  1705. ],
  1706. "disable": [
  1707. "aliyuncs.com",
  1708. "TVOD"
  1709. ],
  1710. "rules": [
  1711. {
  1712. "regexp": "AI2"
  1713. }
  1714. ],
  1715. "toLog": 0
  1716. },
  1717. {
  1718. "name": "抖音嗅探",
  1719. "hosts": [
  1720. "douyin.com"
  1721. ],
  1722. "regex": [
  1723. "is_play_url="
  1724. ]
  1725. },
  1726. {
  1727. "name": "农民嗅探",
  1728. "hosts": [
  1729. "toutiaovod.com"
  1730. ],
  1731. "regex": [
  1732. "video/tos/cn"
  1733. ]
  1734. }
  1735. ],
  1736. "ijk": [
  1737. {
  1738. "group": "软解码",
  1739. "options": [
  1740. {
  1741. "category": 4,
  1742. "name": "opensles",
  1743. "value": "0"
  1744. },
  1745. {
  1746. "category": 4,
  1747. "name": "overlay-format",
  1748. "value": "842225234"
  1749. },
  1750. {
  1751. "category": 4,
  1752. "name": "framedrop",
  1753. "value": "1"
  1754. },
  1755. {
  1756. "category": 4,
  1757. "name": "soundtouch",
  1758. "value": "1"
  1759. },
  1760. {
  1761. "category": 4,
  1762. "name": "start-on-prepared",
  1763. "value": "1"
  1764. },
  1765. {
  1766. "category": 1,
  1767. "name": "http-detect-range-support",
  1768. "value": "0"
  1769. },
  1770. {
  1771. "category": 1,
  1772. "name": "fflags",
  1773. "value": "fastseek"
  1774. },
  1775. {
  1776. "category": 2,
  1777. "name": "skip_loop_filter",
  1778. "value": "48"
  1779. },
  1780. {
  1781. "category": 4,
  1782. "name": "reconnect",
  1783. "value": "1"
  1784. },
  1785. {
  1786. "category": 4,
  1787. "name": "max-buffer-size",
  1788. "value": "5242880"
  1789. },
  1790. {
  1791. "category": 4,
  1792. "name": "enable-accurate-seek",
  1793. "value": "0"
  1794. },
  1795. {
  1796. "category": 4,
  1797. "name": "mediacodec",
  1798. "value": "0"
  1799. },
  1800. {
  1801. "category": 4,
  1802. "name": "mediacodec-auto-rotate",
  1803. "value": "0"
  1804. },
  1805. {
  1806. "category": 4,
  1807. "name": "mediacodec-handle-resolution-change",
  1808. "value": "0"
  1809. },
  1810. {
  1811. "category": 4,
  1812. "name": "mediacodec-hevc",
  1813. "value": "0"
  1814. },
  1815. {
  1816. "category": 1,
  1817. "name": "dns_cache_timeout",
  1818. "value": "600000000"
  1819. }
  1820. ]
  1821. },
  1822. {
  1823. "group": "硬解码",
  1824. "options": [
  1825. {
  1826. "category": 4,
  1827. "name": "opensles",
  1828. "value": "0"
  1829. },
  1830. {
  1831. "category": 4,
  1832. "name": "overlay-format",
  1833. "value": "842225234"
  1834. },
  1835. {
  1836. "category": 4,
  1837. "name": "framedrop",
  1838. "value": "1"
  1839. },
  1840. {
  1841. "category": 4,
  1842. "name": "soundtouch",
  1843. "value": "1"
  1844. },
  1845. {
  1846. "category": 4,
  1847. "name": "start-on-prepared",
  1848. "value": "1"
  1849. },
  1850. {
  1851. "category": 1,
  1852. "name": "http-detect-range-support",
  1853. "value": "0"
  1854. },
  1855. {
  1856. "category": 1,
  1857. "name": "fflags",
  1858. "value": "fastseek"
  1859. },
  1860. {
  1861. "category": 2,
  1862. "name": "skip_loop_filter",
  1863. "value": "48"
  1864. },
  1865. {
  1866. "category": 4,
  1867. "name": "reconnect",
  1868. "value": "1"
  1869. },
  1870. {
  1871. "category": 4,
  1872. "name": "max-buffer-size",
  1873. "value": "5242880"
  1874. },
  1875. {
  1876. "category": 4,
  1877. "name": "enable-accurate-seek",
  1878. "value": "0"
  1879. },
  1880. {
  1881. "category": 4,
  1882. "name": "mediacodec",
  1883. "value": "1"
  1884. },
  1885. {
  1886. "category": 4,
  1887. "name": "mediacodec-auto-rotate",
  1888. "value": "1"
  1889. },
  1890. {
  1891. "category": 4,
  1892. "name": "mediacodec-handle-resolution-change",
  1893. "value": "1"
  1894. },
  1895. {
  1896. "category": 4,
  1897. "name": "mediacodec-hevc",
  1898. "value": "1"
  1899. },
  1900. {
  1901. "category": 1,
  1902. "name": "dns_cache_timeout",
  1903. "value": "600000000"
  1904. }
  1905. ]
  1906. }
  1907. ],
  1908. "ads": [
  1909. "mimg.0c1q0l.cn",
  1910. "www.googletagmanager.com",
  1911. "www.google-analytics.com",
  1912. "mc.usihnbcq.cn",
  1913. "mg.g1mm3d.cn",
  1914. "mscs.svaeuzh.cn",
  1915. "cnzz.hhttm.top",
  1916. "tp.vinuxhome.com",
  1917. "cnzz.mmstat.com",
  1918. "www.baihuillq.com",
  1919. "s23.cnzz.com",
  1920. "z3.cnzz.com",
  1921. "c.cnzz.com",
  1922. "stj.v1vo.top",
  1923. "z12.cnzz.com",
  1924. "img.mosflower.cn",
  1925. "tips.gamevvip.com",
  1926. "ehwe.yhdtns.com",
  1927. "xdn.cqqc3.com",
  1928. "www.jixunkyy.cn",
  1929. "sp.chemacid.cn",
  1930. "hm.baidu.com",
  1931. "s9.cnzz.com",
  1932. "z6.cnzz.com",
  1933. "um.cavuc.com",
  1934. "mav.mavuz.com",
  1935. "wofwk.aoidf3.com",
  1936. "z5.cnzz.com",
  1937. "xc.hubeijieshikj.cn",
  1938. "tj.tianwenhu.com",
  1939. "xg.gars57.cn",
  1940. "k.jinxiuzhilv.com",
  1941. "cdn.bootcss.com",
  1942. "ppl.xunzhuo123.com",
  1943. "xomk.jiangjunmh.top",
  1944. "img.xunzhuo123.com",
  1945. "z1.cnzz.com",
  1946. "s13.cnzz.com",
  1947. "xg.huataisangao.cn",
  1948. "z7.cnzz.com",
  1949. "xg.huataisangao.cn",
  1950. "z2.cnzz.com",
  1951. "s96.cnzz.com",
  1952. "q11.cnzz.com",
  1953. "thy.dacedsfa.cn",
  1954. "xg.whsbpw.cn",
  1955. "s19.cnzz.com",
  1956. "z8.cnzz.com",
  1957. "s4.cnzz.com",
  1958. "f5w.as12df.top",
  1959. "ae01.alicdn.com",
  1960. "www.92424.cn",
  1961. "k.wudejia.com",
  1962. "vivovip.mmszxc.top",
  1963. "qiu.xixiqiu.com",
  1964. "cdnjs.hnfenxun.com",
  1965. "cms.qdwght.com"
  1966. ]
  1967. }