XYQTVBox.json 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851
  1. {
  2. "wallpaper": "https://picsum.photos/1280/720/?blur=2",
  3. "spider": "./jars/spider0808.jar",
  4. "lives":
  5. [
  6. {"name":"直播┃Guovin","type":0,"url":"https://ghproxy.net/raw.githubusercontent.com/Guovin/TV/gd/result.txt","playerType":1,"ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
  7. {"name":"直播┃川川","type":0,"url":"https://ghproxy.net/https://raw.githubusercontent.com/wokaotianshi123/zubotv/main/sichuanzubo.m3u","playerType":1,"ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
  8. {"name":"直播┃渝渝","type":0,"url":"https://ghproxy.net/https://raw.githubusercontent.com/wokaotianshi123/zubotv/main/chongqingzubo.m3u","playerType":1,"ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
  9. {"name":"直播┃湘湘","type":0,"url":"https://ghproxy.net/https://raw.githubusercontent.com/wokaotianshi123/zubotv/main/hunanzubo.m3u","playerType":1,"ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
  10. {"name":"直播┃hanhan8127","type":0,"url":"https://ghproxy.net/https://raw.githubusercontent.com/hanhan8127/TVBox/main/live.txt","playerType":1,"ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
  11. {"name":"直播┃aliluya1977","type":0,"url":"https://ghproxy.net/https://raw.githubusercontent.com/aliluya1977/TVBox/master/TV/live.txt","playerType":1,"ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
  12. {"name":"直播┃xiongjian83","type":0,"url":"https://ghproxy.net/https://raw.githubusercontent.com/xiongjian83/TvBox/main/x.txt","playerType":1,"ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
  13. {"name":"直播┃zhumeng11","type":0,"url":"https://ghproxy.net/https://raw.githubusercontent.com/zhumeng11/IPTV/main/IPTV.m3u","playerType":1,"ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
  14. {"name":"直播┃kimwang1978","type":0,"url":"https://ghproxy.net/https://raw.githubusercontent.com/kimwang1978/collect-tv-txt/main/merged_output.txt","playerType":1,"ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
  15. {"name":"直播┃ssili126","type":0,"url":"https://ghproxy.net/https://raw.githubusercontent.com/ssili126/tv/main/itvlist.txt","playerType":1,"ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
  16. {"name": "直播┃wlcmc1972","type": 0,"url": "https://fanmingming.com/txt?url=https://mirror.ghproxy.com/https://raw.githubusercontent.com/wlcmc1972/tvbox/main/tv/live1.m3u","playerType":1,"ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
  17. {"name":"直播┃live_V6","type":0,"url":"./iptv/live_v6.txt","playerType":1,"ua":"okhttp/3.15","epg":"http://epg.112114.xyz/?ch={name}&date={date}","logo":"https://epg.112114.xyz/logo/{name}.png"},
  18. {"name":"直播┃央视频嗅探","ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0","type":0,"timeout": 40,"url":"./iptv/xiutan.m3u"}
  19. ],
  20. "sites": [
  21. {"key":"豆瓣","name":"🐰豆瓣┃潇洒线路0808🐰","type":3,"api":"csp_Douban","searchable":0},
  22. {"key":"drpy_js_豆瓣2","name":"🅱豆瓣[js]┃备用","type":3,"api":"./drpy_js/libs/drpy2.min.js","ext":"./drpy_js/js/douban_list.js","searchable": 0,"quickSearch": 0,"filterable": 1},
  23. {"key":"csp_JianPian","name":"🔨荐片|2K首选","type":3,"api":"csp_JianPian","playerType":1,"searchable":1,"quickSearch":1,"filterable":1,"ext":"http://112.124.0.131:20000/"},
  24. {"key":"csp_Ikanbot","name": "👾Ikanbot|采集大全","type": 3,"api": "csp_Ikanbot","searchable": 1,"quickSearch": 1,"filterable": 1,"ext":"https://v.aikanbot.com"},
  25. {"key":"央视大全","name":"🌎央视大全SP┃修正版0808","type":3,"api":"csp_CCTV","searchable":1,"changeable":0, "jar": "./jars/cntvnew0808.jar"},
  26. {
  27. "key": "hipy_t3_cntv央视[py]",
  28. "name": "cntv央视[py](hipy_t3)┃easybox&宝盒专用",
  29. "type": 3,
  30. "api": "./drpy_py/cntv央视.py",
  31. "searchable": 1,
  32. "quickSearch": 0,
  33. "filterable": 1,
  34. "ext": "./drpy_py/cntv央视.json"
  35. },
  36. {"key":"哔哩哔哩","name":"哔哩哔哩","type":3,"api":"csp_Bili","playerType":2,"searchable":1,"changeable":0,"style":{"type":"rect","ratio":1.7}, "jar": "./jars/cntvnew0808.jar"},
  37. {"key":"直播平台","name":"直播平台","type":3,"api":"csp_JustLive","searchable":0,"changeable":0,"style":{"type":"rect","ratio":1.7}, "jar": "./jars/cntvnew0808.jar"},
  38. {"key":"体育直播","name":"体育直播","type":3,"api":"csp_SportsLive","searchable":0,"changeable":0,"style":{"type":"list"},"ext":{"jrkan":"http://m.jrkan2023.com","88kanqiu":"http://www.88kanqiu.love"}, "jar": "./jars/cntvnew0808.jar"},
  39. {"key":"体育录像","name":"体育录像","type":3,"api":"csp_SportsReplay","searchable":0,"changeable":0,"style":{"type":"list"},"ext":{"88kanqiu":"http://www.88kanqiu.love"}, "jar": "./jars/cntvnew0808.jar"},
  40. {"key":"drpy_js_cctv","name":"🌎CCTV大全(drpy_t3)┃影视(无筛选)","type":3,"api":"./drpy_dzlive/drpy_libs/drpy2.min.js","ext":"./drpy_js/js/央视大全[央].js","searchable": 0,"quickSearch": 0,"filterable": 1},
  41. {
  42. "key": "hipy_js_黑木耳资源[资]",
  43. "name": "黑木耳资源[资](drpy_t3)",
  44. "type": 3,
  45. "api": "https://mirror.ghproxy.com/raw.githubusercontent.com/xyzjhe/PaoKU/master/app/t4/files/drpy_libs/drpy2.min.js",
  46. "searchable": 1,
  47. "quickSearch": 1,
  48. "filterable": 1,
  49. "order_num": 98,
  50. "ext": "https://mirror.ghproxy.com/raw.githubusercontent.com/xyzjhe/PaoKU/master/app/t4/files/drpy_js/黑木耳资源[资].js"
  51. },
  52. {
  53. "key": "配置中心",
  54. "name": "配置|中心",
  55. "type": 3,
  56. "api": "csp_Config",
  57. "searchable": 0,
  58. "changeable": 0,
  59. "indexs": 0,
  60. "style": {
  61. "type": "rect",
  62. "ratio": 1.597
  63. },
  64. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  65. },
  66. {
  67. "key": "无忧短剧",
  68. "name": "无忧|短剧",
  69. "type": 3,
  70. "api": "csp_Duanj",
  71. "searchable": 1,
  72. "changeable": 0,
  73. "style": {
  74. "type": "rect",
  75. "ratio": 1.433
  76. },
  77. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  78. },
  79. {
  80. "key": "在线短剧",
  81. "name": "在线|短剧",
  82. "type": 3,
  83. "api": "csp_Duanju",
  84. "searchable": 1,
  85. "changeable": 0,
  86. "style": {
  87. "type": "rect",
  88. "ratio": 1.433
  89. },
  90. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  91. },
  92. {
  93. "key": "韩小圈",
  94. "name": "韩小圈|APP",
  95. "type": 3,
  96. "api": "csp_HanXiaoQuan",
  97. "searchable": 1,
  98. "quickSearch": 1,
  99. "filterable": 1,
  100. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  101. },
  102. {
  103. "key": "新感觉",
  104. "name": "新感觉|APP",
  105. "type": 3,
  106. "api": "csp_AppYsV2",
  107. "searchable": 1,
  108. "quickSearch": 1,
  109. "filterable": 1,
  110. "ext": "http://43.248.100.147:9891/api.php/app/"
  111. },
  112. {
  113. "key": "南瓜影视",
  114. "name": "南瓜|APP",
  115. "type": 3,
  116. "api": "csp_WexNgys",
  117. "searchable": 1,
  118. "quickSearch": 1,
  119. "filterable": 1
  120. },
  121. {
  122. "key": "天天影视",
  123. "name": "天天|APP",
  124. "type": 3,
  125. "api": "csp_AppTT",
  126. "searchable": 1,
  127. "quickSearch": 1,
  128. "filterable": 1
  129. },
  130. {
  131. "key": "热播影视",
  132. "name": "热播|APP",
  133. "type": 3,
  134. "api": "csp_AppRB",
  135. "searchable": 1,
  136. "quickSearch": 1,
  137. "filterable": 1
  138. },
  139. {
  140. "key": "追剧影视",
  141. "name": "追剧|APP",
  142. "type": 3,
  143. "api": "csp_AppZJ",
  144. "searchable": 1,
  145. "quickSearch": 1,
  146. "filterable": 1,
  147. "ext": "http://z.kzjtv.com/"
  148. },
  149. {
  150. "key": "大米星球",
  151. "name": "大米|APP",
  152. "type": 3,
  153. "api": "csp_AppDaMi",
  154. "searchable": 1,
  155. "quickSearch": 1,
  156. "filterable": 1
  157. },
  158. {
  159. "key": "铁剧影视",
  160. "name": "铁剧|APP",
  161. "type": 3,
  162. "api": "csp_AppBr",
  163. "searchable": 1,
  164. "quickSearch": 1,
  165. "filterable": 1
  166. },
  167. {
  168. "key": "笙歌影视",
  169. "name": "笙歌|APP",
  170. "type": 3,
  171. "api": "csp_AppYY",
  172. "searchable": 1,
  173. "quickSearch": 1,
  174. "changeable": 1
  175. },
  176. {
  177. "key": "不卡影视",
  178. "name": "不卡|APP",
  179. "type": 3,
  180. "api": "csp_App",
  181. "searchable": 1,
  182. "quickSearch": 1,
  183. "changeable": 1,
  184. "ext": "PuMSXHTlG7XuTPHibOyZteVY1Bbl6ZlsngCB5cB1aT58PUe5B3fTqNqjFlBRB9gUMb3sBH9Ft54h0DfIM8NZXSQZqL75gkSizgP2bD/FXuU7p8/Atv6nfoWFwgWWXehi2e2bdvWuIZd/iTHBLXJLOErvkwen7BleeOnRa7QzqB9XmOsv/M7AccHoiKa8JPMRfdXDPQT4Edlrk+Fij03D/m66ytOrnl7W4tGxo7UmbtKLKuR1Tr2ureKLLfmEqHCOdCwtqw2Bgi/NNxDXZQAx5ihHKNNipXEDhBXyQBJgfnsuxCd95h1gj845lEYqc/PK/WI9fbWCuQMfd50aPtxG/rRQjPClzRSEk+KOpz9njtQ="
  185. },
  186. {
  187. "key": "摩托影视",
  188. "name": "摩托|APP",
  189. "type": 3,
  190. "api": "csp_App",
  191. "searchable": 1,
  192. "quickSearch": 1,
  193. "filterable": 1,
  194. "ext": "j3UE7cVyk0jKGyMPkJ35EnqUgtOg+PN9OJevxJzkfD20vgt+RqQVvc3kcbSRgThbJjVk2hC6FWnD0fWIqWd4D4S/NPFftLiwX7Yf2pvV3P2hRAjNWiPO+iJQ33XkJeUHW9gMIzn0FkxZOs+o8juC1SnSkfjblSU1wtxBOetwgC8habcRdvOZEjBSLuZj8SlIjQ9QzwZivBSQGQ44j1bkAxNO4k1MhYbM5Z6QWxv/341MNNt7lsI9pldpg5/KtM/USj9Ftmmree+9m/3E/UgIwWzCl3Ax9B8NQQ7uGFr2wq68ahEIcCZyL3l+U37oARUk"
  195. },
  196. {
  197. "key": "采集之王",
  198. "name": "采集|合集",
  199. "type": 3,
  200. "api": "./JS/drpy2.min.js",
  201. "searchable": 1,
  202. "quickSearch": 1,
  203. "ext": "./JS/采集之王.js?type=url&params=../JSON/采集静态.json$1$1"
  204. },
  205. {
  206. "key": "厂长资源",
  207. "name": "厂长|资源",
  208. "type": 3,
  209. "api": "csp_Czsapp",
  210. "searchable": 1,
  211. "quickSearch": 1,
  212. "filterable": 1,
  213. "ext": "https://www.czys.pro/"
  214. },
  215. {
  216. "key": "低端影视",
  217. "name": "低端|影视",
  218. "type": 3,
  219. "api": "csp_Ddys",
  220. "searchable": 1,
  221. "quickSearch": 1,
  222. "filterable": 1
  223. },
  224. {
  225. "key": "快看影视",
  226. "name": "快看|影视",
  227. "type": 3,
  228. "api": "csp_Kuaikan",
  229. "searchable": 1,
  230. "quickSearch": 1,
  231. "filterable": 1
  232. },
  233. {
  234. "key": "苹果影视",
  235. "name": "苹果|影视",
  236. "type": 3,
  237. "api": "csp_LiteApple",
  238. "searchable": 1,
  239. "quickSearch": 1,
  240. "filterable": 1
  241. },
  242. {
  243. "key": "剧圈影视",
  244. "name": "剧圈|影视",
  245. "type": 3,
  246. "api": "csp_Juqq",
  247. "searchable": 1,
  248. "quickSearch": 1,
  249. "filterable": 1
  250. },
  251. {
  252. "key": "毛驴影视",
  253. "name": "毛驴|影视",
  254. "type": 3,
  255. "api": "csp_MaoLv",
  256. "searchable": 1,
  257. "quickSearch": 1,
  258. "filterable": 1
  259. },
  260. {
  261. "key": "可可影视",
  262. "name": "可可|影视",
  263. "type": 3,
  264. "api": "csp_Keke",
  265. "searchable": 1,
  266. "quickSearch": 1,
  267. "filterable": 1
  268. },
  269. {
  270. "key": "圣城影视",
  271. "name": "圣城|影视",
  272. "type": 3,
  273. "api": "csp_SC1080",
  274. "searchable": 1,
  275. "quickSearch": 1,
  276. "filterable": 1
  277. },
  278. {
  279. "key": "疯狗影视",
  280. "name": "疯狗|影视",
  281. "type": 3,
  282. "api": "csp_FengGo",
  283. "searchable": 1,
  284. "quickSearch": 1,
  285. "filterable": 1
  286. },
  287. {
  288. "key": "全网影视",
  289. "name": "全网|影视",
  290. "type": 3,
  291. "api": "csp_Quanwk",
  292. "searchable": 1,
  293. "quickSearch": 1,
  294. "filterable": 1
  295. },
  296. {
  297. "key": "最新影视",
  298. "name": "最新|影视",
  299. "type": 3,
  300. "api": "csp_Zx1080",
  301. "searchable": 1,
  302. "quickSearch": 1,
  303. "filterable": 1
  304. },
  305. {
  306. "key": "爱看影视",
  307. "name": "爱看|影视",
  308. "type": 3,
  309. "api": "csp_Ikan",
  310. "searchable": 1,
  311. "quickSearch": 1,
  312. "filterable": 1
  313. },
  314. {
  315. "key": "桃子影视",
  316. "name": "桃子|影视",
  317. "type": 3,
  318. "api": "csp_Taozi",
  319. "searchable": 1,
  320. "quickSearch": 1,
  321. "filterable": 1
  322. },
  323. {
  324. "key": "FreeOK",
  325. "name": "Free|影视",
  326. "type": 3,
  327. "api": "csp_FreeOK",
  328. "searchable": 1,
  329. "quickSearch": 1,
  330. "filterable": 1
  331. },
  332. {
  333. "key": "兄弟影视",
  334. "name": "兄弟|影视",
  335. "type": 3,
  336. "api": "csp_Wexxiongdiys",
  337. "searchable": 1,
  338. "changeable": 1
  339. },
  340. {
  341. "key": "酷看影视",
  342. "name": "酷看|影视",
  343. "type": 3,
  344. "api": "csp_Wexkukantv",
  345. "searchable": 1,
  346. "changeable": 1
  347. },
  348. {
  349. "key": "明日影视",
  350. "name": "明日|影视",
  351. "type": 3,
  352. "api": "csp_WexMingriys",
  353. "searchable": 1,
  354. "changeable": 1
  355. },
  356. {
  357. "key": "腐剧视频",
  358. "name": "腐剧|视频",
  359. "type": 3,
  360. "api": "csp_WexFujutv",
  361. "searchable": 1,
  362. "changeable": 1
  363. },
  364. {
  365. "key": "啾啾影视",
  366. "name": "啾啾|影视",
  367. "type": 3,
  368. "api": "csp_Wexjiohub",
  369. "searchable": 1,
  370. "changeable": 1
  371. },
  372. {
  373. "key": "星辰影视",
  374. "name": "星辰|影视",
  375. "type": 3,
  376. "api": "csp_WexXingchen",
  377. "searchable": 1,
  378. "changeable": 1
  379. },
  380. {
  381. "key": "农民影视",
  382. "name": "农民|影视",
  383. "type": 3,
  384. "api": "csp_WexNmys",
  385. "searchable": 1,
  386. "changeable": 1
  387. },
  388. {
  389. "key": "立播影视",
  390. "name": "立播|影视",
  391. "type": 3,
  392. "api": "csp_Wexlibhd",
  393. "searchable": 1,
  394. "changeable": 1
  395. },
  396. {
  397. "key": "纯享影视",
  398. "name": "纯享|影视",
  399. "type": 3,
  400. "api": "csp_WexF4kvm",
  401. "searchable": 1,
  402. "changeable": 1
  403. },
  404. {
  405. "key": "两个磁力",
  406. "name": "比特|影视",
  407. "type": 3,
  408. "api": "csp_Wexbttwo",
  409. "searchable": 1,
  410. "changeable": 1
  411. },
  412. {
  413. "key": "骚火影视",
  414. "name": "骚火|影视",
  415. "type": 3,
  416. "api": "csp_Wexsaohuo",
  417. "searchable": 1,
  418. "changeable": 1
  419. },
  420. {
  421. "key": "在线之家",
  422. "name": "在线|影视",
  423. "type": 3,
  424. "api": "csp_Wexzxzj",
  425. "searchable": 1,
  426. "changeable": 1
  427. },
  428. {
  429. "key": "愉悦影视",
  430. "name": "愉悦|影视",
  431. "type": 3,
  432. "api": "csp_Wexyuyueys",
  433. "searchable": 1,
  434. "changeable": 1
  435. },
  436. {
  437. "key": "良品短剧",
  438. "name": "良品|短剧",
  439. "type": 3,
  440. "api": "csp_Wexduanjuvip",
  441. "searchable": 1,
  442. "changeable": 1
  443. },
  444. {
  445. "key": "星芽短剧",
  446. "name": "星芽|短剧",
  447. "type": 3,
  448. "api": "csp_AppXY",
  449. "searchable": 1,
  450. "quickSearch": 0,
  451. "filterable": 0
  452. },
  453. {
  454. "key": "看看影视",
  455. "name": "看看|影视",
  456. "type": 3,
  457. "api": "csp_WebIV",
  458. "searchable": 1,
  459. "quickSearch": 1,
  460. "filterable": 0
  461. },
  462. {
  463. "key": "视频库",
  464. "name": "视频库|影视",
  465. "type": 3,
  466. "api": "csp_WebVidHub",
  467. "searchable": 1,
  468. "quickSearch": 0,
  469. "filterable": 0,
  470. "ext": "https://vidhub1.cc"
  471. },
  472. {
  473. "key": "达达龟",
  474. "name": "达达龟|影视",
  475. "type": 3,
  476. "api": "csp_Dadag",
  477. "searchable": 1,
  478. "quickSearch": 1,
  479. "filterable": 1
  480. },
  481. {
  482. "key": "素白白",
  483. "name": "素白白|影视",
  484. "type": 3,
  485. "api": "csp_Subaibai",
  486. "searchable": 1,
  487. "changeable": 1
  488. },
  489. {
  490. "key": "机器人",
  491. "name": "机器人|影视",
  492. "type": 3,
  493. "api": "csp_Ikanbot",
  494. "searchable": 1,
  495. "quickSearch": 1,
  496. "changeable": 1,
  497. "ext": "https://v.aikanbot.com"
  498. },
  499. {
  500. "key": "蚂蚁资源",
  501. "name": "蚂蚁|采集",
  502. "type": 1,
  503. "api": "http://dsakf23665.com/api.php/provide/vod/from/NBY",
  504. "searchable": 1,
  505. "changeable": 1,
  506. "playUrl": "json:http://121.62.61.51:6888//api//?key=qMdg1EDXPe9NH3bG0z&url="
  507. },
  508. {
  509. "key": "南瓜弹幕",
  510. "name": "南瓜|弹幕",
  511. "type": 3,
  512. "api": "csp_Nangua",
  513. "searchable": 1,
  514. "quickSearch": 1,
  515. "filterable": 1,
  516. "ext": {
  517. "danmu": true
  518. },
  519. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  520. },
  521. {
  522. "key": "酷看弹幕",
  523. "name": "酷看|弹幕",
  524. "type": 3,
  525. "api": "csp_Kkys",
  526. "searchable": 1,
  527. "quickSearch": 1,
  528. "filterable": 1,
  529. "ext": {
  530. "danmu": true
  531. },
  532. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  533. },
  534. {
  535. "key": "厂长弹幕",
  536. "name": "厂长|弹幕",
  537. "type": 3,
  538. "api": "csp_Czzy",
  539. "searchable": 1,
  540. "quickSearch": 1,
  541. "filterable": 1,
  542. "ext": {
  543. "danmu": true
  544. },
  545. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  546. },
  547. {
  548. "key": "天天弹幕",
  549. "name": "天天|弹幕",
  550. "type": 3,
  551. "api": "csp_TianTian",
  552. "searchable": 1,
  553. "quickSearch": 1,
  554. "filterable": 1,
  555. "ext": {
  556. "danmu": true
  557. },
  558. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  559. },
  560. {
  561. "key": "文才弹幕",
  562. "name": "文才|弹幕",
  563. "type": 3,
  564. "api": "csp_Jpys",
  565. "searchable": 1,
  566. "quickSearch": 1,
  567. "filterable": 1,
  568. "ext": {
  569. "danmu": true
  570. },
  571. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  572. },
  573. {
  574. "key": "立播弹幕",
  575. "name": "立播|弹幕",
  576. "type": 3,
  577. "api": "csp_Libvio",
  578. "searchable": 1,
  579. "filterable": 1,
  580. "changeable": 1,
  581. "ext": {
  582. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  583. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  584. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  585. "danmu": true
  586. },
  587. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  588. },
  589. {
  590. "key": "三六零弹幕",
  591. "name": "三六零|弹幕",
  592. "type": 3,
  593. "api": "csp_Sp360",
  594. "searchable": 1,
  595. "filterable": 1,
  596. "changeable": 1,
  597. "ext": {
  598. "danmu": true
  599. },
  600. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  601. },
  602. {
  603. "key": "机器人弹幕",
  604. "name": "机器人|弹幕",
  605. "type": 3,
  606. "api": "csp_Ikanbot",
  607. "searchable": 1,
  608. "quickSearch": 1,
  609. "filterable": 1,
  610. "ext": {
  611. "danmu": true
  612. },
  613. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  614. },
  615. {
  616. "key": "小苹果弹幕",
  617. "name": "小苹果|弹幕",
  618. "type": 3,
  619. "api": "csp_Xpg",
  620. "searchable": 1,
  621. "quickSearch": 1,
  622. "filterable": 1,
  623. "ext": {
  624. "danmu": true
  625. },
  626. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  627. },
  628. {
  629. "key": "一起看弹幕",
  630. "name": "一起看|弹幕",
  631. "type": 3,
  632. "api": "csp_Yqk",
  633. "searchable": 1,
  634. "quickSearch": 1,
  635. "filterable": 1,
  636. "ext": {
  637. "danmu": true
  638. },
  639. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  640. },
  641. {
  642. "key": "JOJO弹幕",
  643. "name": "JOJO|弹幕",
  644. "type": 3,
  645. "api": "csp_Jiohub",
  646. "searchable": 1,
  647. "quickSearch": 1,
  648. "filterable": 1,
  649. "ext": {
  650. "danmu": true
  651. },
  652. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  653. },
  654. {
  655. "key": "荐片弹幕",
  656. "name": "荐片|弹幕",
  657. "type": 3,
  658. "api": "csp_Jianpian",
  659. "playerType": 1,
  660. "searchable": 1,
  661. "quickSearch": 1,
  662. "filterable": 1,
  663. "ext": {
  664. "danmu": true
  665. },
  666. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  667. },
  668. {
  669. "key": "哔嘀弹幕",
  670. "name": "哔嘀|弹幕",
  671. "type": 3,
  672. "api": "csp_Bdys",
  673. "searchable": 1,
  674. "quickSearch": 1,
  675. "filterable": 1,
  676. "ext": {
  677. "site": "https://www.yjys01.com",
  678. "danmu": true
  679. },
  680. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  681. },
  682. {
  683. "key": "不太灵弹幕",
  684. "name": "不太灵|弹幕",
  685. "type": 3,
  686. "api": "csp_Bt0",
  687. "searchable": 1,
  688. "changeable": 1,
  689. "ext": {
  690. "danmu": true
  691. },
  692. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  693. },
  694. {
  695. "key": "玩偶弹幕",
  696. "name": "玩偶哥哥|4K弹幕",
  697. "type": 3,
  698. "api": "csp_Wogg",
  699. "searchable": 1,
  700. "quickSearch": 1,
  701. "filterable": 1,
  702. "ext": {
  703. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  704. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  705. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  706. "wogg": true,
  707. "danmu": true
  708. },
  709. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  710. },
  711. {
  712. "key": "玩偶备用弹幕",
  713. "name": "玩偶备用|4K弹幕",
  714. "type": 3,
  715. "api": "csp_Wogg",
  716. "quickSearch": 1,
  717. "changeable": 1,
  718. "filterable": 1,
  719. "ext": {
  720. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  721. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  722. "site": "https://wogg.xxooo.cf",
  723. "danmu": true
  724. },
  725. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  726. },
  727. {
  728. "key": "夸克玩偶弹幕",
  729. "name": "玩偶表哥|4K弹幕",
  730. "type": 3,
  731. "api": "csp_Wobg",
  732. "searchable": 1,
  733. "quickSearch": 1,
  734. "filterable": 1,
  735. "changeable": 1,
  736. "ext": {
  737. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  738. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  739. "danmu": true
  740. },
  741. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  742. },
  743. {
  744. "key": "夸克土豆弹幕",
  745. "name": "土豆|4K弹幕",
  746. "type": 3,
  747. "api": "csp_Wobg",
  748. "quickSearch": 1,
  749. "changeable": 1,
  750. "filterable": 1,
  751. "ext": {
  752. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  753. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  754. "site": "https://tudou.lvdoui.top",
  755. "danmu": true
  756. },
  757. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  758. },
  759. {
  760. "key": "夸克多多弹幕",
  761. "name": "多多|4K弹幕",
  762. "type": 3,
  763. "api": "csp_Wobg",
  764. "quickSearch": 1,
  765. "changeable": 1,
  766. "filterable": 1,
  767. "ext": {
  768. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  769. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  770. "site": "https://tv.yydsys.top",
  771. "danmu": true
  772. },
  773. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  774. },
  775. {
  776. "key": "夸克蜡笔弹幕",
  777. "name": "蜡笔|4K弹幕",
  778. "type": 3,
  779. "api": "csp_Wobg",
  780. "quickSearch": 1,
  781. "changeable": 1,
  782. "filterable": 1,
  783. "ext": {
  784. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  785. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  786. "site": "https://duopan.fun",
  787. "danmu": true
  788. },
  789. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  790. },
  791. {
  792. "key": "夸克至臻弹幕",
  793. "name": "至臻|4K弹幕",
  794. "type": 3,
  795. "api": "csp_Wobg",
  796. "quickSearch": 1,
  797. "changeable": 1,
  798. "filterable": 1,
  799. "ext": {
  800. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  801. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  802. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  803. "site": "https://mihdr.top",
  804. "danmu": true
  805. },
  806. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  807. },
  808. {
  809. "key": "夸克奥秘弹幕",
  810. "name": "奥秘|4K弹幕",
  811. "type": 3,
  812. "api": "csp_Wobg",
  813. "quickSearch": 1,
  814. "changeable": 1,
  815. "filterable": 1,
  816. "ext": {
  817. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  818. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  819. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  820. "site": "https://vip.omii.top",
  821. "danmu": true
  822. },
  823. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  824. },
  825. {
  826. "key": "夸克云星弹幕",
  827. "name": "云星|4K弹幕",
  828. "type": 3,
  829. "api": "csp_Wobg",
  830. "quickSearch": 1,
  831. "changeable": 1,
  832. "filterable": 1,
  833. "ext": {
  834. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  835. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  836. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  837. "site": "https://4k.4u4.cn",
  838. "danmu": true
  839. }
  840. },
  841. {
  842. "key": "夸克团长弹幕",
  843. "name": "团长|4K弹幕",
  844. "type": 3,
  845. "api": "csp_Tzfile",
  846. "searchable": 1,
  847. "filterable": 1,
  848. "changeable": 1,
  849. "ext": {
  850. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  851. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  852. "danmu": true
  853. },
  854. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  855. },
  856. {
  857. "key": "夸克影搜弹幕",
  858. "name": "影搜|弹幕",
  859. "type": 3,
  860. "api": "csp_Yingso",
  861. "searchable": 1,
  862. "filterable": 0,
  863. "changeable": 1,
  864. "ext": {
  865. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  866. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  867. "danmu": true
  868. },
  869. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  870. },
  871. {
  872. "key": "搜索弹幕",
  873. "name": "搜索|弹幕",
  874. "type": 3,
  875. "api": "csp_PanSearch",
  876. "searchable": 1,
  877. "filterable": 0,
  878. "changeable": 1,
  879. "ext": {
  880. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  881. "danmu": true
  882. },
  883. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  884. },
  885. {
  886. "key": "云云弹幕",
  887. "name": "云云|弹幕",
  888. "type": 3,
  889. "api": "csp_Upys",
  890. "searchable": 1,
  891. "filterable": 0,
  892. "changeable": 1,
  893. "ext": {
  894. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  895. "danmu": true
  896. },
  897. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  898. },
  899. {
  900. "key": "云搜弹幕",
  901. "name": "云搜|弹幕",
  902. "type": 3,
  903. "api": "csp_UpYun",
  904. "searchable": 1,
  905. "filterable": 0,
  906. "changeable": 1,
  907. "ext": {
  908. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  909. "danmu": true
  910. },
  911. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  912. },
  913. {
  914. "key": "盘搜弹幕",
  915. "name": "盘搜|弹幕",
  916. "type": 3,
  917. "api": "csp_PanSou",
  918. "searchable": 1,
  919. "filterable": 0,
  920. "changeable": 1,
  921. "ext": {
  922. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  923. "danmu": true
  924. },
  925. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  926. },
  927. {
  928. "key": "易搜弹幕",
  929. "name": "易搜|弹幕",
  930. "type": 3,
  931. "api": "csp_YiSo",
  932. "searchable": 1,
  933. "filterable": 0,
  934. "changeable": 1,
  935. "ext": {
  936. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  937. "danmu": true,
  938. "cookie": "satoken=0eedba28-be8a-4f01-81af-2d8d44808ecf"
  939. },
  940. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  941. },
  942. {
  943. "key": "云盘弹幕",
  944. "name": "云盘|弹幕",
  945. "type": 3,
  946. "api": "csp_Yunpan4k",
  947. "searchable": 1,
  948. "filterable": 0,
  949. "changeable": 1,
  950. "ext": {
  951. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  952. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  953. "danmu": true
  954. },
  955. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  956. },
  957. {
  958. "key": "米搜弹幕",
  959. "name": "米搜|弹幕",
  960. "type": 3,
  961. "api": "csp_Qkpanso",
  962. "searchable": 1,
  963. "filterable": 1,
  964. "changeable": 0,
  965. "ext": {
  966. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  967. "site": "https://www.misou.fun",
  968. "danmu": true
  969. },
  970. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  971. },
  972. {
  973. "key": "夸搜弹幕",
  974. "name": "夸搜|弹幕",
  975. "type": 3,
  976. "api": "csp_Qkso",
  977. "searchable": 1,
  978. "filterable": 1,
  979. "changeable": 0,
  980. "ext": {
  981. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  982. "danmu": true
  983. },
  984. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  985. },
  986. {
  987. "key": "小纸条弹幕",
  988. "name": "小纸条|弹幕",
  989. "type": 3,
  990. "api": "csp_XiaoZhiTiao",
  991. "searchable": 1,
  992. "filterable": 1,
  993. "changeable": 0,
  994. "ext": {
  995. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  996. "danmu": true
  997. },
  998. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  999. },
  1000. {
  1001. "key": "夸克趣盘搜弹幕",
  1002. "name": "趣盘搜|弹幕",
  1003. "type": 3,
  1004. "api": "csp_QuPanSou",
  1005. "searchable": 1,
  1006. "quickSearch": 1,
  1007. "filterable": 1,
  1008. "changeable": 1,
  1009. "ext": {
  1010. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1011. "danmu": true
  1012. },
  1013. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  1014. },
  1015. {
  1016. "key": "夸克爱盘搜弹幕",
  1017. "name": "爱盘搜|弹幕",
  1018. "type": 3,
  1019. "api": "csp_AiPanSou",
  1020. "searchable": 1,
  1021. "quickSearch": 1,
  1022. "filterable": 1,
  1023. "changeable": 1,
  1024. "ext": {
  1025. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1026. "danmu": true
  1027. },
  1028. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  1029. },
  1030. {
  1031. "key": "夸克盘搜弹幕",
  1032. "name": "夸克盘搜|弹幕",
  1033. "type": 3,
  1034. "api": "csp_Qkpanso",
  1035. "searchable": 1,
  1036. "filterable": 1,
  1037. "changeable": 1,
  1038. "ext": {
  1039. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1040. "danmu": true
  1041. },
  1042. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  1043. },
  1044. {
  1045. "key": "荐片",
  1046. "name": "荐片|磁力",
  1047. "type": 3,
  1048. "api": "csp_JianPian",
  1049. "playerType": 1,
  1050. "searchable": 1,
  1051. "quickSearch": 1,
  1052. "filterable": 1,
  1053. "ext": "http://api2.rinhome.com"
  1054. },
  1055. {
  1056. "key": "New6v",
  1057. "name": "New6V|磁力",
  1058. "type": 3,
  1059. "api": "csp_New6v",
  1060. "searchable": 1,
  1061. "quickSearch": 1,
  1062. "filterable": 1,
  1063. "ext": "https://www.xb6v.com"
  1064. },
  1065. {
  1066. "key": "SeedHub",
  1067. "name": "SeedHub|磁力",
  1068. "type": 3,
  1069. "api": "csp_SeedHub",
  1070. "searchable": 1,
  1071. "quickSearch": 1,
  1072. "filterable": 1
  1073. },
  1074. {
  1075. "key": "音范丝",
  1076. "name": "音范丝|磁力",
  1077. "type": 3,
  1078. "api": "csp_XPath",
  1079. "searchable": 1,
  1080. "quickSearch": 0,
  1081. "changeable": 0,
  1082. "ext": "./XPath/音范丝.json"
  1083. },
  1084. {
  1085. "key": "磁力熊",
  1086. "name": "磁力熊|磁力",
  1087. "type": 3,
  1088. "api": "./JS/drpy2.min.js",
  1089. "ext": "./JS/磁力熊.js"
  1090. },
  1091. {
  1092. "key": "美剧迷",
  1093. "name": "美剧迷|磁力",
  1094. "type": 3,
  1095. "api": "csp_MeijuMi",
  1096. "searchable": 1,
  1097. "quickSearch": 1,
  1098. "filterable": 1
  1099. },
  1100. {
  1101. "key": "迅雷吧",
  1102. "name": "迅雷吧|磁力",
  1103. "type": 3,
  1104. "api": "csp_Xunlei8",
  1105. "searchable": 1,
  1106. "quickSearch": 1,
  1107. "filterable": 1
  1108. },
  1109. {
  1110. "key": "酷吧电影",
  1111. "name": "酷吧电影|磁力",
  1112. "type": 3,
  1113. "api": "csp_KubaCL",
  1114. "searchable": 1,
  1115. "quickSearch": 1,
  1116. "filterable": 1
  1117. },
  1118. {
  1119. "key": "美剧天堂",
  1120. "name": "美剧天堂|磁力",
  1121. "type": 3,
  1122. "api": "csp_MeijuTT",
  1123. "searchable": 1,
  1124. "quickSearch": 1,
  1125. "filterable": 1
  1126. },
  1127. {
  1128. "key": "我的阿里",
  1129. "name": "我的|阿里",
  1130. "type": 3,
  1131. "api": "csp_MyAli",
  1132. "searchable": 0,
  1133. "quickSearch": 0,
  1134. "filterable": 0,
  1135. "indexs": 0,
  1136. "ext": {
  1137. "token": "http://127.0.0.1:9978/file/TVBox/token.txt"
  1138. },
  1139. "style": {
  1140. "type": "list"
  1141. },
  1142. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  1143. },
  1144. {
  1145. "key": "我的夸克",
  1146. "name": "我的|夸克",
  1147. "type": 3,
  1148. "api": "csp_MyQuark",
  1149. "searchable": 0,
  1150. "quickSearch": 0,
  1151. "filterable": 0,
  1152. "indexs": 0,
  1153. "ext": {
  1154. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt"
  1155. },
  1156. "style": {
  1157. "type": "list"
  1158. },
  1159. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  1160. },
  1161. {
  1162. "key": "我的UC",
  1163. "name": "我的|UC",
  1164. "type": 3,
  1165. "api": "csp_MyUc",
  1166. "searchable": 0,
  1167. "quickSearch": 0,
  1168. "filterable": 0,
  1169. "indexs": 0,
  1170. "ext": {
  1171. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt"
  1172. },
  1173. "style": {
  1174. "type": "list"
  1175. },
  1176. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  1177. },
  1178. {
  1179. "key": "阿里合集",
  1180. "name": "阿里|合集",
  1181. "type": 3,
  1182. "api": "csp_AliShare",
  1183. "searchable": 1,
  1184. "changeable": 0,
  1185. "filterable": 0,
  1186. "indexs": 0,
  1187. "ext": {
  1188. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1189. "share": "./JS/alishare.txt"
  1190. },
  1191. "style": {
  1192. "type": "list"
  1193. },
  1194. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  1195. },
  1196. {
  1197. "key": "push_agent",
  1198. "name": "手机|推送",
  1199. "type": 3,
  1200. "api": "csp_Push",
  1201. "searchable": 0,
  1202. "filterable": 0,
  1203. "changeable": 0,
  1204. "ext": {
  1205. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1206. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1207. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  1208. "danmu": true
  1209. },
  1210. "jar": "./jars/danmu0731.jar;md5;ed6d20f8cf64d14f1efc46caa3c0f474"
  1211. }
  1212. ],
  1213. "parses": [
  1214. {
  1215. "name": "聚合",
  1216. "type": 3,
  1217. "url": "Demo"
  1218. },
  1219. {
  1220. "name": "XGJ专线",
  1221. "type": "1",
  1222. "url": "http://43.248.100.147:1122/bba/json.php?url=",
  1223. "flag": [
  1224. "BBA"
  1225. ],
  1226. "header": {
  1227. "User-Agent": "Dalvik/2.1.0"
  1228. }
  1229. },
  1230. {
  1231. "name": "XMY专线",
  1232. "type": "1",
  1233. "url": "http://121.62.61.51:6888/api/?key=LHypix08ov3mx0Tyd7&url=",
  1234. "flag": [
  1235. "NBY"
  1236. ],
  1237. "header": {
  1238. "User-Agent": "Dalvik/2.1.0"
  1239. }
  1240. },
  1241. {
  1242. "name": "LX专线",
  1243. "type": "1",
  1244. "url": "http://llyh.xn--yi7aa.top/api/?key=5b317c16d457b31a3150d87c0a362a9e&url=",
  1245. "flag": [
  1246. "LXTX"
  1247. ],
  1248. "header": {
  1249. "User-Agent": "Dalvik/2.1.0"
  1250. }
  1251. },
  1252. {
  1253. "name": "DG专线",
  1254. "type": "1",
  1255. "url": "http://103.112.185.139:8989/api/?key=przwarpy6rKVZ7YA38&url=",
  1256. "flag": [
  1257. "SDLG"
  1258. ],
  1259. "header": {
  1260. "User-Agent": "Dalvik/2.1.0"
  1261. }
  1262. },
  1263. {
  1264. "name": "OL专线",
  1265. "type": "1",
  1266. "url": "http://110.40.39.158:5000/api/jiexi/common?Key=7idBzIqEEFyf4AYYXt&url=",
  1267. "flag": [
  1268. "BTOL"
  1269. ],
  1270. "header": {
  1271. "User-Agent": "Dalvik/2.1.0"
  1272. }
  1273. },
  1274. {
  1275. "name": "4K专线",
  1276. "type": "1",
  1277. "url": "http://110.42.7.182:881/api/?key=KzBLknjaz7nv2de8Yn&url=",
  1278. "flag": [
  1279. "4kvip"
  1280. ],
  1281. "header": {
  1282. "User-Agent": "Dalvik/2.1.0"
  1283. }
  1284. },
  1285. {
  1286. "name": "MX专线",
  1287. "type": "1",
  1288. "url": "http://110.42.7.182:881/api/?key=KzBLknjaz7nv2de8Yn&url=",
  1289. "flag": [
  1290. "m78"
  1291. ],
  1292. "header": {
  1293. "User-Agent": "Dalvik/2.1.0"
  1294. }
  1295. },
  1296. {
  1297. "name": "BD专线",
  1298. "type": "1",
  1299. "url": "http://zy.uiovo.com/api/?key=951b4ca48d0f8c77cd8ebbc2e784c441&ud=105&url=",
  1300. "flag": [
  1301. "nmys"
  1302. ],
  1303. "header": {
  1304. "User-Agent": "Dalvik/2.1.0"
  1305. }
  1306. },
  1307. {
  1308. "name": "MY专线",
  1309. "type": "1",
  1310. "url": "http://zy.uiovo.com/api/?key=951b4ca48d0f8c77cd8ebbc2e784c441&ud=105&url=",
  1311. "flag": [
  1312. "mytv"
  1313. ],
  1314. "header": {
  1315. "User-Agent": "Dalvik/2.1.0"
  1316. }
  1317. },
  1318. {
  1319. "name": "LL专线",
  1320. "type": "1",
  1321. "url": "http://llyh.xn--yi7aa.top/api/?key=5b317c16d457b31a3150d87c0a362a9e&url=",
  1322. "flag": [
  1323. "youku",
  1324. "qq",
  1325. "qiyi",
  1326. "bilibili",
  1327. "mgtv",
  1328. "pptv",
  1329. "xigua"
  1330. ],
  1331. "header": {
  1332. "User-Agent": "Dalvik/2.1.0"
  1333. }
  1334. },
  1335. {
  1336. "name": "XGJ专线",
  1337. "type": "1",
  1338. "url": "http://43.248.100.147:1122/XGJ/keyef2f3dc4asd1fd564f132asc2asd1f.php?url=",
  1339. "flag": [
  1340. "youku",
  1341. "qq",
  1342. "qiyi",
  1343. "bilibili",
  1344. "mgtv",
  1345. "pptv",
  1346. "xigua",
  1347. "NBY",
  1348. "ETH-",
  1349. "mytv",
  1350. "nmys",
  1351. "BTOL",
  1352. "caihongyun",
  1353. "4kvip",
  1354. "m78"
  1355. ],
  1356. "header": {
  1357. "User-Agent": "Dalvik/2.1.0"
  1358. }
  1359. },
  1360. {
  1361. "name": "DM专线",
  1362. "type": "1",
  1363. "url": "http://zy.uiovo.com/api/?key=951b4ca48d0f8c77cd8ebbc2e784c441&ud=105&url=",
  1364. "flag": [
  1365. "yhdm"
  1366. ],
  1367. "header": {
  1368. "User-Agent": "Dalvik/2.1.0"
  1369. }
  1370. },
  1371. {
  1372. "name": "线路1",
  1373. "type": 0,
  1374. "url": "https://jx.xmflv.com/?url=",
  1375. "ext": {
  1376. "header": {
  1377. "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"
  1378. }
  1379. }
  1380. },
  1381. {
  1382. "name": "线路2",
  1383. "type": 0,
  1384. "url": "https://jx.quankan.app/?url=",
  1385. "ext": {
  1386. "header": {
  1387. "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"
  1388. }
  1389. }
  1390. },
  1391. {
  1392. "name": "线路3",
  1393. "type": 0,
  1394. "url": "https://jx.yparse.com/index.php?url=",
  1395. "ext": {
  1396. "header": {
  1397. "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"
  1398. }
  1399. }
  1400. },
  1401. {
  1402. "name": "线路4",
  1403. "type": 0,
  1404. "url": "https://jx.aidouer.net/?url=",
  1405. "ext": {
  1406. "header": {
  1407. "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",
  1408. "referer": "https://jiejie.uk/"
  1409. }
  1410. }
  1411. },
  1412. {
  1413. "name": "线路5",
  1414. "type": 0,
  1415. "url": "https://www.8090g.cn/?url="
  1416. },
  1417. {
  1418. "name": "线路6",
  1419. "type": 0,
  1420. "url": "https://jx.yangtu.top?url="
  1421. },
  1422. {
  1423. "name": "线路7",
  1424. "type": 0,
  1425. "url": "https://jx.m3u8.tv/jiexi/?url="
  1426. },
  1427. {
  1428. "name": "线路8",
  1429. "type": 0,
  1430. "url": "https://www.ckplayer.vip/jiexi/?url="
  1431. }
  1432. ],
  1433. "rules": [
  1434. {
  1435. "name": "暴风",
  1436. "hosts": [
  1437. "bfzy",
  1438. "bfbfvip",
  1439. "bfengbf"
  1440. ],
  1441. "regex": [
  1442. "#EXTINF.*?\\s+.*?adjump.*?\\.ts"
  1443. ]
  1444. },
  1445. {
  1446. "name": "量子",
  1447. "hosts": [
  1448. "vip.lz",
  1449. "hd.lz",
  1450. ".cdnlz"
  1451. ],
  1452. "regex": [
  1453. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:7\\.166667,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1454. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:4\\.066667,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1455. "17.19"
  1456. ]
  1457. },
  1458. {
  1459. "name": "非凡",
  1460. "hosts": [
  1461. "vip.ffzy",
  1462. "hd.ffzy",
  1463. "super.ffzy"
  1464. ],
  1465. "regex": [
  1466. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:6\\.400000,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1467. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:6\\.666667,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1468. "#EXTINF.*?\\s+.*?1171(057).*?\\.ts",
  1469. "#EXTINF.*?\\s+.*?6d7b(077).*?\\.ts",
  1470. "#EXTINF.*?\\s+.*?6718a(403).*?\\.ts",
  1471. "17.99",
  1472. "14.45"
  1473. ]
  1474. },
  1475. {
  1476. "name": "索尼",
  1477. "hosts": [
  1478. "suonizy"
  1479. ],
  1480. "regex": [
  1481. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:1\\.000000,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1482. "#EXTINF.*?\\s+.*?p1ayer.*?\\.ts",
  1483. "#EXTINF.*?\\s+.*?\\/video\\/original.*?\\.ts"
  1484. ]
  1485. },
  1486. {
  1487. "name": "快看",
  1488. "hosts": [
  1489. "kuaikan"
  1490. ],
  1491. "regex": [
  1492. "#EXT-X-KEY:METHOD=NONE\\r*\\n*#EXTINF:5,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1493. "#EXT-X-KEY:METHOD=NONE\\r*\\n*#EXTINF:2\\.4,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  1494. "#EXT-X-KEY:METHOD=NONE\\r*\\n*#EXTINF:1\\.467,[\\s\\S]*?#EXT-X-DISCONTINUITY"
  1495. ]
  1496. },
  1497. {
  1498. "name": "一起看广告",
  1499. "hosts": [
  1500. "yqk88"
  1501. ],
  1502. "regex": [
  1503. "18.4",
  1504. "15.1666",
  1505. "16.5333",
  1506. "#EXT-X-DISCONTINUITY\\r*\\n*[\\s\\S]*?#EXT-X-CUE-IN"
  1507. ]
  1508. },
  1509. {
  1510. "name": "磁力广告",
  1511. "hosts": [
  1512. "magnet"
  1513. ],
  1514. "regex": [
  1515. "更多",
  1516. "请访问",
  1517. "example",
  1518. "社 區",
  1519. "x u u",
  1520. "直 播",
  1521. "更 新",
  1522. "社 区",
  1523. "有趣",
  1524. "有 趣",
  1525. "英皇体育",
  1526. "全中文AV在线",
  1527. "澳门皇冠赌场",
  1528. "哥哥快来",
  1529. "美女荷官",
  1530. "裸聊",
  1531. "新片首发",
  1532. "UUE29"
  1533. ]
  1534. },
  1535. {
  1536. "name": "火山嗅探",
  1537. "hosts": [
  1538. "huoshan.com"
  1539. ],
  1540. "regex": [
  1541. "item_id="
  1542. ]
  1543. },
  1544. {
  1545. "name": "抖音嗅探",
  1546. "hosts": [
  1547. "douyin.com"
  1548. ],
  1549. "regex": [
  1550. "is_play_url="
  1551. ]
  1552. },
  1553. {
  1554. "name": "农民嗅探",
  1555. "hosts": [
  1556. "toutiaovod.com"
  1557. ],
  1558. "regex": [
  1559. "video/tos/cn"
  1560. ]
  1561. }
  1562. ],
  1563. "doh": [
  1564. {
  1565. "name": "Google",
  1566. "url": "https://dns.google/dns-query",
  1567. "ips": [
  1568. "8.8.4.4",
  1569. "8.8.8.8"
  1570. ]
  1571. },
  1572. {
  1573. "name": "Cloudflare",
  1574. "url": "https://cloudflare-dns.com/dns-query",
  1575. "ips": [
  1576. "1.1.1.1",
  1577. "1.0.0.1",
  1578. "2606:4700:4700::1111",
  1579. "2606:4700:4700::1001"
  1580. ]
  1581. },
  1582. {
  1583. "name": "AdGuard",
  1584. "url": "https://dns.adguard.com/dns-query",
  1585. "ips": [
  1586. "94.140.14.140",
  1587. "94.140.14.141"
  1588. ]
  1589. },
  1590. {
  1591. "name": "DNSWatch",
  1592. "url": "https://resolver2.dns.watch/dns-query",
  1593. "ips": [
  1594. "84.200.69.80",
  1595. "84.200.70.40"
  1596. ]
  1597. },
  1598. {
  1599. "name": "Quad9",
  1600. "url": "https://dns.quad9.net/dns-quer",
  1601. "ips": [
  1602. "9.9.9.9",
  1603. "149.112.112.112"
  1604. ]
  1605. }
  1606. ],
  1607. "lives": [
  1608. {
  1609. "name": "live",
  1610. "type": 0,
  1611. "url": "./live.txt",
  1612. "playerType": 1,
  1613. "epg": "http://epg.112114.xyz/?ch={name}&date={date}"
  1614. }
  1615. ],
  1616. "flags": [
  1617. "youku",
  1618. "优酷",
  1619. "优 酷",
  1620. "优酷视频",
  1621. "qq",
  1622. "腾讯",
  1623. "腾 讯",
  1624. "腾讯视频",
  1625. "iqiyi",
  1626. "qiyi",
  1627. "奇艺",
  1628. "爱奇艺",
  1629. "爱 奇 艺",
  1630. "m1905",
  1631. "xigua",
  1632. "letv",
  1633. "leshi",
  1634. "乐视",
  1635. "乐 视",
  1636. "sohu",
  1637. "搜狐",
  1638. "搜 狐",
  1639. "搜狐视频",
  1640. "tudou",
  1641. "pptv",
  1642. "mgtv",
  1643. "芒果",
  1644. "imgo",
  1645. "芒果TV",
  1646. "芒 果 T V",
  1647. "bilibili",
  1648. "哔 哩",
  1649. "哔 哩 哔 哩"
  1650. ],
  1651. "ijk": [
  1652. {
  1653. "group": "软解码",
  1654. "options": [
  1655. {
  1656. "category": 4,
  1657. "name": "opensles",
  1658. "value": "0"
  1659. },
  1660. {
  1661. "category": 4,
  1662. "name": "overlay-format",
  1663. "value": "842225234"
  1664. },
  1665. {
  1666. "category": 4,
  1667. "name": "framedrop",
  1668. "value": "1"
  1669. },
  1670. {
  1671. "category": 4,
  1672. "name": "soundtouch",
  1673. "value": "1"
  1674. },
  1675. {
  1676. "category": 4,
  1677. "name": "start-on-prepared",
  1678. "value": "1"
  1679. },
  1680. {
  1681. "category": 1,
  1682. "name": "http-detect-range-support",
  1683. "value": "0"
  1684. },
  1685. {
  1686. "category": 1,
  1687. "name": "fflags",
  1688. "value": "fastseek"
  1689. },
  1690. {
  1691. "category": 2,
  1692. "name": "skip_loop_filter",
  1693. "value": "48"
  1694. },
  1695. {
  1696. "category": 4,
  1697. "name": "reconnect",
  1698. "value": "1"
  1699. },
  1700. {
  1701. "category": 4,
  1702. "name": "enable-accurate-seek",
  1703. "value": "0"
  1704. },
  1705. {
  1706. "category": 4,
  1707. "name": "mediacodec",
  1708. "value": "0"
  1709. },
  1710. {
  1711. "category": 4,
  1712. "name": "mediacodec-auto-rotate",
  1713. "value": "0"
  1714. },
  1715. {
  1716. "category": 4,
  1717. "name": "mediacodec-handle-resolution-change",
  1718. "value": "0"
  1719. },
  1720. {
  1721. "category": 4,
  1722. "name": "mediacodec-hevc",
  1723. "value": "0"
  1724. },
  1725. {
  1726. "category": 1,
  1727. "name": "dns_cache_timeout",
  1728. "value": "600000000"
  1729. }
  1730. ]
  1731. },
  1732. {
  1733. "group": "硬解码",
  1734. "options": [
  1735. {
  1736. "category": 4,
  1737. "name": "opensles",
  1738. "value": "0"
  1739. },
  1740. {
  1741. "category": 4,
  1742. "name": "overlay-format",
  1743. "value": "842225234"
  1744. },
  1745. {
  1746. "category": 4,
  1747. "name": "framedrop",
  1748. "value": "1"
  1749. },
  1750. {
  1751. "category": 4,
  1752. "name": "soundtouch",
  1753. "value": "1"
  1754. },
  1755. {
  1756. "category": 4,
  1757. "name": "start-on-prepared",
  1758. "value": "1"
  1759. },
  1760. {
  1761. "category": 1,
  1762. "name": "http-detect-range-support",
  1763. "value": "0"
  1764. },
  1765. {
  1766. "category": 1,
  1767. "name": "fflags",
  1768. "value": "fastseek"
  1769. },
  1770. {
  1771. "category": 2,
  1772. "name": "skip_loop_filter",
  1773. "value": "48"
  1774. },
  1775. {
  1776. "category": 4,
  1777. "name": "reconnect",
  1778. "value": "1"
  1779. },
  1780. {
  1781. "category": 4,
  1782. "name": "enable-accurate-seek",
  1783. "value": "0"
  1784. },
  1785. {
  1786. "category": 4,
  1787. "name": "mediacodec",
  1788. "value": "1"
  1789. },
  1790. {
  1791. "category": 4,
  1792. "name": "mediacodec-auto-rotate",
  1793. "value": "1"
  1794. },
  1795. {
  1796. "category": 4,
  1797. "name": "mediacodec-handle-resolution-change",
  1798. "value": "1"
  1799. },
  1800. {
  1801. "category": 4,
  1802. "name": "mediacodec-hevc",
  1803. "value": "1"
  1804. },
  1805. {
  1806. "category": 1,
  1807. "name": "dns_cache_timeout",
  1808. "value": "600000000"
  1809. }
  1810. ]
  1811. }
  1812. ],
  1813. "ads": [
  1814. "static-mozai.4gtv.tv"
  1815. ]
  1816. }