mao0208.json 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998
  1. {
  2. "sites": [{
  3. "key": "csp_Buka",
  4. "name": "默认主页-20220207版本",
  5. "type": 3,
  6. "api": "csp_Buka",
  7. "searchable": 0,
  8. "quickSearch": 0,
  9. "filterable": 1
  10. }, {
  11. "key": "csp_xpath_猫群专用工厂",
  12. "name": "影视工厂-资源皆来自网上搜集-请勿商用盈利",
  13. "type": 3,
  14. "api": "csp_XPath",
  15. "searchable": 0,
  16. "quickSearch": 0,
  17. "filterable": 1,
  18. "ext": "https://cncncloud.com/api/v3/file/source/3064301/ysgc.json?sign=rOLxUlH1hroPp-1tqLAQxkw_B-EORt_B9K61gSNQK6o%3D%3A0"
  19. }, {
  20. "key": "csp_xpath_猫群自维护专用源shtv",
  21. "name": "骚火电影",
  22. "type": 3,
  23. "api": "csp_XPath",
  24. "searchable": 0,
  25. "quickSearch": 0,
  26. "filterable": 1,
  27. "ext": "https://cncncloud.com/api/v3/file/source/3064147/shdy.json?sign=YHhLfP44aWq8SFeI8-j8-hJA8W6_Mw2z2euirYeJ7E4%3D%3A0"
  28. }, {
  29. "key": "csp_xpath_猫群专用乐猪",
  30. "name": "乐猪TV(XP)",
  31. "type": 3,
  32. "api": "csp_XPathMac",
  33. "searchable": 0,
  34. "quickSearch": 0,
  35. "filterable": 1,
  36. "ext": "https://cncncloud.com/api/v3/file/source/3064148/lztv.json?sign=hJkrIp_psjPbBl5_62UxBNPzDkkEsldJh6RigS1twKY%3D%3A0"
  37. }, {
  38. "key": "喵派蓝光",
  39. "name": "喵派蓝光&【喵派对】官方赞助",
  40. "type": 1,
  41. "searchable": 1,
  42. "quickSearch": 1,
  43. "filterable": 1,
  44. "api": "https://maoyingshi-api.tvan.xyz/api.php/provide/vod/",
  45. "playUrl": "https://vip.aiaine.com/api/?type=app&key=ESnBC3t7IxnnHAziyU&url="
  46. }, {
  47. "key": "csp_appys_超级剧场",
  48. "name": "超级剧场(搜)",
  49. "type": 3,
  50. "api": "csp_AppYs",
  51. "searchable": 1,
  52. "quickSearch": 1,
  53. "filterable": 1,
  54. "ext": "http://ccxg.xazhutu.com/xgapp.php/v1/"
  55. }, {
  56. "key": "csp_appys_v1_4K屋",
  57. "name": "4K屋(搜)",
  58. "type": 3,
  59. "api": "csp_AppYs",
  60. "searchable": 1,
  61. "quickSearch": 1,
  62. "filterable": 1,
  63. "ext": "https://1080p.one/mogai_api.php/v1.vod"
  64. }, {
  65. "key": "csp_yinghua",
  66. "name": "樱花动漫(XP)",
  67. "type": 3,
  68. "api": "csp_XPath",
  69. "searchable": 1,
  70. "quickSearch": 0,
  71. "filterable": 1,
  72. "ext": "https://cncncloud.com/api/v3/file/source/3064155/yhdm.json?sign=D7Ln4EnjZILBPy7fHx4p6LCFTBOBKDkdoCgwI3WYyZA%3D%3A0"
  73. }, {
  74. "key": "csp_猫群专用动漫bus",
  75. "name": "动漫巴士(XP)",
  76. "type": 3,
  77. "api": "csp_XPath",
  78. "searchable": 1,
  79. "quickSearch": 0,
  80. "filterable": 1,
  81. "ext": "https://cncncloud.com/api/v3/file/source/3064473/%E5%8A%A8%E6%BC%AB%E5%B7%B4%E5%A3%AB.json?sign=QwPfl0Tr7SHXn-SwPxVOKjtsPsM1oXETiclj9CWT8rw%3D%3A0"
  82. }, {
  83. "key": "csp_appys_v1_皮皮动漫",
  84. "name": "皮皮动漫(搜)",
  85. "type": 3,
  86. "api": "csp_AppYs",
  87. "searchable": 1,
  88. "quickSearch": 0,
  89. "filterable": 1,
  90. "ext": "http://dm.muying.me/mogai_api.php/v1.vod"
  91. }, {
  92. "key": "csp_appys_v1_菜鸟动漫",
  93. "name": "菜鸟动漫(搜)",
  94. "type": 3,
  95. "api": "csp_AppYs",
  96. "searchable": 1,
  97. "quickSearch": 0,
  98. "filterable": 1,
  99. "ext": "http://taikong.huangguay.com/mogai_api.php/v1.vod"
  100. }, {
  101. "key": "csp_appys_v1_熊猫动漫",
  102. "name": "熊猫动漫(搜)",
  103. "type": 3,
  104. "api": "csp_AppYs",
  105. "searchable": 1,
  106. "quickSearch": 0,
  107. "filterable": 1,
  108. "ext": "http://dongman.k8aa.com/mogai_api.php/v1.vod"
  109. }, {
  110. "key": "csp_appys_v1_蜗牛动漫",
  111. "name": "蜗牛动漫(搜)",
  112. "type": 3,
  113. "api": "csp_AppYs",
  114. "searchable": 1,
  115. "quickSearch": 0,
  116. "filterable": 1,
  117. "ext": "http://woniudm.woniu.cyou:20000/mogai_api.php/v1.vod"
  118. }, {
  119. "key": "csp_Auete",
  120. "name": "Auete影视(爬虫)",
  121. "type": 3,
  122. "api": "csp_Auete",
  123. "searchable": 1,
  124. "quickSearch": 0,
  125. "filterable": 1
  126. }, {
  127. "key": "n0ys_spider",
  128. "name": "90影视",
  129. "type": 3,
  130. "api": "csp_N0ys",
  131. "searchable": 1,
  132. "quickSearch": 0,
  133. "filterable": 1,
  134. "ext": "https://cncncloud.com/api/v3/file/source/3064602/90%E5%BD%B1%E8%A7%86.json?sign=Qo722u2P0WOUKzrHwv_1W2_Lwo-1GF0m0beGLIx8MnA%3D%3A0"
  135. }, {
  136. "key": "aikan_spider",
  137. "name": "爱看(SP)",
  138. "type": 3,
  139. "api": "csp_AiKan",
  140. "searchable": 1,
  141. "quickSearch": 1,
  142. "filterable": 1
  143. }, {
  144. "searchable": "1",
  145. "quickSearch": "1",
  146. "api": "csp_AppYs",
  147. "filterable": "1",
  148. "ext": "https://myaixixi.com/api.php/app/",
  149. "key": "csp_贺岁1",
  150. "type": "3",
  151. "name": "猫迷剧场【1】"
  152. }, {
  153. "searchable": "1",
  154. "quickSearch": "1",
  155. "api": "csp_AppYs",
  156. "filterable": "1",
  157. "ext": "https://www.bcwzg.com/api.php/app/",
  158. "key": "csp_贺岁2",
  159. "type": "3",
  160. "name": "猫迷剧场【2】"
  161. }, {
  162. "key": "csp_appys_贺岁3",
  163. "name": "猫迷剧场【3】",
  164. "type": 3,
  165. "api": "csp_AppYs",
  166. "searchable": 1,
  167. "quickSearch": 1,
  168. "filterable": 1,
  169. "ext": "http://121.204.249.135:4433/ruifenglb_api.php/v1.vod"
  170. }, {
  171. "key": "csp_appys_贺岁88",
  172. "name": "猫迷剧场【4】",
  173. "type": 3,
  174. "api": "csp_AppYs",
  175. "searchable": 1,
  176. "quickSearch": 1,
  177. "filterable": 1,
  178. "ext": "https://l0l.tv/api.php/v1.vod"
  179. }, {
  180. "key": "csp_appys_贺岁5",
  181. "name": "猫迷剧场【5】",
  182. "type": 3,
  183. "api": "csp_AppYs",
  184. "searchable": 1,
  185. "quickSearch": 1,
  186. "filterable": 1,
  187. "ext": "https://www.u23c.com/api.php/app/"
  188. }, {
  189. "key": "csp_xpath_贺岁6",
  190. "name": "猫迷剧场【6】",
  191. "type": 3,
  192. "api": "csp_XPath",
  193. "searchable": 1,
  194. "quickSearch": 1,
  195. "filterable": 0,
  196. "ext": "https://cncncloud.com/api/v3/file/source/3064146/348lg.json?sign=x2kNos0rYSh68lfRPqjfbB0xKpsVeI0IfPdKn8zAs-4%3D%3A0"
  197. }, {
  198. "key": "csp_appys_贺岁7",
  199. "name": "猫迷剧场【7】",
  200. "type": 3,
  201. "api": "csp_AppYs",
  202. "searchable": 1,
  203. "quickSearch": 1,
  204. "filterable": 1,
  205. "ext": "https://xays6677.com/mogai_api.php/v1.vod"
  206. }, {
  207. "key": "csp_appys_贺岁8",
  208. "name": "猫迷剧场【8】",
  209. "type": 3,
  210. "api": "csp_AppYs",
  211. "searchable": 1,
  212. "quickSearch": 1,
  213. "filterable": 1,
  214. "ext": "https://ys.zhuiya.vip/xgapp.php/v1/"
  215. }, {
  216. "key": "csp_appys_v1_爱美剧",
  217. "name": "爱美剧(搜)",
  218. "type": 3,
  219. "api": "csp_AppYs",
  220. "searchable": 1,
  221. "quickSearch": 1,
  222. "filterable": 1,
  223. "ext": "https://meijuchong.com/api.php/v1.vod"
  224. }, {
  225. "key": "人人咪",
  226. "name": "人人咪(搜)",
  227. "type": 0,
  228. "searchable": 1,
  229. "quickSearch": 1,
  230. "api": "https://video.yingworld.vip/api.php/provide/vod/from/renrenmi/at/xml",
  231. "playUrl": ""
  232. }, {
  233. "key": "csp_appys_xiaogui_桃花影视",
  234. "name": "桃花影视(搜)",
  235. "type": 3,
  236. "api": "csp_AppYs",
  237. "searchable": 1,
  238. "quickSearch": 1,
  239. "filterable": 1,
  240. "ext": "http://qqtvapp.com/xgapp.php/v1/"
  241. }, {
  242. "key": "csp_appys_xiaogui_大地影视",
  243. "name": "大地影视(搜)",
  244. "type": 3,
  245. "api": "csp_AppYs",
  246. "searchable": 1,
  247. "quickSearch": 1,
  248. "filterable": 1,
  249. "ext": "https://www.tkys.tv/xgapp.php/v1/"
  250. }, {
  251. "key": "csp_appys_xiaogui_兄弟影视",
  252. "name": "兄弟影视(搜)",
  253. "type": 3,
  254. "api": "csp_AppYs",
  255. "searchable": 1,
  256. "quickSearch": 1,
  257. "filterable": 1,
  258. "ext": "http://x.dmntv.com/api.php/app/"
  259. }, {
  260. "key": "csp_appys_xiaogui_牛逼TV",
  261. "name": "牛逼TV(搜)",
  262. "type": 3,
  263. "api": "csp_AppYs",
  264. "searchable": 1,
  265. "quickSearch": 1,
  266. "filterable": 1,
  267. "ext": "https://app.feifan.live:2087/xgapp.php/v1/"
  268. }, {
  269. "key": "csp_appys_我来追剧",
  270. "name": "我来追剧(搜)",
  271. "type": 3,
  272. "api": "csp_AppYs",
  273. "searchable": 1,
  274. "quickSearch": 1,
  275. "filterable": 1,
  276. "ext": "http://zgjxdtg.cn/ruifenglb_api.php/v1.vod"
  277. }, {
  278. "key": "csp_appys_v1_拳头影视",
  279. "name": "拳头影视(搜)",
  280. "type": 3,
  281. "api": "csp_AppYs",
  282. "searchable": 1,
  283. "quickSearch": 1,
  284. "filterable": 1,
  285. "ext": "https://szys5678.com/mogai_api.php/v1.vod"
  286. }, {
  287. "key": "csp_appys_xiaogui_葵花影视",
  288. "name": "葵花影视(搜)",
  289. "type": 3,
  290. "api": "csp_AppYs",
  291. "searchable": 1,
  292. "quickSearch": 1,
  293. "filterable": 1,
  294. "ext": "https://www.mczdyw.com/api.php/app/"
  295. }, {
  296. "key": "csp_appys_xiaogui_爱你影视",
  297. "name": "爱你影视(搜)",
  298. "type": 3,
  299. "api": "csp_AppYs",
  300. "searchable": 1,
  301. "quickSearch": 1,
  302. "filterable": 1,
  303. "ext": "https://aidi.fun/xgapp.php/v1/"
  304. }, {
  305. "key": "csp_appys_v1_雪花资源",
  306. "name": "雪花资源(搜)",
  307. "type": 3,
  308. "api": "csp_AppYs",
  309. "searchable": 1,
  310. "quickSearch": 1,
  311. "filterable": 1,
  312. "ext": "https://zy.qd234.cn/mogai_api.php/v1.vod"
  313. }, {
  314. "key": "csp_appys_v1_黄豆TV",
  315. "name": "黄豆TV(搜)",
  316. "type": 3,
  317. "api": "csp_AppYs",
  318. "searchable": 1,
  319. "quickSearch": 1,
  320. "filterable": 1,
  321. "ext": "https://vip.ruifenglb.com:4433/api.php/app/"
  322. }, {
  323. "key": "csp_appys_xiaogui_万达院线",
  324. "name": "万达院线(搜)",
  325. "type": 3,
  326. "api": "csp_AppYs",
  327. "searchable": 1,
  328. "quickSearch": 1,
  329. "filterable": 1,
  330. "ext": "https://app.lovetv.online/api.php/app/"
  331. }, {
  332. "key": "csp_appys_v1_睡前电影",
  333. "name": "睡前电影(搜)",
  334. "type": 3,
  335. "api": "csp_AppYs",
  336. "searchable": 1,
  337. "quickSearch": 1,
  338. "filterable": 1,
  339. "ext": "http://summ.vip/api.php/v1.vod"
  340. }, {
  341. "key": "csp_appys_猫群源pdeys",
  342. "name": "片多影视(搜)",
  343. "type": 3,
  344. "api": "csp_AppYs",
  345. "searchable": 1,
  346. "quickSearch": 1,
  347. "filterable": 1,
  348. "ext": "http://221.236.18.12:665/api.php/v1.vod"
  349. }, {
  350. "key": "csp_appys_xiaogui_躺平蓝光",
  351. "name": "躺平蓝光(搜)",
  352. "type": 3,
  353. "api": "csp_AppYs",
  354. "searchable": 1,
  355. "quickSearch": 1,
  356. "filterable": 1,
  357. "ext": "http://www.lltpys.com/api.php/app/"
  358. }, {
  359. "key": "csp_appys_v1_麻子视频",
  360. "name": "麻子视频(搜)",
  361. "type": 3,
  362. "api": "csp_AppYs",
  363. "searchable": 1,
  364. "quickSearch": 1,
  365. "filterable": 1,
  366. "ext": "http://aliyun.k8aa.com/mogai_api.php/v1.vod"
  367. }, {
  368. "key": "csp_appys_xiaogui_我爱跟剧",
  369. "name": "我爱跟剧(搜)",
  370. "type": 3,
  371. "api": "csp_AppYs",
  372. "searchable": 1,
  373. "quickSearch": 1,
  374. "filterable": 1,
  375. "ext": "http://xg.5imv.net/api.php/app/"
  376. }, {
  377. "key": "csp_appys_猴子电影",
  378. "name": "猴子电影(搜)",
  379. "type": 3,
  380. "api": "csp_AppYs",
  381. "searchable": 1,
  382. "quickSearch": 1,
  383. "filterable": 1,
  384. "ext": "http://lanmao.lanmaoymw.cn/ruifenglb_api.php/v1.vod"
  385. }, {
  386. "key": "csp_appys_大象视频",
  387. "name": "大象视频(搜)",
  388. "type": 3,
  389. "api": "csp_AppYs",
  390. "searchable": 1,
  391. "quickSearch": 1,
  392. "filterable": 1,
  393. "ext": "https://humaosp.com/mogai_api.php/v1.vod"
  394. }, {
  395. "key": "csp_appys_最爱影迷",
  396. "name": "最爱影迷(搜)",
  397. "type": 3,
  398. "api": "csp_AppYs",
  399. "searchable": 1,
  400. "quickSearch": 1,
  401. "filterable": 1,
  402. "ext": "https://www.inmi.app/xgapp.php/v1/"
  403. }, {
  404. "key": "csp_appys_xiaogui_大海资源",
  405. "name": "大海资源(搜)",
  406. "type": 3,
  407. "api": "csp_AppYs",
  408. "searchable": 1,
  409. "quickSearch": 1,
  410. "filterable": 1,
  411. "ext": "https://vip.ruifenglb.com:4433/api.php/app/"
  412. }, {
  413. "key": "csp_appys_看美剧",
  414. "name": "看美剧(搜)",
  415. "type": 3,
  416. "api": "csp_AppYs",
  417. "searchable": 1,
  418. "quickSearch": 1,
  419. "filterable": 1,
  420. "ext": "https://www.uumjw.com/api.php/v1.vod"
  421. }, {
  422. "key": "csp_appys_黑熊影视",
  423. "name": "黑熊影视(搜)",
  424. "type": 3,
  425. "api": "csp_AppYs",
  426. "searchable": 1,
  427. "quickSearch": 1,
  428. "filterable": 1,
  429. "ext": "https://dxys2233.com/mogai_api.php/v1.vod"
  430. }, {
  431. "key": "csp_appys_v1_瞎子追剧",
  432. "name": "瞎子追剧(搜)",
  433. "type": 3,
  434. "api": "csp_AppYs",
  435. "searchable": 1,
  436. "quickSearch": 1,
  437. "filterable": 1,
  438. "ext": "http://douzhayss.cc/api.php/v1.vod"
  439. }, {
  440. "key": "csp_appys_v1_追着看",
  441. "name": "追着看(搜)",
  442. "type": 3,
  443. "api": "csp_AppYs",
  444. "searchable": 1,
  445. "quickSearch": 1,
  446. "filterable": 1,
  447. "ext": "http://app.fkkdy.vip/mogai_api.php/v1.vod"
  448. }, {
  449. "key": "csp_appys_南极光",
  450. "name": "南极光(搜)",
  451. "type": 3,
  452. "api": "csp_AppYs",
  453. "searchable": 1,
  454. "quickSearch": 1,
  455. "filterable": 1,
  456. "ext": "http://app.winxz.cc/api.php/v1.vod"
  457. }, {
  458. "key": "csp_appys_v1_北极熊",
  459. "name": "北极熊(搜)",
  460. "type": 3,
  461. "api": "csp_AppYs",
  462. "searchable": 1,
  463. "quickSearch": 1,
  464. "filterable": 1,
  465. "ext": "http://app.8d8q.com/api.php/v1.vod"
  466. }, {
  467. "key": "csp_appys_追影狗",
  468. "name": "追影狗(搜)",
  469. "type": 3,
  470. "api": "csp_AppYs",
  471. "searchable": 1,
  472. "quickSearch": 1,
  473. "filterable": 1,
  474. "ext": "http://tv.kmtvb.com/api.php/v1.vod"
  475. }, {
  476. "key": "csp_appys_思影视",
  477. "name": "思影视(搜)",
  478. "type": 3,
  479. "api": "csp_AppYs",
  480. "searchable": 1,
  481. "quickSearch": 1,
  482. "filterable": 1,
  483. "ext": "http://app.siqitv.vip/mogai_api.php/v1.vod"
  484. }, {
  485. "key": "csp_appys_xiaogui_快影音",
  486. "name": "快影音(搜)",
  487. "type": 3,
  488. "api": "csp_AppYs",
  489. "searchable": 1,
  490. "quickSearch": 1,
  491. "filterable": 1,
  492. "ext": "https://www.kuaiyunyy.com/api.php/app/"
  493. }, {
  494. "key": "csp_appys_v1_绿影视",
  495. "name": "绿影视(搜)",
  496. "type": 3,
  497. "api": "csp_AppYs",
  498. "searchable": 1,
  499. "quickSearch": 1,
  500. "filterable": 1,
  501. "ext": "http://www.69ty.cc/mogai_api.php/v1.vod"
  502. }, {
  503. "key": "csp_appys_v1_美剧有范",
  504. "name": "美剧有范(搜)",
  505. "type": 3,
  506. "api": "csp_AppYs",
  507. "searchable": 1,
  508. "quickSearch": 1,
  509. "filterable": 1,
  510. "ext": "http://ttzmz.net/api.php/v1.vod"
  511. }, {
  512. "key": "csp_appys_心影视",
  513. "name": "心影视(搜)",
  514. "type": 3,
  515. "api": "csp_AppYs",
  516. "searchable": 1,
  517. "quickSearch": 1,
  518. "filterable": 1,
  519. "ext": "https://www.18mv.club/api.php/v1.vod"
  520. }, {
  521. "key": "csp_appys_v1_全能看",
  522. "name": "全能看(搜)",
  523. "type": 3,
  524. "api": "csp_AppYs",
  525. "searchable": 1,
  526. "quickSearch": 1,
  527. "filterable": 1,
  528. "ext": "https://qnys5566.com/mogai_api.php/v1.vod"
  529. }, {
  530. "key": "csp_appys_追剧王",
  531. "name": "追剧王(搜)",
  532. "type": 3,
  533. "api": "csp_AppYs",
  534. "searchable": 1,
  535. "quickSearch": 1,
  536. "filterable": 1,
  537. "ext": "http://app1.udo.cc/api.php/app/"
  538. }, {
  539. "key": "七七电影xml",
  540. "name": "七七电影(搜)",
  541. "type": 0,
  542. "api": "https://www.77diany.com/api.php/provide/vod/at/xml/",
  543. "playUrl": "",
  544. "searchable": 1,
  545. "quickSearch": 1,
  546. "filterable": 0,
  547. "categories": []
  548. }, {
  549. "key": "云海官采",
  550. "name": "云海官采(xml)",
  551. "type": 1,
  552. "searchable": 1,
  553. "quickSearch": 1,
  554. "filterable": 1,
  555. "api": "http://101.34.7.151:600/api.php/provide/vod/",
  556. "playUrl": "http://47.100.138.210:92/?url="
  557. }, {
  558. "key": "雪人官采",
  559. "name": "雪人官采(搜)",
  560. "type": 0,
  561. "api": "https://zl.qd234.cn/api.php/provide/vod/at/xml",
  562. "searchable": 1,
  563. "quickSearch": 1,
  564. "filterable": 1,
  565. "playUrl": ""
  566. }, {
  567. "key": "星一官采(xml)",
  568. "name": "星一官采(搜)",
  569. "type": 0,
  570. "api": "https://gcku.suboyun.vip/api.php/provide/vod/at/xml",
  571. "playUrl": ""
  572. }, {
  573. "key": "淘片资源",
  574. "name": "淘片资源(搜)",
  575. "type": 0,
  576. "api": "https://taopianzy.com/home/cjapi/as/mc10/vod/xml/m3u8",
  577. "playUrl": ""
  578. }, {
  579. "key": "木偶TV",
  580. "name": "木偶TV(搜)",
  581. "type": 0,
  582. "api": "http://vip.muoutv.com/api.php/provide/vod/at/xml"
  583. }, {
  584. "key": "乐多资源",
  585. "name": "乐多资源(搜)",
  586. "type": 0,
  587. "api": "http://cj.leduocaiji.com/inc/api.php",
  588. "playUrl": "https://ldy.jx.cn/wp-api/ifr.php?vid="
  589. }, {
  590. "key": "无尽资源",
  591. "name": "无尽资源(快搜结束)",
  592. "type": 0,
  593. "api": "https://wujinzy.com/api.php/provide/vod/at/xml",
  594. "playUrl": "https://jx.xhswglobal.com/dplayer/?url="
  595. }, {
  596. "key": "csp_appys_rfqp",
  597. "name": "瑞丰切片(M)",
  598. "type": 3,
  599. "api": "csp_AppYs",
  600. "searchable": 1,
  601. "quickSearch": 0,
  602. "filterable": 1,
  603. "ext": "https://vip.ruifenglb.com:4433/api.php/app/"
  604. }, {
  605. "key": "csp_appys_猫群源kmys",
  606. "name": "可米资源(M)",
  607. "type": 3,
  608. "api": "csp_AppYs",
  609. "searchable": 1,
  610. "quickSearch": 0,
  611. "filterable": 1,
  612. "ext": "http://sj.kmys.vip/ruifenglb_api.php/v1.vod"
  613. }, {
  614. "key": "csp_appys_猫群源mzys",
  615. "name": "木子影视(M)",
  616. "type": 3,
  617. "api": "csp_AppYs",
  618. "searchable": 1,
  619. "quickSearch": 0,
  620. "filterable": 1,
  621. "ext": "http://www.muzidy.top/mogai_api.php/v1.vod"
  622. }, {
  623. "searchable": "1",
  624. "quickSearch": "0",
  625. "api": "csp_AppYs",
  626. "filterable": "1",
  627. "ext": "http://tv.cmt8.xyz/api.php/iptv/vod/",
  628. "key": "csp_TV端_虾皮视频",
  629. "type": "3",
  630. "name": "虾皮视频(M)"
  631. }, {
  632. "searchable": "1",
  633. "quickSearch": "0",
  634. "api": "csp_AppYs",
  635. "filterable": "1",
  636. "ext": "http://nu.e4tv.cn/lvdou_api.php/v1.vod",
  637. "key": "csp_优质_柠柚影视",
  638. "type": "3",
  639. "name": "柠柚影视(M)"
  640. }, {
  641. "key": "csp_xpath_ftyy",
  642. "name": "饭团影院(XP)",
  643. "type": 3,
  644. "api": "csp_XPath",
  645. "searchable": 1,
  646. "quickSearch": 0,
  647. "filterable": 0,
  648. "ext": "https://cncncloud.com/api/v3/file/source/3066608/%E9%A5%AD%E5%9B%A2%E5%BD%B1%E9%99%A2.json?sign=XkhkjQ0TSEa6fct-Iw5EtBkHX45tJj82ldYWqD98BSc%3D%3A0"
  649. }, {
  650. "key": "csp_xpath_1090ys2",
  651. "name": "1090影视(XPMac)",
  652. "type": 3,
  653. "api": "csp_XPathMac",
  654. "searchable": 1,
  655. "quickSearch": 0,
  656. "filterable": 1,
  657. "ext": "https://cncncloud.com/api/v3/file/source/3064601/1090%E5%BD%B1%E8%A7%86.json?sign=zsdUrAf9e_h_2L5eCDloTbd03dy-11XD8ZbF2N2zkEo%3D%3A0"
  658. }],
  659. "lives": [{
  660. "group": "🎧演唱会(test)",
  661. "channels": [{
  662. "name": "🎧4K.刘德华2010年香港红磡演唱会",
  663. "urls": [
  664. "https://cncncloud.com/api/v3/file/source/3068210/4K%E5%88%98%E5%BE%B7%E5%8D%8E2010%E5%B9%B4%E9%A6%99%E6%B8%AF%E7%BA%A2%E7%A3%A1%E6%BC%94%E5%94%B1%E4%BC%9A.mp4?sign=kEBfX1Uu1eUxSZtDYg0yI3oGQzcF_kEhgF5mosScKsc%3D%3A0"
  665. ]
  666. }, {
  667. "name": "🎧4K.周杰伦2004无与伦比演唱会",
  668. "urls": [
  669. "https://cncncloud.com/api/v3/file/source/3068197/4K%E5%91%A8%E6%9D%B0%E4%BC%A6%E6%97%A0%E4%B8%8E%E4%BC%A6%E6%AF%942004%E6%BC%94%E5%94%B1%E4%BC%9A.mp4?sign=WcVyWM5xrAXQcjdk5c3qvbTo8XgZuqImmh7jTF-twcY%3D%3A0"
  670. ]
  671. }, {
  672. "name": "🎧4K.周杰伦《依然范特西》专辑",
  673. "urls": [
  674. "http://v18.toutiaovod.com/66dab5300f02a2e57b41bde8c7f2321e/62021892/video/tos/cn/tos-cn-ve-4/7ac0c396725e476c800800cbdbd6bf8b/"
  675. ]
  676. }, {
  677. "name": "🎧4K.周杰伦《七里香》专辑",
  678. "urls": [
  679. "http://v3.toutiaovod.com/82448b69a11b963dee921e502b8c80ed/620216d8/video/tos/cn/tos-cn-ve-4/eaccbd5a0d0947d4a8c27ed61ba02074/"
  680. ]
  681. }, {
  682. "name": "🎧4K.谢霆锋2000Viva live演唱会",
  683. "urls": [
  684. "http://v3.toutiaovod.com/12e612475311ddf0a170c2448f00d991/6202265b/video/tos/cn/tos-cn-ve-4-alinc2/0f3b9a06ddbc4d69855a34bf06c0f968/"
  685. ]
  686. }, {
  687. "name": "🎧4K.蔡依林Play2015演唱会",
  688. "urls": [
  689. "http://v18.toutiaovod.com/8cf7e47adf8a806a1482a86b6cf4efef/620229d7/video/tos/cn/tos-cn-ve-4-alinc2/46cc3da2b2c645dcad834be1f7d79a0a/"
  690. ]
  691. }, {
  692. "name": "🎧蓝光.刀郎新疆10年环球巡回演唱会",
  693. "urls": [
  694. "http://v3.toutiaovod.com/dc5230f5fa1ffbab72c21a650268b086/6202268d/video/tos/cn/tos-cn-ve-4-alinc2/a7596b36de9544d58752ded2405504f3/"
  695. ]
  696. }, {
  697. "name": "🎧4K.Beyond.1991生命接触演唱会",
  698. "urls": [
  699. "http://v18.toutiaovod.com/f939960aac2a6b7ef8c3c36543a3cb25/62022925/video/tos/cn/tos-cn-ve-4-alinc2/8014ea19dfde4a6f8a0f9ed17764f3c4/"
  700. ]
  701. }, {
  702. "name": "🎧蓝光.陈慧娴1989几时再见演唱会",
  703. "urls": [
  704. "http://v3.toutiaovod.com/ffab8b8c07084ea736f7baaa7d5dd564/620225d9/video/tos/cn/tos-cn-ve-4-alinc2/fc8861dcd8be4b649a14dc384f9e2d1f/"
  705. ]
  706. }, {
  707. "name": "🎧蓝光.唐朝乐队1994香港红磡演唱会",
  708. "urls": [
  709. "http://v6.toutiaovod.com/16c989853203b22a6a51c534fe6a7f99/620221a7/video/tos/cn/tos-cn-ve-4-alinc2/699badf3450e4f1ebc3221f96bbd4cd1/"
  710. ]
  711. }, {
  712. "name": "🎧蓝光.one人嘉年华天津演唱会",
  713. "urls": [
  714. "http://v3.toutiaovod.com/3984f83b65e49669054499cdaf4a5a13/62023218/video/tos/cn/tos-cn-ve-4-alinc2/8ca69024714348b8ab5082eb8d9196bb/"
  715. ]
  716. }, {
  717. "name": "🎧蓝光.西域男孩.全球首场线上演唱会",
  718. "urls": [
  719. "http://v6.toutiaovod.com/430ed4326eb63468dc38031d11993097/6202286a/video/tos/cn/tos-cn-ve-4-alinc2/e230f10127ae4f7b9c961b4058b588b4/"
  720. ]
  721. }, {
  722. "name": "🎧蓝光.SHE2014世界巡回演唱会台北站",
  723. "urls": [
  724. "http://v18.toutiaovod.com/e96f9b2d292ffc40ed79fad4a6fe74fc/6202494e/video/tos/cn/tos-cn-ve-4-alinc2/f90fb6df97d34fe19de8538dab51fa82/"
  725. ]
  726. }]
  727. }, {
  728. "group": "4K频道",
  729. "channels": [{
  730. "name": "CCTV164K-SDR",
  731. "urls": ["http://223.110.235.9/ott.js.chinamobile.com/PLTV/3/224/3221228168/index.m3u8"]
  732. }, {
  733. "name": "CCTV164K-HDR",
  734. "urls": ["http://223.110.235.24/ott.js.chinamobile.com/PLTV/3/224/3221228127/index.m3u8",
  735. "http://39.134.65.141/PLTV/88888888/224/3221225655/index.m3u8",
  736. "http://39.135.41.243/PLTV/88888888/224/3221226716/index.m3u8?hls",
  737. "http://39.135.46.246:6610/PLTV/77777777/224/3221225863/index.m3u8?hls",
  738. "http://39.134.66.2/PLTV/88888888/224/3221225655/index.m3u8"
  739. ]
  740. }, {
  741. "name": "冬奥纪实8k",
  742. "urls": ["http://down.btvcloud.com:80/8k2021zhibo/zhibo8K2021.m3u8"]
  743. }, {
  744. "name": "4K超高清电影",
  745. "urls": ["http://www.xinarte.com/sxg.php?id=emdy4k_8000"]
  746. }, {
  747. "name": "纯享4K",
  748. "urls": ["http://223.110.236.8/ott.js.chinamobile.com/PLTV/3/224/3221228242/index.m3u8",
  749. "http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221228165/index.m3u8",
  750. "http://39.134.3.73:6610/000000001666/100000000100111083/1.m3u8",
  751. "http://ott.js.chinamobile.com/TVOD/3/224/3221228242/index.m3u8",
  752. "http://39.135.46.246:6610/PLTV/77777777/224/3221225726/index.m3u8?hls"
  753. ]
  754. }, {
  755. "name": "CCTV4K",
  756. "urls": ["https://p.ggiptv.com/v/4k.m3u8", "http://ye23.win/iptv/4k.cctv.php",
  757. "http://liveop.cctv.cn/hls/4KHD/playlist.m3u8"
  758. ]
  759. }, {
  760. "name": "广东综艺4K",
  761. "urls": ["http://112.74.200.9:88/tv000000/m3u8.php?/iTouchTV/1198"]
  762. }, {
  763. "name": "爱上4K",
  764. "urls": [
  765. "http://39.134.18.82/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226352/index.m3u8"
  766. ]
  767. }, {
  768. "name": "北京iptv4K",
  769. "urls": [
  770. "http://39.134.134.85/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226550/index.m3u8?servicetype=1&icpid=&accounttype=1&limitflux=-1&limitdur=-1&GuardEncType=2&accountinfo=3QGHZfaujB8rRCsAsCvwpxxlHr4QY7xmzJA0CWZ2m2oFrdR%2B0WqiDAHoOrKmOBjJo1DAVyGMxV75D0k9A8UW52%2FrO%2F0g1FiOsgmHLskIhGej57NNTIcVyR%2FC8%2FqFakBO3%2B2%2FLci77HWE%2FMDUdCEgEA%3D%3D%3A20211105223205%2C10000100000000050000000003887500%2CF6D75A298389DD1E7C3B7D397327CA23%2C-1%2C0%2C1%2C%2C%2C2%2C%2C%2CEND"
  771. ]
  772. }, {
  773. "name": "4K修复",
  774. "urls": [
  775. "http://223.110.235.21:80/wh7f454c46tw2065242376_643205074/ott.js.chinamobile.com/TVOD/3/224/3221228141/index.m3u8",
  776. "http://ott.js.chinamobile.com/TVOD/3/224/3221228141/index.m3u8"
  777. ]
  778. }, {
  779. "name": "斗鱼4k",
  780. "urls": ["http://zzy789.xyz/douyu1.php?id=9249162",
  781. "http://080880qazwsx.ve5.aihost10.top/dy.php?id=9249162"
  782. ]
  783. }, {
  784. "name": "4K电视剧",
  785. "urls": ["http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228113/index.m3u8",
  786. "http://223.110.236.5/ott.js.chinamobile.com/PLTV/3/224/3221228113/index.m3u8",
  787. "http://ott.js.chinamobile.com/TVOD/3/224/3221228113/index.m3u8"
  788. ]
  789. }, {
  790. "name": "欢笑剧场4K",
  791. "urls": ["http://39.134.3.73:6610/000000001666/100000000100111208/1.m3u8",
  792. "http://223.110.235.27/ott.js.chinamobile.com/PLTV/3/224/3221227715/index.m3u8",
  793. "http://ott.js.chinamobile.com/TVOD/3/224/3221227715/index.m3u8"
  794. ]
  795. }]
  796. }, {
  797. "group": "NBA直播",
  798. "channels": [{
  799. "name": "猫群内部交流",
  800. "urls": [
  801. "http://v18.toutiaovod.com/39a7fd5303f3a62fcfaa6d2512f46db3/62024c15/video/tos/cn/tos-cn-ve-4-alinc2/edee8ae768f047a7a547f8428f0b6d75/"
  802. ]
  803. }, {
  804. "name": "查阅比赛时间",
  805. "urls": [
  806. "http://v18.toutiaovod.com/dd31fa96aa56364685ff1afd9ff81bef/6201680d/video/tos/cn/tos-cn-ve-0026/4c3283b565be4bf28599dad4572e1c40/"
  807. ]
  808. }, {
  809. "name": "开赛前10分钟",
  810. "urls": [
  811. "http://v26.toutiaovod.com/bb3e7eb757842cb1611e65a901728ee8/62025e9e/video/tos/cn/tos-cn-ve-4/3d558e7cfc6b4b6d806c8aab599714c3/"
  812. ]
  813. }, {
  814. "name": "先查1-4频道",
  815. "urls": [
  816. "http://v9.toutiaovod.com/aa7c0b8bbcab3aa35388b9e7bdae02fb/62025e00/video/tos/cn/tos-cn-ve-0026-alinc2/c1bc65bdea0343749fb42def945522c7/"
  817. ]
  818. }, {
  819. "name": "再球队名称找",
  820. "urls": [
  821. "http://v3.toutiaovod.com/8c5858af61b7dfba2ca6408601a85e0e/620168bb/video/tos/cn/tos-cn-ve-0026/e4be8d48ef894ec3b2525ddfb464ff7e/"
  822. ]
  823. }, {
  824. "name": "以下直播频道",
  825. "urls": [
  826. "http://v9.toutiaovod.com/aa42149a6b57cc45ffd395594c92c252/62025dda/video/tos/cn/tos-cn-ve-4/b386916e72f6461199d50110d39c12b2/"
  827. ]
  828. }, {
  829. "name": "1频道NBA",
  830. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/nbatv/chunks.m3u8"]
  831. }, {
  832. "name": "2频道ABC",
  833. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/abc/chunks.m3u8"]
  834. }, {
  835. "name": "3频道ESPN",
  836. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/espn/chunks.m3u8"]
  837. }, {
  838. "name": "4频道TNT",
  839. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/TNT/chunks.m3u8"]
  840. }, {
  841. "name": "凯尔特人",
  842. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/celtics/chunks.m3u8"]
  843. }, {
  844. "name": "尼克斯",
  845. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/knicks/chunks.m3u8"]
  846. }, {
  847. "name": "勇士",
  848. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/warriors/chunks.m3u8"]
  849. }, {
  850. "name": "奇才",
  851. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/wizards/chunks.m3u8"]
  852. }, {
  853. "name": "骑士",
  854. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/cavaliers/chunks.m3u8"]
  855. }, {
  856. "name": "灰熊",
  857. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/grizzlies/chunks.m3u8"]
  858. }, {
  859. "name": "快船",
  860. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/clippers/chunks.m3u8"]
  861. }, {
  862. "name": "老鹰",
  863. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/hawks/chunks.m3u8"]
  864. }, {
  865. "name": "魔术",
  866. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/magic/chunks.m3u8"]
  867. }, {
  868. "name": "热火",
  869. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/heat/chunks.m3u8"]
  870. }, {
  871. "name": "独行侠",
  872. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/mavericks/chunks.m3u8"]
  873. }, {
  874. "name": "马刺",
  875. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/spurs/chunks.m3u8"]
  876. }, {
  877. "name": "湖人",
  878. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/lakers/chunks.m3u8"]
  879. }, {
  880. "name": "鹈鹕",
  881. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/pelicans/chunks.m3u8"]
  882. }, {
  883. "name": "黄蜂",
  884. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/hornets/chunks.m3u8"]
  885. }, {
  886. "name": "76人",
  887. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/76ers/chunks.m3u8"]
  888. }, {
  889. "name": "篮网",
  890. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/nets/chunks.m3u8"]
  891. }, {
  892. "name": "公牛",
  893. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/bulls/chunks.m3u8"]
  894. }, {
  895. "name": "步行者",
  896. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/pacers/chunks.m3u8"]
  897. }, {
  898. "name": "雄鹿",
  899. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/bucks/chunks.m3u8"]
  900. }, {
  901. "name": "开拓者",
  902. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/blazers/chunks.m3u8"]
  903. }, {
  904. "name": "猛龙",
  905. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/raptors/chunks.m3u8"]
  906. }, {
  907. "name": "雷霆",
  908. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/thunder/chunks.m3u8"]
  909. }, {
  910. "name": "太阳",
  911. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/suns/chunks.m3u8"]
  912. }, {
  913. "name": "爵士",
  914. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/jazz/chunks.m3u8"]
  915. }, {
  916. "name": "掘金",
  917. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/nuggets/chunks.m3u8"]
  918. }, {
  919. "name": "国王",
  920. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/kings/chunks.m3u8"]
  921. }, {
  922. "name": "活塞",
  923. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/pistons/chunks.m3u8"]
  924. }, {
  925. "name": "火箭",
  926. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/rockets/chunks.m3u8"]
  927. }, {
  928. "name": "森林狼",
  929. "urls": ["https://dqm8bvwrahfi8.cloudfront.net/hls/timberwolves/chunks.m3u8"]
  930. }]
  931. }, {
  932. "group": "赛事直播",
  933. "channels": [{
  934. "name": "英超法甲德甲",
  935. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225965/index.m3u8?hls"]
  936. }, {
  937. "name": "意甲西甲中超",
  938. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225962/index.m3u8?hls"]
  939. }, {
  940. "name": "nba-cba-ufc等",
  941. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225959/index.m3u8?hls"]
  942. }, {
  943. "name": "全部场次直播",
  944. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225935/index.m3u8?hls"]
  945. }, {
  946. "name": "Q743073078",
  947. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225906/index.m3u8?hls"]
  948. }, {
  949. "name": "下方直播信号",
  950. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225876/index.m3u8?hls"]
  951. }, {
  952. "name": "0MG体育",
  953. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225851/index.m3u8?hls"]
  954. }, {
  955. "name": "1MG体育",
  956. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225849/index.m3u8?hls"]
  957. }, {
  958. "name": "2MG体育",
  959. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225848/index.m3u8?hls"]
  960. }, {
  961. "name": "3MG体育",
  962. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225846/index.m3u8?hls"]
  963. }, {
  964. "name": "4MG体育",
  965. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225845/index.m3u8?hls"]
  966. }, {
  967. "name": "5MG体育",
  968. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225843/index.m3u8?hls"]
  969. }, {
  970. "name": "6MG体育",
  971. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225842/index.m3u8?hls"]
  972. }, {
  973. "name": "7MG体育",
  974. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225840/index.m3u8?hls"]
  975. }, {
  976. "name": "8MG体育",
  977. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225839/index.m3u8?hls"]
  978. }, {
  979. "name": "9MG体育",
  980. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225837/index.m3u8?hls"]
  981. }, {
  982. "name": "10MG体育",
  983. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225834/index.m3u8?hls"]
  984. }, {
  985. "name": "11MG体育",
  986. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225820/index.m3u8?hls"]
  987. }, {
  988. "name": "12MG体育",
  989. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225817/index.m3u8?hls"]
  990. }, {
  991. "name": "13MG体育",
  992. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225814/index.m3u8?hls"]
  993. }, {
  994. "name": "14MG体育",
  995. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225811/index.m3u8?hls"]
  996. }, {
  997. "name": "15MG体育",
  998. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225808/index.m3u8?hls"]
  999. }, {
  1000. "name": "16MG体育",
  1001. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225805/index.m3u8?hls"]
  1002. }, {
  1003. "name": "17MG体育",
  1004. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225802/index.m3u8?hls"]
  1005. }, {
  1006. "name": "18MG体育",
  1007. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225799/index.m3u8?hls"]
  1008. }, {
  1009. "name": "19MG体育",
  1010. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225796/index.m3u8?hls"]
  1011. }, {
  1012. "name": "20MG体育",
  1013. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225793/index.m3u8?hls"]
  1014. }, {
  1015. "name": "21MG体育",
  1016. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225792/index.m3u8?hls"]
  1017. }, {
  1018. "name": "22MG体育",
  1019. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225789/index.m3u8?hls"]
  1020. }, {
  1021. "name": "23MG体育",
  1022. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225786/index.m3u8?hls"]
  1023. }, {
  1024. "name": "24MG体育",
  1025. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225783/index.m3u8?hls"]
  1026. }, {
  1027. "name": "25MG体育",
  1028. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225780/index.m3u8?hls"]
  1029. }, {
  1030. "name": "26MG体育",
  1031. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225777/index.m3u8?hls"]
  1032. }, {
  1033. "name": "27MG体育",
  1034. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225774/index.m3u8?hls"]
  1035. }, {
  1036. "name": "28MG体育",
  1037. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225771/index.m3u8?hls"]
  1038. }, {
  1039. "name": "29MG体育",
  1040. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225769/index.m3u8?hls"]
  1041. }, {
  1042. "name": "30MG体育",
  1043. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225654/index.m3u8?hls"]
  1044. }, {
  1045. "name": "31MG体育",
  1046. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225920/index.m3u8?hls"]
  1047. }, {
  1048. "name": "32MG体育",
  1049. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225917/index.m3u8?hls"]
  1050. }, {
  1051. "name": "33MG体育",
  1052. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225914/index.m3u8?hls"]
  1053. }, {
  1054. "name": "34MG体育",
  1055. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225911/index.m3u8?hls"]
  1056. }, {
  1057. "name": "35MG体育",
  1058. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225908/index.m3u8?hls"]
  1059. }, {
  1060. "name": "36MG体育",
  1061. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225905/index.m3u8?hls"]
  1062. }, {
  1063. "name": "37MG体育",
  1064. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225902/index.m3u8?hls"]
  1065. }, {
  1066. "name": "38MG体育",
  1067. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225899/index.m3u8?hls"]
  1068. }, {
  1069. "name": "39MG体育",
  1070. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225896/index.m3u8?hls"]
  1071. }, {
  1072. "name": "40MG体育",
  1073. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225893/index.m3u8?hls"]
  1074. }, {
  1075. "name": "41MG体育",
  1076. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225871/index.m3u8?hls"]
  1077. }, {
  1078. "name": "42MG体育",
  1079. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225868/index.m3u8?hls"]
  1080. }, {
  1081. "name": "43MG体育",
  1082. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225865/index.m3u8?hls"]
  1083. }, {
  1084. "name": "44MG体育",
  1085. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225862/index.m3u8?hls"]
  1086. }, {
  1087. "name": "45MG体育",
  1088. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225861/index.m3u8?hls"]
  1089. }, {
  1090. "name": "46MG体育",
  1091. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225860/index.m3u8?hls"]
  1092. }, {
  1093. "name": "47MG体育",
  1094. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225859/index.m3u8?hls"]
  1095. }, {
  1096. "name": "48MG体育",
  1097. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225858/index.m3u8?hls"]
  1098. }, {
  1099. "name": "49MG体育",
  1100. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225857/index.m3u8?hls"]
  1101. }, {
  1102. "name": "50MG体育",
  1103. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225856/index.m3u8?hls"]
  1104. }, {
  1105. "name": "51MG体育",
  1106. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225855/index.m3u8?hls"]
  1107. }, {
  1108. "name": "52MG体育",
  1109. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225854/index.m3u8?hls"]
  1110. }, {
  1111. "name": "53MG体育",
  1112. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225853/index.m3u8?hls"]
  1113. }, {
  1114. "name": "54MG体育",
  1115. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225852/index.m3u8?hls"]
  1116. }]
  1117. }, {
  1118. "group": "体育频道",
  1119. "channels": [{
  1120. "name": "魅力足球",
  1121. "urls": ["http://183.207.255.188/live/program/live/mlyyhd/4000000/mnf.m3u8",
  1122. "http://iptv.tvfix.org/hls/mlzqhd.m3u8"
  1123. ]
  1124. }, {
  1125. "name": "五星体育",
  1126. "urls": [
  1127. "http://116.128.128.197/liveplay-kk.rtxapp.com/live/program/live/ssty/2300000/mnf.m3u8",
  1128. "http://119.167.229.31/liveplay-kk.rtxapp.com/live/program/live/ssty/2300000/mnf.m3u8",
  1129. "http://119.167.229.31/liveplay-kk.rtxapp.com/live/program/live/ssty/4000000/mnf.m3u8",
  1130. "http://shbu.live.bestvcdn.com.cn:8080/live/program/live/ssty/2300000/mnf.m3u8",
  1131. "http://shbu.live.bestvcdn.com.cn:8080/live/program/live/ssty/4000000/mnf.m3u8",
  1132. "http://140.207.241.2:8080/live/program/live/ssty/2300000/mnf.m3u8",
  1133. "http://iptv.tvfix.org/hls/wxtyhd.m3u8"
  1134. ]
  1135. }, {
  1136. "name": "劲爆体育",
  1137. "urls": ["http://iptv.tvfix.org/hls/jbtyhd.m3u8",
  1138. "http://shbu.live.bestvcdn.com.cn:8080/live/program/live/jbtyhd/2300000/mnf.m3u8",
  1139. "http://shbu.live.bestvcdn.com.cn:8080/live/program/live/jbtyhd/4000000/mnf.m3u8",
  1140. "http://140.207.241.2:8080/live/program/live/jbtyhd/2300000/mnf.m3u8",
  1141. "http://140.207.241.2:8080/live/program/live/jbtyhd/4000000/mnf.m3u8"
  1142. ]
  1143. }, {
  1144. "name": "纬来体育台",
  1145. "urls": ["rtmp://59.124.75.138/sat/tv721", "rtmp://59.124.75.156/sat/tv721",
  1146. "rtmp://59.124.75.157/sat/tv721",
  1147. "http://211.23.114.106:8502/http/61.221.81.94:8088/hls/67/809/ch28.m3u8?token="
  1148. ]
  1149. }, {
  1150. "name": "博斯无限",
  1151. "urls": ["rtmp://59.124.75.138/sat/md011", "rtmp://59.124.75.157/sat/md011"]
  1152. }, {
  1153. "name": "新视觉HD",
  1154. "urls": ["http://183.207.255.188/live/program/live/xsjhd/4000000/mnf.m3u8",
  1155. "http://shbu.live.bestvcdn.com.cn:8080/live/program/live/xsjhd/2300000/mnf.m3u8"
  1156. ]
  1157. }, {
  1158. "name": "电子竞技",
  1159. "urls": ["http://39.134.66.66/PLTV/88888888/224/3221225559/index.m3u8",
  1160. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225559/1.m3u8"
  1161. ]
  1162. }, {
  1163. "name": "精品体育",
  1164. "urls": ["http://39.135.138.60:18890/PLTV/88888910/224/3221225709/index.m3u8",
  1165. "http://183.207.248.71:80/cntv/live1/n-jtiyu/n-jtiyu",
  1166. "http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225715/index.m3u8",
  1167. "http://117.148.179.37/PLTV/88888888/224/3221229719/index.m3u8",
  1168. "http://117.148.179.47/PLTV/88888888/224/3221229026/index.m3u8"
  1169. ]
  1170. }, {
  1171. "name": "CCTV-5体育",
  1172. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225516/index.m3u8?hls",
  1173. "http://39.135.138.60:18890/TVOD/88888910/224/3221225633/index.m3u8",
  1174. "http://cctvalih5ca.v.myalicdn.com:80/live/cctv5_2/index.m3u8"
  1175. ]
  1176. }, {
  1177. "name": "CCTV-5+体育",
  1178. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225621/index.m3u8?hls",
  1179. "http://cctvalih5ca.v.myalicdn.com:80/live/cctv5plus_2/index.m3u8"
  1180. ]
  1181. }, {
  1182. "name": "ELTA体育1台",
  1183. "urls": ["rtmp://59.124.75.138/sat/md051", "rtmp://59.124.75.157/sat/md051"]
  1184. }]
  1185. }, {
  1186. "group": "中央频道",
  1187. "channels": [{
  1188. "name": "凤凰中文",
  1189. "urls": ["http://ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8",
  1190. "http://playtv-live.ifeng.com/live/06OLEGEGM4G.m3u8",
  1191. "http://playtv-live.ifeng.com:80/live/06OLEGEGM4G.m3u8",
  1192. "http://ott.js.chinamobile.com/TVOD/3/224/3221228057/index.m3u8",
  1193. "http://124.232.233.16:6610/000000001001/201500000230/index.m3u8?&version=v1.0&IASHttpSessionId=SLB2046220190906022827233263&AuthInfo=&m3u8_level=2",
  1194. "http://stream.guihet.com/t/ifeng2.php?id=2"
  1195. ]
  1196. }, {
  1197. "name": "凤凰资讯",
  1198. "urls": ["http://ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8",
  1199. "http://playtv-live.ifeng.com/live/06OLEEWQKN4.m3u8",
  1200. "http://playtv-live.ifeng.com:80/live/06OLEEWQKN4.m3u8",
  1201. "http://ott.js.chinamobile.com/TVOD/3/224/3221228098/index.m3u8",
  1202. "http://stream.guihet.com/t/ifeng2.php?id=1",
  1203. "https://liveprodeuwest.akamaized.net/eu1/Channel-EUTVqvs-AWS-ireland-1/Source-EUTVqvs-240-1_live.m3u8",
  1204. "http://124.232.233.16:6610/000000001001/201500000231/index.m3u8?&version=v1.0&IASHttpSessionId=SLB2046220190906022827233263&AuthInfo=&m3u8_level=2"
  1205. ]
  1206. }, {
  1207. "name": "CCTV-1综合",
  1208. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225654/index.m3u8?hls",
  1209. "http://223.110.243.159/ott.js.chinamobile.com/PLTV/3/224/3221227725/index.m3u8$8M1080P",
  1210. "http://117.148.179.160/PLTV/88888888/224/3221231468/index.m3u8",
  1211. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r2/cctv/cctv1hd/2500/index.m3u8?&encrypt=1",
  1212. "http://39.134.39.4/PLTV/88888888/224/3221226247/index.m3u8",
  1213. "http://39.134.115.163:8080/PLTV/88888910/224/3221225618/index.m3u8",
  1214. "http://39.135.138.58:18890/PLTV/88888888/224/3221225642/index.m3u8",
  1215. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/cctv1hd265/57/20191230/index.m3u8?&encrypt=1"
  1216. ]
  1217. }, {
  1218. "name": "CCTV-2财经",
  1219. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225657/index.m3u8?hls",
  1220. "http://39.135.138.60:18890/PLTV/88888910/224/3221225619/index.m3u8",
  1221. "http://39.135.138.60:18890/PLTV/88888910/224/3221225643/index.m3u8",
  1222. "http://39.134.18.82/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226195/index.m3u8$5M1080P50F",
  1223. "http://ott.js.chinamobile.com/TVOD/3/224/3221228118/index.m3u8",
  1224. "http://ott.js.chinamobile.com/TVOD/3/224/3221228094/index.m3u8",
  1225. "http://39.134.115.163:8080/PLTV/88888910/224/3221225619/index.m3u8",
  1226. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r2/cctv/cctv2hd/3000/index.m3u8?&encrypt=1",
  1227. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/cctv2hd265/55/20200407/index.m3u8?&encrypt=1"
  1228. ]
  1229. }, {
  1230. "name": "CCTV-3综艺",
  1231. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225677/index.m3u8?hls",
  1232. "http://39.135.32.39:6610/000000001000/1000000001000011218/1.m3u8?channel-id=ystenlive&Contentid=1000000001000011218&livemode=1&stbId=005203FF000360100001001A34C0CD33&userToken=4ef1f6fdd53988bdf19472c73151206f21vv&usergroup=g21077200000&version=1.0&owaccma",
  1233. "http://111.40.196.9/PLTV/88888888/224/3221225588/index.m3u8",
  1234. "http://39.134.115.163:8080/PLTV/88888910/224/3221225647/index.m3u8",
  1235. "http://223.110.254.137:6610/gitv/live1/G_CCTV-3-HQ/G_CCTV-3-HQ.m3u8#http://39.130.202.76:6610/gitv_live/CCTV-3/CCTV-3.m3u8",
  1236. "http://111.63.117.13:6060/030000001000/CCTV-3/CCTV-3.m3u8",
  1237. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r2/ocn/cctv3hd/3000/index.m3u8?&encrypt=1"
  1238. ]
  1239. }, {
  1240. "name": "CCTV-4国际",
  1241. "urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225621/index.m3u8",
  1242. "http://ott.js.chinamobile.com/TVOD/3/224/3221228156/index.m3u8",
  1243. "http://39.135.46.246:6610/PLTV/77777777/224/3221225753/index.m3u8?hls",
  1244. "http://iptv.tvfix.org/hls/cctv4hd.m3u8",
  1245. "http://39.130.202.81:6610/gitv_live/G_CCTV-4-HD/G_CCTV-4-HD.m3u8",
  1246. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r2/cctv/cctv4hd/3000/index.m3u8?&encrypt=1",
  1247. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/cctv4hd265/57/20191230/index.m3u8?&encrypt=1"
  1248. ]
  1249. }, {
  1250. "name": "CCTV-4欧洲",
  1251. "urls": [
  1252. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/20200324/cctv4ouhd/57/index.m3u8?&encrypt=1"
  1253. ]
  1254. }, {
  1255. "name": "CCTV-4美洲",
  1256. "urls": [
  1257. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/20200324/cctv4meihd/57/index.m3u8?&encrypt=1"
  1258. ]
  1259. }, {
  1260. "name": "CCTV-5体育",
  1261. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225660/index.m3u8?hls",
  1262. "http://ott.js.chinamobile.com/TVOD/3/224/3221228173/index.m3u8",
  1263. "http://39.135.46.246:6610/PLTV/77777777/224/3221225516/index.m3u8?hls",
  1264. "http://ott.js.chinamobile.com/TVOD/3/224/3221228173/index.m3u8",
  1265. "http://111.40.196.9/PLTV/88888888/224/3221225743/index.m3u8",
  1266. "http://39.135.140.226:6410/PLTV/88888888/224/3221225633/2/index.m3u8?fmt=ts2hls",
  1267. "http://39.134.115.163:8080/PLTV/88888910/224/3221225633/index.m3u8",
  1268. "http://39.135.138.58:18890/PLTV/88888888/224/3221225751/index.m3u8",
  1269. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r2/cctv/cctv5hdnew/2500/index.m3u8?&encrypt=1",
  1270. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/cctv5hd265/57/20191230/index.m3u8?&encrypt=1"
  1271. ]
  1272. }, {
  1273. "name": "CCTV-5+体育",
  1274. "urls": ["http://39.134.65.175/PLTV/88888888/224/3221225507/index.m3u8",
  1275. "http://39.135.138.60:18890/PLTV/88888910/224/3221225649/index.m3u8",
  1276. "http://39.135.138.60:18890/PLTV/88888910/224/3221225706/index.m3u8",
  1277. "http://cctvalih5ca.v.myalicdn.com/live/cctv5plus_2/index.m3u8",
  1278. "http://39.134.115.163:8080/PLTV/88888910/224/3221225649/index.m3u8",
  1279. "http://39.135.46.246:6610/PLTV/77777777/224/3221225621/index.m3u8?hls",
  1280. "http://39.135.140.226:6410/PLTV/88888888/224/3221225649/2/index.m3u8?fmt=ts2hls",
  1281. "http://42.176.185.28:9901/tsfile/live/1004_1.m3u8",
  1282. "http://39.135.138.60:18890/PLTV/88888910/224/3221225649/index.m3u8"
  1283. ]
  1284. }, {
  1285. "name": "CCTV-6电影",
  1286. "urls": [
  1287. "http://223.110.246.70/ott.js.chinamobile.com/PLTV/4/224/3221227430/index.m3u8$8M1080P",
  1288. "http://39.135.138.58:18890/PLTV/88888888/224/3221225632/index.m3u8",
  1289. "http://ott.js.chinamobile.com/TVOD/3/224/3221228185/index.m3u8",
  1290. "http://39.134.115.163:8080/PLTV/88888910/224/3221225632/index.m3u8",
  1291. "http://39.135.46.246:6610/PLTV/77777777/224/3221225683/index.m3u8?hls",
  1292. "http://39.134.115.163:8080/PLTV/88888910/224/3221225632/index.m3u8",
  1293. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/cctv6hd265/55/20200407/index.m3u8?&encrypt=1"
  1294. ]
  1295. }, {
  1296. "name": "CCTV-7军事",
  1297. "urls": ["http://cctvalih5ca.v.myalicdn.com/live/cctv7_2/index.m3u8",
  1298. "http://ott.js.chinamobile.com/TVOD/3/224/3221227642/index.m3u8",
  1299. "http://39.135.46.246:6610/PLTV/77777777/224/3221225627/index.m3u8?hls",
  1300. "http://39.134.115.163:8080/PLTV/88888910/224/3221225624/index.m3u8",
  1301. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225733/1.m3u8",
  1302. "http://39.134.18.82/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226192/index.m3u8$5M1080P50F",
  1303. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/20200324/cctv7hd/57/index.m3u8?&encrypt=1"
  1304. ]
  1305. }, {
  1306. "name": "CCTV-8电视剧",
  1307. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225630/index.m3u8?hls",
  1308. "http://39.135.138.59:18890/PLTV/88888910/224/3221225631/index.m3u8",
  1309. "http://ott.js.chinamobile.com/TVOD/3/224/3221228079/index.m3u8",
  1310. "http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221227204/index.m3u8$4M1080P",
  1311. "http://39.134.115.163:8080/PLTV/88888910/224/3221225635/index.m3u8",
  1312. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/cctv8hd265/55/20200407/index.m3u8?&encrypt=1"
  1313. ]
  1314. }, {
  1315. "name": "CCTV-9记录",
  1316. "urls": ["http://ott.js.chinamobile.com/TVOD/3/224/3221227614/index.m3u8",
  1317. "http://117.148.179.160/PLTV/88888888/224/3221231697/index.m3u8",
  1318. "http://111.40.196.9/PLTV/88888888/224/3221225502/index.m3u8",
  1319. "http://39.135.46.246:6610/PLTV/77777777/224/3221225633/index.m3u8?hls",
  1320. "http://39.134.115.163:8080/PLTV/88888910/224/3221225626/index.m3u8",
  1321. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/20200324/cctv9hd/57/index.m3u8?&encrypt=1"
  1322. ]
  1323. }, {
  1324. "name": "CCTV-10科教",
  1325. "urls": ["http://ott.js.chinamobile.com/TVOD/3/224/3221228078/index.m3u8",
  1326. "http://117.148.179.137:80/PLTV/88888888/224/3221231666/1.m3u8",
  1327. "http://39.135.46.246:6610/PLTV/77777777/224/3221225624/index.m3u8?hls",
  1328. "http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227317/index.m3u8$3M1080P",
  1329. "http://39.135.138.59:18890/PLTV/88888910/224/3221225627/index.m3u8",
  1330. "http://39.134.115.163:8080/PLTV/88888910/224/3221225627/index.m3u8",
  1331. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r2/ocn/cctv10hd/3000/index.m3u8?&encrypt=1"
  1332. ]
  1333. }, {
  1334. "name": "CCTV-11戏剧",
  1335. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225750/index.m3u8?hls",
  1336. "http://117.148.179.163:80/PLTV/88888888/224/3221231711/1.m3u8",
  1337. "http://39.135.138.58:18890/PLTV/88888888/224/3221225628/index.m3u8",
  1338. "http://223.110.251.152:6610/cntv/live1/cctv-11/cctv-11",
  1339. "http://39.134.115.163:8080/PLTV/88888910/224/3221225628/index.m3u8",
  1340. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/cctv11hd/57/20200103/index.m3u8?&encrypt=1",
  1341. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/cctv11hd265/55/20200407/index.m3u8?&encrypt=1"
  1342. ]
  1343. }, {
  1344. "name": "CCTV-12社会",
  1345. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225645/index.m3u8?hls",
  1346. "http://ott.js.chinamobile.com/TVOD/3/224/3221227655/index.m3u8",
  1347. "http://39.130.202.81:6610/gitv_live/G_CCTV-12-HD/G_CCTV-12-HD.m3u8",
  1348. "http://183.207.248.71/cntv/live1/HD-8000k-1080P-cctv12/HD-8000k-1080P-cctv12",
  1349. "http://39.134.115.163:8080/PLTV/88888910/224/3221225629/index.m3u8",
  1350. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/20200324/cctv12hd/57/index.m3u8?&encrypt=1"
  1351. ]
  1352. }, {
  1353. "name": "CCTV-13新闻",
  1354. "urls": ["http://ott.js.chinamobile.com/TVOD/3/224/3221228224/index.m3u8",
  1355. "http://ott.js.chinamobile.com/TVOD/3/224/3221228224/index.m3u8",
  1356. "http://39.135.46.246:6610/PLTV/77777777/224/3221225742/index.m3u8?hls",
  1357. "http://newsbsh5ca.v.live.baishancdnx.cn/live/newscctv13_2_900.m3u8",
  1358. "http://111.40.196.9/PLTV/88888888/224/3221225504/index.m3u8",
  1359. "http://223.110.242.200:6610/gitv/live1/G_CCTV-13-CQ/G_CCTV-13-CQ",
  1360. "http://ott.js.chinamobile.com/TVOD/3/224/3221228121/index.m3u8",
  1361. "http://39.134.115.163:8080/PLTV/88888910/224/3221225638/index.m3u8"
  1362. ]
  1363. }, {
  1364. "name": "CCTV-14少儿",
  1365. "urls": ["http://39.135.138.60:18890/PLTV/88888910/224/3221225639/index.m3u8",
  1366. "http://39.135.46.246:6610/PLTV/77777777/224/3221225648/index.m3u8?hls",
  1367. "http://39.134.115.163:8080/PLTV/88888910/224/3221225639/index.m3u8",
  1368. "http://223.110.242.151:6610/cntv/live1/HD-8000k-1080P-cctv14/1.m3u8",
  1369. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225732/1.m3u8",
  1370. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/cctv14hd265/55/20200407/index.m3u8?&encrypt=1",
  1371. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r2/ocn/cctv14hd/3000/index.m3u8?&encrypt=1"
  1372. ]
  1373. }, {
  1374. "name": "CCTV-15音乐",
  1375. "urls": ["http://39.135.138.58:18890/PLTV/88888910/224/3221225641/index.m3u8",
  1376. "http://39.134.65.162/PLTV/88888888/224/3221225513/index.m3u8",
  1377. "http://117.148.179.169:80/PLTV/88888888/224/3221231693/1.m3u8",
  1378. "http://39.135.46.246:6610/PLTV/77777777/224/3221225693/index.m3u8?hls",
  1379. "http://111.40.196.9/PLTV/88888888/224/3221225500/index.m3u8",
  1380. "http://223.110.242.26/ott.js.chinamobile.com/PLTV/3/224/3221227538/index.m3u8",
  1381. "http://ott.js.chinamobile.com/TVOD/3/224/3221227538/index.m3u8",
  1382. "http://39.134.115.163:8080/PLTV/88888910/224/3221225641/index.m3u8",
  1383. "http://39.135.138.60:18890/PLTV/88888910/224/3221225641/index.m3u8"
  1384. ]
  1385. }, {
  1386. "name": "CCTV-16奥林匹克",
  1387. "urls": ["http://ott.js.chinamobile.com/TVOD/3/224/3221228144/index.m3u8",
  1388. "http://39.135.46.246:6610/PLTV/77777777/224/3221225897/index.m3u8?hls",
  1389. "http://ott.js.chinamobile.com/PLTV/3/224/3221228144/index.m3u8",
  1390. "http://ott.js.chinamobile.com/PLTV/3/224/3221228144/index.m3u8",
  1391. "http://39.135.129.162/hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226880/index.m3u8",
  1392. "http://39.135.129.162/hwottcdn.ln.chinamobile.com/TVOD/-/224/3221226880/index.m3u8",
  1393. "http://39.135.46.246:6610/PLTV/77777777/224/3221225956/index.m3u8?hls"
  1394. ]
  1395. }, {
  1396. "name": "CTVC-17农业",
  1397. "urls": ["http://ott.js.chinamobile.com/TVOD/3/224/3221227726/index.m3u8",
  1398. "http://39.135.46.246:6610/PLTV/77777777/224/3221225513/index.m3u8?hls",
  1399. "http://39.134.115.163:8080/PLTV/88888910/224/3221225908/index.m3u8",
  1400. "http://cctvalih5ca.v.myalicdn.com/live/cctv17_2/index.m3u8",
  1401. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/20200324/cctv17hd/57/index.m3u8?&encrypt=1"
  1402. ]
  1403. }, {
  1404. "name": "CCTV-纯享4K",
  1405. "urls": ["http://223.110.236.8/ott.js.chinamobile.com/PLTV/3/224/3221228242/index.m3u8",
  1406. "http://ott.js.chinamobile.com/TVOD/3/224/3221228242/index.m3u8",
  1407. "http://39.135.46.246:6610/PLTV/77777777/224/3221225726/index.m3u8?hls",
  1408. "http://39.134.115.163:8080/PLTV/88888910/224/3221225786/index.m3u8"
  1409. ]
  1410. }, {
  1411. "name": "CCTV-4K超高清",
  1412. "urls": ["http://liveop.cctv.cn/hls/4KHD/playlist.m3u8",
  1413. "http://host496323.us.ooqr.com/pltv/cctv4k_ts.php?hls=cq&set=0"
  1414. ]
  1415. }, {
  1416. "name": "CCTV-世界地理",
  1417. "urls": ["http://175.18.189.238:9999/tsfile/live/1000_1.m3u8",
  1418. "http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/sjdl/sjdl711/1000/index.m3u8?&encrypt=1",
  1419. "http://42.176.185.28:9901/tsfile/live/1037_1.m3u8"
  1420. ]
  1421. }, {
  1422. "name": "CCTV-兵器科技",
  1423. "urls": ["http://175.18.189.238:9999/tsfile/live/1027_1.m3u8",
  1424. "http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/gfjs/gfjs711/1000/index.m3u8?&encrypt=1"
  1425. ]
  1426. }, {
  1427. "name": "CCTV-央视台球",
  1428. "urls": ["http://175.18.189.238:9999/tsfile/live/1032_1.m3u8",
  1429. "http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/ystq/ystq711/1000/index.m3u8?&encrypt=1"
  1430. ]
  1431. }, {
  1432. "name": "CCTV-风云足球",
  1433. "urls": ["http://175.18.189.238:9999/tsfile/live/1030_1.m3u8",
  1434. "http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/fyzq/fyzq711/1000/index.m3u8?&encrypt=1",
  1435. "http://42.176.185.28:9901/tsfile/live/1017_1.m3u8"
  1436. ]
  1437. }, {
  1438. "name": "CCTV-文化精品",
  1439. "urls": ["http://175.18.189.238:9999/tsfile/live/1026_1.m3u8",
  1440. "http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/ysjp/ysjp711/1000/index.m3u8?&encrypt=1"
  1441. ]
  1442. }, {
  1443. "name": "CCTV-女性时尚",
  1444. "urls": ["http://175.18.189.238:9999/tsfile/live/1028_1.m3u8",
  1445. "http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/nxss/nxss711/1000/index.m3u8?&encrypt=1"
  1446. ]
  1447. }, {
  1448. "name": "CCTV-怀旧剧场",
  1449. "urls": ["http://175.18.189.238:9999/tsfile/live/1024_1.m3u8",
  1450. "http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/hjjc/hjjc711/1000/index.m3u8?&encrypt=1"
  1451. ]
  1452. }, {
  1453. "name": "CCTV-卫生健康",
  1454. "urls": ["http://175.18.189.238:9999/tsfile/live/1014_1.m3u8"]
  1455. }, {
  1456. "name": "CCTV-第一剧场",
  1457. "urls": ["http://175.18.189.238:9999/tsfile/live/1023_1.m3u8",
  1458. "http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/dyjc/dyjc711/1000/index.m3u8?&encrypt=1"
  1459. ]
  1460. }, {
  1461. "name": "CCTV-风云剧场",
  1462. "urls": ["http://175.18.189.238:9999/tsfile/live/1031_1.m3u8",
  1463. "http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/fyjc/fyjc711/1000/index.m3u8?&encrypt=1"
  1464. ]
  1465. }, {
  1466. "name": "CCTV-风云音乐",
  1467. "urls": ["http://175.18.189.238:9999/tsfile/live/1029_1.m3u8",
  1468. "http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/fyyy/fyyy711/1000/index.m3u8?&encrypt=1"
  1469. ]
  1470. }, {
  1471. "name": "CCTV-高尔夫网球",
  1472. "urls": ["http://175.18.189.238:9999/tsfile/live/1015_1.m3u8",
  1473. "http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/gefwq/gefwq711/1000/index.m3u8?&encrypt=1",
  1474. "http://39.135.46.246:6610/PLTV/77777777/224/3221225884/index.m3u8?hls"
  1475. ]
  1476. }, {
  1477. "name": "CCTV-电视指南",
  1478. "urls": ["http://175.18.189.238:9999/tsfile/live/1025_1.m3u8"]
  1479. }, {
  1480. "name": "CNC中文",
  1481. "urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225694/index.m3u8",
  1482. "http://source07.v.news.cn/live/CNC_CN/playlist.m3u8",
  1483. "http://39.135.138.59:18890/PLTV/88888910/224/3221225694/index.m3u8"
  1484. ]
  1485. }, {
  1486. "name": "CETV-1",
  1487. "urls": ["http://117.148.179.156/PLTV/88888888/224/3221231714/index.m3u8",
  1488. "http://39.130.202.81:6610/gitv_live/G_CETV-1-HD/G_CETV-1-HD.m3u8",
  1489. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r3/cctv/cetv1hd/3000/index.m3u8?&encrypt=1"
  1490. ]
  1491. }, {
  1492. "name": "CETV-2",
  1493. "urls": [
  1494. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r3/cnr/cetv2/600/index.m3u8?&encrypt=1"
  1495. ]
  1496. }, {
  1497. "name": "CETV-3",
  1498. "urls": [
  1499. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r3/cnr/cetv3/600/index.m3u8?&encrypt=1"
  1500. ]
  1501. }, {
  1502. "name": "CETV-4",
  1503. "urls": [
  1504. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r3/cnr/cetv4/600/index.m3u8?&encrypt=1"
  1505. ]
  1506. }, {
  1507. "name": "CGTN",
  1508. "urls": [
  1509. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_x/2018/SD/cctvnews/1000/index.m3u8?&encrypt=1"
  1510. ]
  1511. }, {
  1512. "name": "CGTN-俄语",
  1513. "urls": [
  1514. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_v/2018/SD/cctv/eyu/1000/index.m3u8?&encrypt=1"
  1515. ]
  1516. }, {
  1517. "name": "CGTN-法语",
  1518. "urls": [
  1519. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_v/2018/SD/cctv/fayu/1000/index.m3u8?&encrypt=1"
  1520. ]
  1521. }, {
  1522. "name": "CGTN-纪录",
  1523. "urls": [
  1524. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_v/2018/SD/cctv/doc/1000/index.m3u8?&encrypt=1"
  1525. ]
  1526. }, {
  1527. "name": "CGTN-西班牙语",
  1528. "urls": [
  1529. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_v/2018/SD/cctv/xibanya/1000/index.m3u8?&encrypt=1"
  1530. ]
  1531. }, {
  1532. "name": "CGTN-阿拉伯语",
  1533. "urls": [
  1534. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_v/SD/cctv/alabo/1000/index.m3u8?&encrypt=1"
  1535. ]
  1536. }]
  1537. }, {
  1538. "group": "卫视频道",
  1539. "channels": [{
  1540. "name": "北京卫视",
  1541. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225651/index.m3u8?hls",
  1542. "http://223.110.246.72/ott.js.chinamobile.com/PLTV/4/224/3221227694/index.m3u8$4M1080P",
  1543. "http://223.110.246.72/ott.js.chinamobile.com/PLTV/4/224/3221227694/index.m3u8",
  1544. "http://223.110.244.200:6610/gitv/live1/G_BEIJING-CQ/G_BEIJING-CQ/",
  1545. "http://39.134.39.37/PLTV/88888888/224/3221226161/index.m3u8",
  1546. "http://39.135.140.226:6410/PLTV/88888888/224/3221225600/2/index.m3u8?fmt=ts2hls",
  1547. "http://39.134.115.163:8080/PLTV/88888910/224/3221225674/index.m3u8",
  1548. "http://39.135.138.60:18890/PLTV/88888910/224/3221225673/index.m3u8",
  1549. "http://39.134.118.77/live.gq.miguvideo.com:8080/ws_w/2018/bjws/bjws2000/2000/index.m3u8?&encrypt=1"
  1550. ]
  1551. }, {
  1552. "name": "东方卫视",
  1553. "urls": ["http://223.110.243.142/ott.js.chinamobile.com/PLTV/3/224/3221227597/index.m3u8",
  1554. "http://223.110.242.152:6610/gitv/live1/G_DONGFANG-CQ/G_DONGFANG-CQ/",
  1555. "http://39.135.138.59:18890/PLTV/88888910/224/3221225658/index.m3u8",
  1556. "http://39.135.138.59:18890/PLTV/88888910/224/3221225658/index.m3u8",
  1557. "http://39.135.138.59:18890/PLTV/88888910/224/3221225659/index.m3u8",
  1558. "http://39.135.46.246:6610/PLTV/77777777/224/3221225682/index.m3u8?hls",
  1559. "http://39.135.140.226:6410/PLTV/88888888/224/3221225489/2/index.m3u8?fmt=ts2hls",
  1560. "http://39.134.115.163:8080/PLTV/88888910/224/3221225658/index.m3u8",
  1561. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r4/dfl/dongfangwshd/3000/index.m3u8?&encrypt=1"
  1562. ]
  1563. }, {
  1564. "name": "浙江卫视",
  1565. "urls": [
  1566. "http://223.110.246.73/ott.js.chinamobile.com/PLTV/4/224/3221227692/index.m3u8$4M1080P",
  1567. "http://39.134.18.82/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225798/index.m3u8$3M1080P",
  1568. "http://39.135.46.246:6610/PLTV/77777777/224/3221225695/index.m3u8?hls",
  1569. "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225612/1.m3u8",
  1570. "http://39.135.140.226:6410/PLTV/88888888/224/3221225491/2/index.m3u8?fmt=ts2hls",
  1571. "http://39.134.115.163:8080/PLTV/88888910/224/3221225744/index.m3u8",
  1572. "http://39.135.138.60:18890/PLTV/88888910/224/3221225744/index.m3u8",
  1573. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r2/cctv/zhejianghd/2500/index.m3u8?&encrypt=1"
  1574. ]
  1575. }, {
  1576. "name": "江苏卫视",
  1577. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225636/index.m3u8?hls",
  1578. "http://223.110.246.82/ott.js.chinamobile.com/PLTV/4/224/3221227689/index.m3u8",
  1579. "http://223.110.242.158:6610/gitv/live1/G_JIANGSU-CQ/G_JIANGSU-CQ/",
  1580. "http://111.40.196.9/PLTV/88888888/224/3221225596/index.m3u8",
  1581. "http://39.135.138.59:18890/PLTV/88888910/224/3221225743/index.m3u8",
  1582. "http://39.134.18.82/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225800/index.m3u8$3M1080P",
  1583. "http://117.148.179.160/PLTV/88888888/224/3221231447/index.m3u8",
  1584. "http://39.135.140.226:6410/PLTV/88888888/224/3221225488/2/index.m3u8?fmt=ts2hls",
  1585. "http://39.134.115.163:8080/PLTV/88888910/224/3221225743/index.m3u8",
  1586. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r2/cctv/jiangsuhd/2500/index.m3u8?&encrypt=1"
  1587. ]
  1588. }, {
  1589. "name": "湖北卫视",
  1590. "urls": ["http://ott.js.chinamobile.com/TVOD/3/224/3221228159/index.m3u8",
  1591. "http://111.40.196.9/PLTV/88888888/224/3221225566/index.m3u8",
  1592. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r2/2018/ocn/hubeiwshd/2000/index.m3u8?&encrypt=1"
  1593. ]
  1594. }, {
  1595. "name": "湖南卫视",
  1596. "urls": [
  1597. "http://39.134.18.82/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225799/index.m3u8$3M1080P",
  1598. "http://39.135.138.60:18890/PLTV/88888910/224/3221225745/index.m3u8",
  1599. "http://39.135.138.59:18890/PLTV/88888910/224/3221225704/index.m3u8",
  1600. "http://111.40.196.9/PLTV/88888888/224/3221225521/index.m3u8",
  1601. "http://124.232.233.16:6610/000000001001/201500000067/index.m3u8?&version=v1.0&IASHttpSessionId=SLB2046220190906022827233263&AuthInfo=&m3u8_level=2",
  1602. "http://111.40.196.9/PLTV/88888888/224/3221225519/index.m3u8",
  1603. "http://39.135.46.246:6610/PLTV/77777777/224/3221225692/index.m3u8?hls",
  1604. "http://39.135.140.226:6410/PLTV/88888888/224/3221225490/2/index.m3u8?fmt=ts2hls",
  1605. "http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221227698/index.m3u8$4M1080P",
  1606. "http://223.110.244.133:6610/gitv/live1/G_HUNAN-CQ/G_HUNAN-CQ/",
  1607. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd-hunanhd-2500/index.m3u8?&encrypt=1",
  1608. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/hunanhd265/57/20191230/index.m3u8?&encrypt=1"
  1609. ]
  1610. }, {
  1611. "name": "天津卫视",
  1612. "urls": [
  1613. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd-tianjinhd-1200/index.m3u8?&encrypt=1"
  1614. ]
  1615. }, {
  1616. "name": "辽宁卫视",
  1617. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225779/index.m3u8?hls",
  1618. "http://ott.js.chinamobile.com/TVOD/3/224/3221228162/index.m3u8",
  1619. "http://39.135.138.59:18890/PLTV/88888910/224/3221225696/index.m3u8",
  1620. "http://39.135.140.226:6410/PLTV/88888888/224/3221225601/2/index.m3u8?fmt=ts2hls",
  1621. "http://39.134.115.163:8080/PLTV/88888910/224/3221225696/index.m3u8",
  1622. "http://39.135.138.60:18890/PLTV/88888910/224/3221225735/index.m3u8",
  1623. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r2/2018/ocn/liaoningwshd/2000/index.m3u8?&encrypt=1"
  1624. ]
  1625. }, {
  1626. "name": "深圳卫视",
  1627. "urls": ["http://223.110.246.71/ott.js.chinamobile.com/PLTV/4/224/3221227695/index.m3u8",
  1628. "http://223.110.244.148:6610/gitv/live1/G_SHENZHEN-CQ/G_SHENZHEN-CQ/",
  1629. "http://39.134.39.37/PLTV/88888888/224/3221226199/index.m3u8",
  1630. "http://39.134.39.39/PLTV/88888888/224/3221226199/index.m3u8",
  1631. "http://39.135.46.246:6610/PLTV/77777777/224/3221225691/index.m3u8?hls",
  1632. "http://39.135.140.226:6410/PLTV/88888888/224/3221225598/2/index.m3u8?fmt=ts2hls",
  1633. "http://39.134.115.163:8080/PLTV/88888910/224/3221225741/index.m3u8",
  1634. "http://39.135.138.60:18890/PLTV/88888910/224/3221225741/index.m3u8",
  1635. "http://39.134.118.77/live.gq.miguvideo.com:8080/ws_w/2018/szws/szws711/1000/index.m3u8?&encrypt=1"
  1636. ]
  1637. }, {
  1638. "name": "广东卫视",
  1639. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225666/index.m3u8?hls",
  1640. "http://39.134.115.163:8080/PLTV/88888910/224/3221225701/index.m3u8",
  1641. "http://111.40.196.9/PLTV/88888888/224/3221225533/index.m3u8",
  1642. "http://39.135.140.226:6410/PLTV/88888888/224/3221225597/2/index.m3u8?fmt=ts2hls",
  1643. "http://39.135.138.59:18890/PLTV/88888910/224/3221225742/index.m3u8",
  1644. "http://39.134.118.77/live.gq.miguvideo.com:8080/ws_w/2018/gdws/gdws2000/2000/index.m3u8?&encrypt=1"
  1645. ]
  1646. }, {
  1647. "name": "广西卫视",
  1648. "urls": ["http://39.130.202.76:6610/gitv_live/G_GUANGXI-HD/G_GUANGXI-HD.m3u8",
  1649. "http://iptv.tvfix.org/hls/gxhd.m3u8",
  1650. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd-guangxiwssd-600/index.m3u8?&encrypt=1"
  1651. ]
  1652. }, {
  1653. "name": "安徽卫视",
  1654. "urls": ["http://39.135.46.246:6610/PLTV/77777777/224/3221225671/index.m3u8?hls",
  1655. "http://39.134.39.39/PLTV/88888888/224/3221226205/index.m3u8",
  1656. "http://39.134.39.39/PLTV/88888888/224/3221226205/index.m3u8",
  1657. "http://39.134.39.37/PLTV/88888888/224/3221226205/index.m3u8",
  1658. "http://39.134.39.37/PLTV/88888888/224/3221226205/index.m3u8",
  1659. "http://39.135.140.226:6410/PLTV/88888888/224/3221225691/2/index.m3u8?fmt=ts2hls",
  1660. "http://39.134.115.163:8080/PLTV/88888910/224/3221225691/index.m3u8",
  1661. "http://39.135.138.59:18890/PLTV/88888910/224/3221225737/index.m3u8",
  1662. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r2/2018/ocn/anhuiwshd/2000/index.m3u8?&encrypt=1"
  1663. ]
  1664. }, {
  1665. "name": "重庆卫视",
  1666. "urls": [
  1667. "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-chongqingstv/HD-8000k-1080P-chongqingstv",
  1668. "http://39.135.138.59:18890/PLTV/88888910/224/3221225734/index.m3u8",
  1669. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_x/2018/SD/chongqing/1000/index.m3u8?&encrypt=1"
  1670. ]
  1671. }, {
  1672. "name": "东南卫视",
  1673. "urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225657/index.m3u8",
  1674. "http://39.135.138.59:18890/PLTV/88888910/224/3221225657/index.m3u8",
  1675. "http://223.110.243.162/ott.js.chinamobile.com/PLTV/3/224/3221227553/index.m3u8$4M1080P",
  1676. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r1/2018/bestv/dnws/1000/index.m3u8?&encrypt=1"
  1677. ]
  1678. }, {
  1679. "name": "海峡卫视",
  1680. "urls": [
  1681. "rtsp://183.252.166.199/PLTV/88888888/224/3221226128/10000100000000060000000002434539_0.smil"
  1682. ]
  1683. }, {
  1684. "name": "贵州卫视",
  1685. "urls": ["http://39.130.202.76:6610/gitv_live/G_GUIZHOU-HD/G_GUIZHOU-HD.m3u8",
  1686. "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=41&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1",
  1687. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd-guizhouwssd-600/index.m3u8?&encrypt=1"
  1688. ]
  1689. }, {
  1690. "name": "河北卫视",
  1691. "urls": ["http://39.134.66.66/PLTV/88888888/224/3221225867/index.m3u8",
  1692. "http://39.134.66.66/PLTV/88888888/224/3221225867/index.m3u8",
  1693. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_v/2018/SD/hebei/1000/index.m3u8?&encrypt=1"
  1694. ]
  1695. }, {
  1696. "name": "河南卫视",
  1697. "urls": ["http://ott.js.chinamobile.com/TVOD/3/224/3221228221/index.m3u8",
  1698. "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=19&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1",
  1699. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd-henanwssd-600/index.m3u8?&encrypt=1"
  1700. ]
  1701. }, {
  1702. "name": "江西卫视",
  1703. "urls": ["http://111.40.196.9/PLTV/88888888/224/3221225591/index.m3u8",
  1704. "http://117.148.179.160/PLTV/88888888/224/3221231964/index.m3u8",
  1705. "http://39.134.118.77/live.gq.miguvideo.com:8080/migu/kailu/jxwshd/57/20190820/index.m3u8?&encrypt=1"
  1706. ]
  1707. }, {
  1708. "name": "黑龙江卫视",
  1709. "urls": ["http://111.40.196.9/PLTV/88888888/224/3221225539/index.m3u8",
  1710. "http://117.148.179.160/PLTV/88888888/224/3221231967/index.m3u8",
  1711. "http://111.40.196.9/PLTV/88888888/224/3221225541/index.m3u8",
  1712. "http://39.134.116.30:8080/PLTV/88888910/224/3221225690/index.m3u8",
  1713. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd-heilongjianghd-1200/index.m3u8?&encrypt=1"
  1714. ]
  1715. }, {
  1716. "name": "山东卫视",
  1717. "urls": ["http://111.40.196.9/PLTV/88888888/224/3221225546/index.m3u8",
  1718. "http://39.135.138.59:18890/PLTV/88888910/224/3221225697/index.m3u8",
  1719. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd-shandonghd-1200/index.m3u8?&encrypt=1"
  1720. ]
  1721. }, {
  1722. "name": "云南卫视",
  1723. "urls": [
  1724. "rtsp://183.252.166.199/PLTV/88888888/224/3221226108/10000100000000060000000002310150_0.smil",
  1725. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_x/2018/SD/yunnan/1000/index.m3u8?&encrypt=1"
  1726. ]
  1727. }, {
  1728. "name": "青海卫视",
  1729. "urls": ["http://live.geermurmt.com/qhws/sd/live.m3u8",
  1730. "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=206&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1",
  1731. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_w/2018/SD/qinghai/1000/index.m3u8?&encrypt=1"
  1732. ]
  1733. }, {
  1734. "name": "吉林卫视",
  1735. "urls": [
  1736. "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=25&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1",
  1737. "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=25&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1",
  1738. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_v/2018/SD/jilin/1000/index.m3u8?&encrypt=1"
  1739. ]
  1740. }, {
  1741. "name": "甘肃卫视",
  1742. "urls": [
  1743. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_v/2018/SD/gansu/1000/index.m3u8?&encrypt=1",
  1744. "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=142&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1"
  1745. ]
  1746. }, {
  1747. "name": "宁夏卫视",
  1748. "urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225726/index.m3u8",
  1749. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_x/2018/SD/ningxia/1000/index.m3u8?&encrypt=1"
  1750. ]
  1751. }, {
  1752. "name": "西藏卫视",
  1753. "urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225723/index.m3u8",
  1754. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_x/2018/SD/xizang/1000/index.m3u8?&encrypt=1"
  1755. ]
  1756. }, {
  1757. "name": "新疆卫视",
  1758. "urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225725/index.m3u8",
  1759. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd-xinjiangwssd-600/index.m3u8?&encrypt=1"
  1760. ]
  1761. }, {
  1762. "name": "星空卫视",
  1763. "urls": [
  1764. "http://116.199.5.51:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=234&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1"
  1765. ]
  1766. }, {
  1767. "name": "兵团卫视",
  1768. "urls": [
  1769. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_w/2018/SD/bttv/1000/index.m3u8?&encrypt=1"
  1770. ]
  1771. }, {
  1772. "name": "内蒙古卫视",
  1773. "urls": [
  1774. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_w/2018/SD/neimeng/1000/index.m3u8?&encrypt=1"
  1775. ]
  1776. }, {
  1777. "name": "南方卫视",
  1778. "urls": [
  1779. "http://39.134.118.77/live.gq.miguvideo.com:8080/wd_r3/2018/nfmedia/nfws/1000/index.m3u8?&encrypt=1"
  1780. ]
  1781. }, {
  1782. "name": "四川卫视",
  1783. "urls": [
  1784. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_v/2018/SD/sichuanTV/1000/index.m3u8?&encrypt=1"
  1785. ]
  1786. }, {
  1787. "name": "山西卫视",
  1788. "urls": [
  1789. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_w/2018/SD/shanxi/1000/index.m3u8?&encrypt=1"
  1790. ]
  1791. }, {
  1792. "name": "海南卫视",
  1793. "urls": [
  1794. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_x/SD/lvyou/450/index.m3u8?&encrypt=1"
  1795. ]
  1796. }, {
  1797. "name": "陕西卫视",
  1798. "urls": [
  1799. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_w/2018/SD/shan3xi/1000/index.m3u8?&encrypt=1"
  1800. ]
  1801. }, {
  1802. "name": "山东教育卫视",
  1803. "urls": [
  1804. "http://39.134.118.77/live.gq.miguvideo.com:8080/envivo_v/2018/SD/shandongedu/1000/index.m3u8?&encrypt=1"
  1805. ]
  1806. }]
  1807. }],
  1808. "parses": [{
  1809. "name": "默认解析建议必选此项",
  1810. "type": 2,
  1811. "url": "Parallel"
  1812. }, {
  1813. "name": "猫群专用1",
  1814. "type": 1,
  1815. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1095368&key=cdgjpsuDFLNRTUVY03&url="
  1816. }, {
  1817. "name": "猫群专用2",
  1818. "type": 0,
  1819. "url": "https://api.parwix.com:4433/analysis/json/?uid=556&my=acfhjoprtuvxKLMQ12&url="
  1820. }, {
  1821. "name": "猫群专用3",
  1822. "type": 1,
  1823. "url": "https://api.qq755758836.xyz/295m3u8.php?url="
  1824. }, {
  1825. "name": "猫群专用4",
  1826. "type": 0,
  1827. "url": "https://jx.parwix.com:4433/player/?url="
  1828. }, {
  1829. "name": "猫群专用5",
  1830. "type": 1,
  1831. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1285201&key=bcikqtwxyADEGKUX36&url="
  1832. }, {
  1833. "name": "猫群专用6",
  1834. "type": 1,
  1835. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1494542&key=ijmqvwxABEHILMOT48&url="
  1836. }, {
  1837. "name": "猫群专用7",
  1838. "type": 1,
  1839. "url": " https://json.pangujiexi.com:12345/json.php?url="
  1840. }, {
  1841. "name": "猫群专用8",
  1842. "type": 1,
  1843. "url": " http://jx.kuanjv.com/mp4/5.1?url="
  1844. }, {
  1845. "name": "猫群专用9",
  1846. "type": 1,
  1847. "url": " http://admin.vodjx.top/json.php?url="
  1848. }, {
  1849. "name": "猫群专用10",
  1850. "type": 1,
  1851. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1931000&key=gktuvyzABEORSYZ135&url="
  1852. }],
  1853. "flags": ["youku", "qq", "iqiyi", "qiyi", "letv", "sohu", "tudou", "pptv", "mgtv", "wasu", "renrenmi", "miaoparty",
  1854. "bilibili"
  1855. ],
  1856. "ijk": [{
  1857. "group": "软解码",
  1858. "options": [{
  1859. "category": 4,
  1860. "name": "opensles",
  1861. "value": "0"
  1862. }, {
  1863. "category": 4,
  1864. "name": "overlay-format",
  1865. "value": "842225234"
  1866. }, {
  1867. "category": 4,
  1868. "name": "framedrop",
  1869. "value": "1"
  1870. }, {
  1871. "category": 4,
  1872. "name": "soundtouch",
  1873. "value": "1"
  1874. }, {
  1875. "category": 4,
  1876. "name": "start-on-prepared",
  1877. "value": "1"
  1878. }, {
  1879. "category": 1,
  1880. "name": "http-detect-range-support",
  1881. "value": "0"
  1882. }, {
  1883. "category": 1,
  1884. "name": "fflags",
  1885. "value": "fastseek"
  1886. }, {
  1887. "category": 2,
  1888. "name": "skip_loop_filter",
  1889. "value": "48"
  1890. }, {
  1891. "category": 4,
  1892. "name": "reconnect",
  1893. "value": "1"
  1894. }, {
  1895. "category": 4,
  1896. "name": "enable-accurate-seek",
  1897. "value": "0"
  1898. }, {
  1899. "category": 4,
  1900. "name": "mediacodec",
  1901. "value": "0"
  1902. }, {
  1903. "category": 4,
  1904. "name": "mediacodec-auto-rotate",
  1905. "value": "0"
  1906. }, {
  1907. "category": 4,
  1908. "name": "mediacodec-handle-resolution-change",
  1909. "value": "0"
  1910. }, {
  1911. "category": 4,
  1912. "name": "mediacodec-hevc",
  1913. "value": "0"
  1914. }, {
  1915. "category": 1,
  1916. "name": "dns_cache_timeout",
  1917. "value": "600000000"
  1918. }]
  1919. }, {
  1920. "group": "硬解码",
  1921. "options": [{
  1922. "category": 4,
  1923. "name": "opensles",
  1924. "value": "0"
  1925. }, {
  1926. "category": 4,
  1927. "name": "overlay-format",
  1928. "value": "842225234"
  1929. }, {
  1930. "category": 4,
  1931. "name": "framedrop",
  1932. "value": "1"
  1933. }, {
  1934. "category": 4,
  1935. "name": "soundtouch",
  1936. "value": "1"
  1937. }, {
  1938. "category": 4,
  1939. "name": "start-on-prepared",
  1940. "value": "1"
  1941. }, {
  1942. "category": 1,
  1943. "name": "http-detect-range-support",
  1944. "value": "0"
  1945. }, {
  1946. "category": 1,
  1947. "name": "fflags",
  1948. "value": "fastseek"
  1949. }, {
  1950. "category": 2,
  1951. "name": "skip_loop_filter",
  1952. "value": "48"
  1953. }, {
  1954. "category": 4,
  1955. "name": "reconnect",
  1956. "value": "1"
  1957. }, {
  1958. "category": 4,
  1959. "name": "enable-accurate-seek",
  1960. "value": "0"
  1961. }, {
  1962. "category": 4,
  1963. "name": "mediacodec",
  1964. "value": "1"
  1965. }, {
  1966. "category": 4,
  1967. "name": "mediacodec-auto-rotate",
  1968. "value": "1"
  1969. }, {
  1970. "category": 4,
  1971. "name": "mediacodec-handle-resolution-change",
  1972. "value": "1"
  1973. }, {
  1974. "category": 4,
  1975. "name": "mediacodec-hevc",
  1976. "value": "1"
  1977. }, {
  1978. "category": 1,
  1979. "name": "dns_cache_timeout",
  1980. "value": "600000000"
  1981. }]
  1982. }],
  1983. "ads": ["mimg.0c1q0l.cn", "www.googletagmanager.com", "www.google-analytics.com", "mc.usihnbcq.cn", "mg.g1mm3d.cn",
  1984. "mscs.svaeuzh.cn", "cnzz.hhttm.top", "tp.vinuxhome.com", "cnzz.mmstat.com", "www.baihuillq.com",
  1985. "s23.cnzz.com", "z3.cnzz.com", "c.cnzz.com", "stj.v1vo.top", "z12.cnzz.com", "img.mosflower.cn",
  1986. "tips.gamevvip.com", "ehwe.yhdtns.com", "xdn.cqqc3.com", "www.jixunkyy.cn", "sp.chemacid.cn",
  1987. "hm.baidu.com", "s9.cnzz.com", "z6.cnzz.com", "um.cavuc.com", "mav.mavuz.com", "wofwk.aoidf3.com",
  1988. "z5.cnzz.com", "xc.hubeijieshikj.cn", "tj.tianwenhu.com", "xg.gars57.cn", "k.jinxiuzhilv.com",
  1989. "cdn.bootcss.com", "ppl.xunzhuo123.com", "xomk.jiangjunmh.top", "img.xunzhuo123.com", "z1.cnzz.com",
  1990. "s13.cnzz.com", "xg.huataisangao.cn", "z7.cnzz.com", "xg.huataisangao.cn", "z2.cnzz.com", "s96.cnzz.com",
  1991. "q11.cnzz.com", "thy.dacedsfa.cn", "xg.whsbpw.cn", "s19.cnzz.com", "z8.cnzz.com", "s4.cnzz.com",
  1992. "f5w.as12df.top", "ae01.alicdn.com", "www.92424.cn", "k.wudejia.com", "vivovip.mmszxc.top",
  1993. "qiu.xixiqiu.com", "cdnjs.hnfenxun.com", "cms.qdwght.com"
  1994. ],
  1995. "spider": "https://cncncloud.com/api/v3/file/source/3064086/S_custom_spider_20220207.jar?sign=-7jkyLys0xybWKJN1KVhHLadu_olD0Enklu06W6XviA%3D%3A0",
  1996. "wallpaper": "https://picsum.photos/1080/"
  1997. }