999.json 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124
  1. {
  2. "sites": [
  3. {
  4. "key": "默认主页",
  5. "name": "默认主页",
  6. "type": 0,
  7. "api": "https://www.hongniuzy1.com/inc/hnm3u8.php",
  8. "playUrl": "http://api.u1o.net/?url=",
  9. "categories": [
  10. "国产剧",
  11. "欧美剧",
  12. "港澳剧",
  13. "韩剧",
  14. "伦理片",
  15. "动作片",
  16. "喜剧片",
  17. "爱情片",
  18. "科幻片",
  19. "恐怖片",
  20. "剧情片",
  21. "战争片",
  22. "综艺",
  23. "动漫",
  24. "动漫电影",
  25. "台湾剧",
  26. "泰剧",
  27. "纪录片"
  28. ]
  29. },
  30. {
  31. "key": "csp_Buka",
  32. "name": "不卡(爬虫)",
  33. "type": 3,
  34. "api": "csp_Buka",
  35. "searchable": 1,
  36. "quickSearch": 1,
  37. "filterable": 1
  38. },
  39. {
  40. "key": "csp_Auete",
  41. "name": "奥特(爬虫)",
  42. "type": 3,
  43. "api": "csp_Auete",
  44. "searchable": 1,
  45. "quickSearch": 1,
  46. "filterable": 1
  47. },
  48. {
  49. "key": "csp_Aidi",
  50. "name": "爱迪(爬虫)",
  51. "type": 3,
  52. "api": "csp_Aidi",
  53. "searchable": 1,
  54. "quickSearch": 1,
  55. "filterable": 1
  56. },
  57. {
  58. "key": "csp_Enlienli",
  59. "name": "嗯哩(爬虫)",
  60. "type": 3,
  61. "api": "csp_Enlienli",
  62. "searchable": 1,
  63. "quickSearch": 1,
  64. "filterable": 1
  65. },
  66. {
  67. "key": "csp_Cokemv",
  68. "name": "可乐(爬虫)",
  69. "type": 3,
  70. "api": "csp_Cokemv",
  71. "searchable": 1,
  72. "quickSearch": 1,
  73. "filterable": 1
  74. },
  75. {
  76. "key": "csp_Ysgc",
  77. "name": "工厂(爬虫)",
  78. "type": 3,
  79. "api": "csp_Ysgc",
  80. "searchable": 1,
  81. "quickSearch": 1,
  82. "filterable": 1
  83. },
  84. {
  85. "key": "csp_N0ys",
  86. "name": "九零(爬虫)",
  87. "type": 3,
  88. "api": "csp_N0ys",
  89. "searchable": 1,
  90. "quickSearch": 1,
  91. "filterable": 1
  92. },
  93. {
  94. "key": "csp_Nekk",
  95. "name": "九亿(爬虫)",
  96. "type": 3,
  97. "api": "csp_Nekk",
  98. "searchable": 1,
  99. "quickSearch": 1,
  100. "filterable": 1
  101. },
  102. {
  103. "key": "csp_EPangApp",
  104. "name": "阿房(爬虫)",
  105. "type": 3,
  106. "api": "csp_EPangApp",
  107. "searchable": 1,
  108. "quickSearch": 1,
  109. "filterable": 1
  110. },
  111. {
  112. "key": "csp_Djx",
  113. "name": "瓜皮(爬虫) ",
  114. "type": 3,
  115. "api": "csp_Djx",
  116. "searchable": 1,
  117. "quickSearch": 1,
  118. "filterable": 1
  119. },
  120. {
  121. "key": "csp_Imaple",
  122. "name": "枫林(爬虫) ",
  123. "type": 3,
  124. "api": "csp_Imaple",
  125. "searchable": 1,
  126. "quickSearch": 1,
  127. "filterable": 1
  128. },
  129. {
  130. "key": "csp_Jumi",
  131. "name": "剧迷 (爬虫)",
  132. "type": 3,
  133. "api": "csp_Jumi",
  134. "searchable": 0,
  135. "quickSearch": 0,
  136. "filterable": 1
  137. },
  138. {
  139. "key": "csp_xpath_cjt",
  140. "name": "CJ影视(XPath)",
  141. "type": 3,
  142. "api": "csp_XPathMac",
  143. "searchable": 1,
  144. "quickSearch": 1,
  145. "filterable": 0,
  146. "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/cjtys.json"
  147. },
  148. {
  149. "key": "csp_xpath_555",
  150. "name": "555电影(XPath)",
  151. "type": 3,
  152. "api": "csp_XPath",
  153. "searchable": 1,
  154. "quickSearch": 1,
  155. "filterable": 0,
  156. "ext": "https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/555.json"
  157. },
  158. {
  159. "key": "csp_xpath_jpys",
  160. "name": "极品影视(XPath)",
  161. "type": 3,
  162. "api": "csp_XPath",
  163. "searchable": 1,
  164. "quickSearch": 0,
  165. "filterable": 0,
  166. "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/jpys.json"
  167. },
  168. {
  169. "key": "csp_xpath_jpyszl",
  170. "name": "极品直链(XPath)",
  171. "type": 3,
  172. "api": "csp_XPathMac",
  173. "searchable": 1,
  174. "quickSearch": 1,
  175. "filterable": 0,
  176. "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/jpys.json"
  177. },
  178. {
  179. "key": "csp_yysdali",
  180. "name": "YY影视(XPath)",
  181. "type": 3,
  182. "api": "csp_YydsAli",
  183. "searchable": 1,
  184. "quickSearch": 1,
  185. "filterable": 0,
  186. "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/yyds.json"
  187. },
  188. {
  189. "key": "csp_xpath_94sm",
  190. "name": "94神马(XPath)",
  191. "type": 3,
  192. "api": "csp_XPath",
  193. "searchable": 1,
  194. "quickSearch": 1,
  195. "filterable": 0,
  196. "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/94sm.json"
  197. },
  198. {
  199. "key": "csp_xpath_saohuotv",
  200. "name": "骚火电影(XPath)",
  201. "type": 3,
  202. "api": "csp_XPath",
  203. "searchable": 1,
  204. "quickSearch": 1,
  205. "filterable": 0,
  206. "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/saohuotv2.json"
  207. },
  208. {
  209. "key": "csp_xpath_tvci",
  210. "name": "大师兄(XPath)",
  211. "type": 3,
  212. "api": "csp_XPath",
  213. "searchable": 1,
  214. "quickSearch": 1,
  215. "filterable": 0,
  216. "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/tvci.json"
  217. },
  218. {
  219. "key": "csp_xpath_age",
  220. "name": "AGE动漫(XPath)",
  221. "type": 3,
  222. "api": "csp_XPath",
  223. "searchable": 1,
  224. "quickSearch": 1,
  225. "filterable": 0,
  226. "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/agefans.json"
  227. },
  228. {
  229. "key": "csp_xpath_dm84",
  230. "name": "动漫巴士(XPath)",
  231. "type": 3,
  232. "api": "csp_XPath",
  233. "searchable": 1,
  234. "quickSearch": 1,
  235. "filterable": 0,
  236. "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/dm84.json"
  237. },
  238. {
  239. "key": "csp_xpath_nfmov",
  240. "name": "萘菲(XPath)",
  241. "type": 3,
  242. "api": "csp_XPathNfMov",
  243. "searchable": 1,
  244. "quickSearch": 1,
  245. "filterable": 0,
  246. "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/nfmovie.json"
  247. },
  248. {
  249. "key": "csp_xpath_egg",
  250. "name": "蛋蛋影院(XPath)",
  251. "type": 3,
  252. "api": "csp_XPathEgg",
  253. "searchable": 1,
  254. "quickSearch": 0,
  255. "filterable": 0,
  256. "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/egg.json"
  257. },
  258. {
  259. "key": "VIP影视(感谢github作者 catvod&小黄瓜等)",
  260. "name": "VIP影视(感谢github作者catvod&小黄瓜等)",
  261. "type": 0,
  262. "api": "https://www.dianyingn.cc/api.php/provide/vod/at/xml/",
  263. "playUrl": ""
  264. },
  265. {
  266. "key": "4K影院",
  267. "name": "4K影院",
  268. "type": 0,
  269. "api": "http://www.dijiaxia.com/api.php/provide/vod/at/xml",
  270. "playUrl": ""
  271. },
  272. {
  273. "key": "牛资源",
  274. "name": "牛资源",
  275. "type": 0,
  276. "api": "https://www.hongniuzy1.com/inc/seacms.php",
  277. "playUrl": ""
  278. },
  279. {
  280. "key": "csp_ysdq_核桃影视V1",
  281. "name": "核桃影视V1(搜)",
  282. "type": 3,
  283. "api": "csp_Ysdq",
  284. "searchable": 1,
  285. "quickSearch": 0,
  286. "ext": "核桃影视V1"
  287. },
  288. {
  289. "key": "csp_ysdq_海绵影视",
  290. "name": "海绵影视(搜)",
  291. "type": 3,
  292. "api": "csp_Ysdq",
  293. "searchable": 1,
  294. "quickSearch": 0,
  295. "ext": "海绵影视"
  296. },
  297. {
  298. "key": "csp_ysdq_白菜追剧",
  299. "name": "白菜追剧(搜)",
  300. "type": 3,
  301. "api": "csp_Ysdq",
  302. "searchable": 1,
  303. "quickSearch": 0,
  304. "ext": "白菜追剧"
  305. },
  306. {
  307. "key": "csp_ysdq_飞捷影视",
  308. "name": "飞捷影视(搜)",
  309. "type": 3,
  310. "api": "csp_Ysdq",
  311. "searchable": 1,
  312. "quickSearch": 0,
  313. "ext": "飞捷影视"
  314. },
  315. {
  316. "key": "csp_ysdq_555电影",
  317. "name": "555电影(搜)",
  318. "type": 3,
  319. "api": "csp_Ysdq",
  320. "searchable": 1,
  321. "quickSearch": 0,
  322. "ext": "555电影"
  323. },
  324. {
  325. "key": "csp_ysdq_久九影视",
  326. "name": "久九影视(搜)",
  327. "type": 3,
  328. "api": "csp_Ysdq",
  329. "searchable": 1,
  330. "quickSearch": 0,
  331. "ext": "久九影视"
  332. },
  333. {
  334. "key": "csp_ysdq_颖家影院",
  335. "name": "颖家影院(搜)",
  336. "type": 3,
  337. "api": "csp_Ysdq",
  338. "searchable": 1,
  339. "quickSearch": 0,
  340. "ext": "颖家影院"
  341. },
  342. {
  343. "key": "csp_ysdq_80k影视",
  344. "name": "80k影视(搜)",
  345. "type": 3,
  346. "api": "csp_Ysdq",
  347. "searchable": 1,
  348. "quickSearch": 0,
  349. "ext": "80k影视"
  350. },
  351. {
  352. "key": "csp_ysdq_公主影视",
  353. "name": "公主影视(搜)",
  354. "type": 3,
  355. "api": "csp_Ysdq",
  356. "searchable": 1,
  357. "quickSearch": 0,
  358. "ext": "公主影视"
  359. },
  360. {
  361. "key": "csp_ysdq_一只鱼影视",
  362. "name": "一只鱼影视(搜)",
  363. "type": 3,
  364. "api": "csp_Ysdq",
  365. "searchable": 1,
  366. "quickSearch": 0,
  367. "ext": "一只鱼影视"
  368. },
  369. {
  370. "key": "csp_ysdq_九合视频",
  371. "name": "九合视频(搜)",
  372. "type": 3,
  373. "api": "csp_Ysdq",
  374. "searchable": 1,
  375. "quickSearch": 0,
  376. "ext": "九合视频"
  377. },
  378. {
  379. "key": "csp_ysdq_913E影视",
  380. "name": "913E影视(搜)",
  381. "type": 3,
  382. "api": "csp_Ysdq",
  383. "searchable": 1,
  384. "quickSearch": 0,
  385. "ext": "913E影视"
  386. },
  387. {
  388. "key": "csp_ysdq_远方影视",
  389. "name": "远方影视(搜)",
  390. "type": 3,
  391. "api": "csp_Ysdq",
  392. "searchable": 1,
  393. "quickSearch": 0,
  394. "ext": "远方影视"
  395. },
  396. {
  397. "key": "csp_ysdq_琳琅影视",
  398. "name": "琳琅影视(搜)",
  399. "type": 3,
  400. "api": "csp_Ysdq",
  401. "searchable": 1,
  402. "quickSearch": 0,
  403. "ext": "琳琅影视"
  404. },
  405. {
  406. "key": "csp_ysdq_小易影视",
  407. "name": "小易影视(搜)",
  408. "type": 3,
  409. "api": "csp_Ysdq",
  410. "searchable": 1,
  411. "quickSearch": 0,
  412. "ext": "小易影视"
  413. },
  414. {
  415. "key": "csp_ysdq_迪迪影院",
  416. "name": "迪迪影院(搜)",
  417. "type": 3,
  418. "api": "csp_Ysdq",
  419. "searchable": 1,
  420. "quickSearch": 0,
  421. "ext": "迪迪影院"
  422. },
  423. {
  424. "key": "csp_ysdq_先锋影视",
  425. "name": "先锋影视(搜)",
  426. "type": 3,
  427. "api": "csp_Ysdq",
  428. "searchable": 1,
  429. "quickSearch": 0,
  430. "ext": "先锋影视"
  431. },
  432. {
  433. "key": "csp_ysdq_80影视",
  434. "name": "80影视(搜)",
  435. "type": 3,
  436. "api": "csp_Ysdq",
  437. "searchable": 1,
  438. "quickSearch": 0,
  439. "ext": "80影视"
  440. },
  441. {
  442. "key": "csp_ysdq_迪迪影院",
  443. "name": "迪迪影院(搜)",
  444. "type": 3,
  445. "api": "csp_Ysdq",
  446. "searchable": 1,
  447. "quickSearch": 0,
  448. "ext": "迪迪影院"
  449. },
  450. {
  451. "key": "神马影院",
  452. "name": "神马影院",
  453. "type": 0,
  454. "api": "http://www.zitv.cc/api.php/provide/vod/at/xml/",
  455. "playUrl": ""
  456. },
  457. {
  458. "key": "KK看剧",
  459. "name": "KK看剧",
  460. "type": 0,
  461. "api": "http://www.kkkanju.com/api.php/provide/vod/at/xml",
  462. "playUrl": "http://jx.hao-zsj.cn/vip/?url="
  463. },
  464. {
  465. "key": "番茄资源",
  466. "name": "番茄资源",
  467. "type": 0,
  468. "api": "http://api.fqzy.cc/api.php/provide/vod/at/xml/?ac=list",
  469. "playUrl": "https://dp.8b5q.cn/dplayer/?url="
  470. },
  471. {
  472. "key": "蘑菇资源",
  473. "name": "蘑菇资源",
  474. "type": 0,
  475. "api": "http://www.moguzyw.com:520/moguzy.php/provide/vod/at/xml",
  476. "playUrl": "http://jx.zhiaiyy.top/?url="
  477. },
  478. {
  479. "key": "多多电影",
  480. "name": "多多电影",
  481. "type": 0,
  482. "api": "http://w7tv.com/api.php/provide/vod/at/xml",
  483. "playUrl": ""
  484. },
  485. {
  486. "key": "无尽资源",
  487. "name": "无尽资源",
  488. "type": 0,
  489. "api": "https://wujinzy.com/api.php/provide/vod/at/xml",
  490. "playUrl": "https://jx.xhswglobal.com/dplayer/?url="
  491. },
  492. {
  493. "key": "TVB云",
  494. "name": "TVB云",
  495. "type": 0,
  496. "api": "http://www.tvyb02.com/api.php/provide/vod/at/xml",
  497. "playUrl": "http://jx.zhiaiyy.top/?url="
  498. },
  499. {
  500. "key": "优剧资源",
  501. "name": "优剧资源",
  502. "type": 0,
  503. "api": "https://zy.ujuba.com/api.php/provide/vod/at/xml",
  504. "playUrl": "https://zy.ujuba.com/play.php?url="
  505. },
  506. {
  507. "key": "融兴资源",
  508. "name": "融兴资源",
  509. "type": 0,
  510. "api": "https://www.rongxingvr.com/api.php/provide/vod/at/xml",
  511. "playUrl": ""
  512. },
  513. {
  514. "key": "新影资源",
  515. "name": "新影资源",
  516. "type": 0,
  517. "api": "https://api.xinyingcaiji.com/api.php/provide/vod/at/xml/",
  518. "playUrl": "https://jx.xhswglobal.com/dplayer/?url="
  519. },
  520. {
  521. "key": "想看资源",
  522. "name": "想看资源",
  523. "type": 0,
  524. "api": "https://m3u8.xiangkanapi.com/provide/vod/cms/sea/at/xml",
  525. "playUrl": "https://lyw28.com/m3u8/?url="
  526. },
  527. {
  528. "key": "虾米资源",
  529. "name": "虾米资源",
  530. "type": 0,
  531. "api": "https://zy.xmflv.vip/api.php/provide/vod/at/xml",
  532. "playUrl": "https://jx.xmflv.vip/?url="
  533. },
  534. {
  535. "key": "2A资源",
  536. "name": "2A资源",
  537. "type": 0,
  538. "api": "http://zy.zcocc.com/api.php/provide/vod/at/xml/",
  539. "playUrl": "http://api.u1o.net/?url="
  540. },
  541. {
  542. "key": "天堂资源",
  543. "name": "天堂资源",
  544. "type": 0,
  545. "api": "https://www.meijuxq.com/inc/api.php",
  546. "playUrl": "http://jjxx.me/?url="
  547. },
  548. {
  549. "key": "美剧星球",
  550. "name": "美剧星球",
  551. "type": 0,
  552. "api": "https://www.meijuxq.com/inc/api.php",
  553. "playUrl": ""
  554. },
  555. {
  556. "key": "九九美剧",
  557. "name": "九九美剧",
  558. "type": 0,
  559. "api": "https://www.999meiju.com/api.php/provide/vod/at/xml",
  560. "playUrl": ""
  561. },
  562. {
  563. "key": "火星2048",
  564. "name": "火星2048",
  565. "type": 0,
  566. "api": "https://www.hx2048.com/api.php/provide/vod/at/xml",
  567. "playUrl": "http://jx.zhiaiyy.top/?url="
  568. },
  569. {
  570. "key": "多米影视",
  571. "name": "多米影视",
  572. "type": 0,
  573. "api": "http://hdmys1.com/api.php/provide/vod/at/xml",
  574. "playUrl": ""
  575. },
  576. {
  577. "key": "乐多资源",
  578. "name": "乐多资源",
  579. "type": 0,
  580. "api": "http://cj.leduocaiji.com/inc/seacmsapi.php",
  581. "playUrl": "https://ldy.jx.cn/wp-api/ifr.php?vid="
  582. },
  583. {
  584. "key": "MBO影视",
  585. "name": "MBO影视",
  586. "type": 0,
  587. "api": "https://www.mbomovie.com/api.php/provide/vod/at/xml"
  588. },
  589. {
  590. "key": "人人影视",
  591. "name": "人人影视",
  592. "type": 0,
  593. "api": "https://kuu.renrenmi.cc/api.php/provide/vod/at/xml",
  594. "playUrl": "https://jx.renrenmi.cc/?url="
  595. },
  596. {
  597. "key": "热映资源",
  598. "name": "热映资源",
  599. "type": 0,
  600. "api": "http://hl.reying.vip/api.php/provide/vod/at/xml",
  601. "playUrl": ""
  602. },
  603. {
  604. "key": "剧好看",
  605. "name": "剧好看",
  606. "type": 0,
  607. "api": "https://www.juhaokan.cc/api.php/provide/vod/at/xml",
  608. "playUrl": ""
  609. },
  610. {
  611. "key": "游艺资源",
  612. "name": "游艺资源",
  613. "type": 0,
  614. "api": "http://360.hexh.ink/api.php/provide/vod/at/xml",
  615. "playUrl": ""
  616. },
  617. {
  618. "key": "淘片资源",
  619. "name": "淘片资源",
  620. "type": 0,
  621. "api": "https://taopianzy.com/home/cjapi/as/vod/xml",
  622. "playUrl": ""
  623. },
  624. {
  625. "key": "北斗星",
  626. "name": "北斗星",
  627. "type": 0,
  628. "api": "https://v8.bdxzyapi.com/inc/api.php",
  629. "playUrl": ""
  630. },
  631. {
  632. "key": "小蜻蜓",
  633. "name": "小蜻蜓",
  634. "type": 0,
  635. "api": "http://3ketv.com/api.php/provide/vod/at/xml",
  636. "playUrl": ""
  637. },
  638. {
  639. "key": "欧宝资源",
  640. "name": "欧宝资源",
  641. "type": 0,
  642. "api": "http://obaowl.cn/api.php/provide/vod/at/xml"
  643. },
  644. {
  645. "key": "爱特影视",
  646. "name": "爱特影视",
  647. "type": 0,
  648. "api": "http://tv.aitesucai.xyz/api.php/provide/vod/at/xml",
  649. "playUrl": ""
  650. },
  651. {
  652. "key": "飞鱼影视",
  653. "name": "飞鱼影视",
  654. "type": 0,
  655. "api": "https://app.feiyu5.com/api.php/provide/vod/at/xml/",
  656. "playUrl": ""
  657. }
  658. ],
  659. "parses": [
  660. {
  661. "name": "Json并发",
  662. "type": 2,
  663. "url": "Parallel"
  664. },
  665. {
  666. "name": "Json轮询",
  667. "type": 2,
  668. "url": "Sequence"
  669. }
  670. ],
  671. "address": [
  672. {
  673. "name": "爱奇艺",
  674. "url": "https://m.iqiyi.com/"
  675. },
  676. {
  677. "name": "腾讯视频",
  678. "url": "https://m.v.qq.com/"
  679. },
  680. {
  681. "name": "芒果TV",
  682. "url": "https://m.mgtv.com/"
  683. },
  684. {
  685. "name": "优酷视频",
  686. "url": "https://www.youku.com/"
  687. },
  688. {
  689. "name": "搜狐视频",
  690. "url": "https://m.tv.sohu.com/"
  691. },
  692. {
  693. "name": "B站视频",
  694. "url": "https://m.bilibili.com/"
  695. },
  696. {
  697. "name": "乐视视频",
  698. "url": "https://m.le.com/"
  699. },
  700. {
  701. "name": "1905视频",
  702. "url": "https://m.1905.com/"
  703. },
  704. {
  705. "name": "PPTV视频",
  706. "url": "https://m.pptv.com/"
  707. }
  708. ],
  709. "lives": [
  710. {
  711. "group": "pglblb",
  712. "channels": [
  713. {
  714. "name": "凤凰中文",
  715. "urls": [
  716. "http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221225942/index.m3u8",
  717. "http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8",
  718. "http://183.207.249.35/PLTV/3/224/3221226975/index.m3u8"
  719. ]
  720. },
  721. {
  722. "name": "凤凰资讯",
  723. "urls": [
  724. "http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8",
  725. "http://117.169.124.37:6610/ysten-businessmobile/live/fhzixun/1.m3u8"
  726. ]
  727. },
  728. {
  729. "name": "凤凰香港",
  730. "urls": [
  731. "http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8"
  732. ]
  733. },
  734. {
  735. "name": "凤凰测试",
  736. "urls": [
  737. "http://124.232.231.246:6610/000000001001/201500000231/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
  738. "http://124.232.231.246:6610/000000001001/201500000230/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"
  739. ]
  740. },
  741. {
  742. "name": "香港翡翠",
  743. "urls": [
  744. "http://v3948069e.live.126.net/live/rnscsplb7452518881.flv"
  745. ]
  746. },
  747. {
  748. "name": "香港无线",
  749. "urls": [
  750. "http://v3948069e.live.126.net/live/hod900.flv"
  751. ]
  752. },
  753. {
  754. "name": "4K央视",
  755. "urls": [
  756. "http://liveop.cctv.cn/hls/4KHD/playlist.m3u8"
  757. ]
  758. },
  759. {
  760. "name": "4K修复",
  761. "urls": [
  762. "http://ott.js.chinamobile.com/PLTV/3/224/3221228141/index.m3u8"
  763. ]
  764. },
  765. {
  766. "name": "4K纯享",
  767. "urls": [
  768. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225726/index.m3u8",
  769. "http://39.134.115.163:8080/PLTV/88888910/224/3221225786/index.m3u8"
  770. ]
  771. },
  772. {
  773. "name": "4K欢笑",
  774. "urls": [
  775. "http://39.134.18.66/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226582/index.m3u8",
  776. "http://39.134.18.66/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226582/index.m3u8"
  777. ]
  778. },
  779. {
  780. "name": "4K北京",
  781. "urls": [
  782. "http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226550/1.m3u8",
  783. "http://39.134.135.80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226550/1.m3u8",
  784. "http://39.134.135.81/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226550/1.m3u8"
  785. ]
  786. },
  787. {
  788. "name": "4K江苏",
  789. "urls": [
  790. "http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228113/index.m3u8"
  791. ]
  792. },
  793. {
  794. "name": "4K花园",
  795. "urls": [
  796. "http://223.110.243.163/ott.js.chinamobile.com/PLTV/3/224/3221227749/index.m3u8"
  797. ]
  798. },
  799. {
  800. "name": "CCTV-1",
  801. "urls": [
  802. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225674/index.m3u8",
  803. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225769/index.m3u8",
  804. "http://39.134.134.87/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226226/1.m3u8",
  805. "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226016/1.m3u8",
  806. "http://117.148.179.160/PLTV/88888888/224/3221231468/index.m3u8",
  807. "rtp://239.253.156.96:8550"
  808. ]
  809. },
  810. {
  811. "name": "CCTV-2",
  812. "urls": [
  813. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225676/index.m3u8",
  814. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225657/index.m3u8",
  815. "http://39.135.238.91/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226371/1.m3u8",
  816. "http://202.204.118.254/hls/ch3.m3u8",
  817. "http://39.134.66.66/PLTV/88888888/224/3221225599/index.m3u8"
  818. ]
  819. },
  820. {
  821. "name": "CCTV-3",
  822. "urls": [
  823. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225677/index.m3u8",
  824. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225713/index.m3u8",
  825. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225677/index.m3u8",
  826. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226008/1/index.m3u8?fmt=ts2hls",
  827. "http://117.148.179.160/PLTV/88888888/224/3221231682/index.m3u8"
  828. ]
  829. },
  830. {
  831. "name": "CCTV-4",
  832. "urls": [
  833. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225753/index.m3u8",
  834. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225761/index.m3u8",
  835. "http://39.135.238.48/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226335/1.m3u8",
  836. "http://39.134.67.55:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226007/1.m3u8"
  837. ]
  838. },
  839. {
  840. "name": "CCTV-5",
  841. "urls": [
  842. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225801/index.m3u8",
  843. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225680/index.m3u8",
  844. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225712/index.m3u8",
  845. "http://39.134.39.37/PLTV/88888888/224/3221226146/index.m3u8"
  846. ]
  847. },
  848. {
  849. "name": "CCTV-5+",
  850. "urls": [
  851. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225621/index.m3u8",
  852. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225621/index.m3u8",
  853. "http://39.134.135.82/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226458/1.m3u8",
  854. "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226349/1.m3u8",
  855. "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226458/1.m3u8"
  856. ]
  857. },
  858. {
  859. "name": "五星体育",
  860. "urls": [
  861. "http://112.25.48.11/live/program/live/ssty/4000000/mnf.m3u8",
  862. "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/ssty/2300000/mnf.m3u8",
  863. "http://112.132.209.46/liveplay-kk.rtxapp.com/live/program/live/ssty/4000000/mnf.m3u8",
  864. "http://111.40.196.9/PLTV/88888888/224/3221225503/index.m3u8",
  865. "http://39.134.24.24/PLTV/88888888/224/3221225718/index.m3u8"
  866. ]
  867. },
  868. {
  869. "name": "劲爆体育",
  870. "urls": [
  871. "http://112.132.209.46/liveplay-kk.rtxapp.com/live/program/live/jbtyhd/4000000/mnf.m3u8",
  872. "http://shbu.live.bestvcdn.com.cn:8080/live/program/live/jbtyhd/2300000/mnf.m3u8",
  873. "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/jbtyhd/2300000/mnf.m3u8"
  874. ]
  875. },
  876. {
  877. "name": "新视觉HD",
  878. "urls": [
  879. "http://112.132.209.46/liveplay-kk.rtxapp.com/live/program/live/xsjhd/4000000/mnf.m3u8",
  880. "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/xsjhd/2300000/mnf.m3u8",
  881. "http://shbu.live.bestvcdn.com.cn:8080/live/program/live/xsjhd/2300000/mnf.m3u8"
  882. ]
  883. },
  884. {
  885. "name": "魅力足球",
  886. "urls": [
  887. "http://112.132.209.46/liveplay-kk.rtxapp.com/live/program/live/mlyyhd/4000000/mnf.m3u8",
  888. "http://cg01.hrtn.net:9090/live/mlyyhd_4000.m3u8"
  889. ]
  890. },
  891. {
  892. "name": "超级体育",
  893. "urls": [
  894. "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226232/1.m3u8",
  895. "http://39.134.24.24/PLTV/88888888/224/3221225718/index.m3u8"
  896. ]
  897. },
  898. {
  899. "name": "精品体育",
  900. "urls": [
  901. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225674/1.m3u8",
  902. "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225674/1.m3u8"
  903. ]
  904. },
  905. {
  906. "name": "快乐垂钓",
  907. "urls": [
  908. "http://womlive.cloud.wo.cn/tvlive/100070/otpzod_otpzod,100070_hls_pull_2000K_live.m3u8",
  909. "http://129.226.107.225/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226025/1.m3u8",
  910. "http://124.232.231.246:6610/000000001001/201500000048/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
  911. "http://cg01.hrtn.net:9090/live/klcd_1500.m3u8",
  912. "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226549/1.m3u8"
  913. ]
  914. },
  915. {
  916. "name": "CCTV-6",
  917. "urls": [
  918. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225683/index.m3u8",
  919. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225715/index.m3u8",
  920. "http://womlive.cloud.wo.cn/tvlive/100002/otpzod_otpzod,100002_hls_pull_2000K_live.m3u8",
  921. "http://39.134.115.163:8080/PLTV/88888910/224/3221225632/index.m3u8",
  922. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226011/1/index.m3u8?fmt=ts2hls",
  923. "http://202.204.118.254/hls/ch11.m3u8",
  924. "http://cg01.hrtn.net:9090/live/cctv6hd_4000.m3u8"
  925. ]
  926. },
  927. {
  928. "name": "CHC家庭影院",
  929. "urls": [
  930. "http://117.148.179.160/PLTV/88888888/224/3221231799/index.m3u8",
  931. "http://39.134.18.69/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226462/1.m3u8",
  932. "http://39.134.18.82/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226462/index.m3u8",
  933. "http://39.134.19.228:6610/yinhe/2/ch00000090990000002085/index.m3u8?virtualDomain=yinhe.live_hls.zte.com"
  934. ]
  935. },
  936. {
  937. "name": "CHC动作电影",
  938. "urls": [
  939. "http://womlive.cloud.wo.cn/tvlive/100073/otpzod_otpzod,100073_hls_pull_2000K_live.m3u8",
  940. "http://39.134.18.69/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/1.m3u8",
  941. "http://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/1.m3u8",
  942. "http://39.134.19.228:6610/yinhe/2/ch00000090990000002055/index.m3u8?virtualDomain=yinhe.live_hls.zte.com"
  943. ]
  944. },
  945. {
  946. "name": "高清电影频道",
  947. "urls": [
  948. "http://ott.js.chinamobile.com/PLTV/3/224/3221227579/index.m3u8"
  949. ]
  950. },
  951. {
  952. "name": "北京电影频道",
  953. "urls": [
  954. "http://39.134.135.80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226553/1.m3u8",
  955. "http://117.148.179.160/PLTV/88888888/224/3221231640/index.m3u8",
  956. "http://117.148.179.176/PLTV/88888888/224/3221231565/index.m3u8"
  957. ]
  958. },
  959. {
  960. "name": "东方影视频道",
  961. "urls": [
  962. "http://117.148.179.160/PLTV/88888888/224/3221231639/index.m3u8",
  963. "http://111.40.196.9/PLTV/88888888/224/3221225615/index.m3u8",
  964. "http://39.134.24.24/PLTV/88888888/224/3221225708/index.m3u8"
  965. ]
  966. },
  967. {
  968. "name": "黑莓电影频道",
  969. "urls": [
  970. "http://111.40.196.9/PLTV/88888888/224/3221225610/index.m3u8",
  971. "http://117.148.179.160/PLTV/88888888/224/3221231621/index.m3u8",
  972. "http://39.134.24.24/PLTV/88888888/224/3221225708/index.m3u8"
  973. ]
  974. },
  975. {
  976. "name": "动作电影频道",
  977. "urls": [
  978. "http://111.40.196.9/PLTV/88888888/224/3221225620/index.m3u8",
  979. "http://117.148.179.160/PLTV/88888888/224/3221231565/index.m3u8",
  980. "http://117.148.179.160/PLTV/88888888/224/3221231556/index.m3u8",
  981. "http://111.40.196.9/PLTV/88888888/224/3221225622/index.m3u8"
  982. ]
  983. },
  984. {
  985. "name": "超级电影频道",
  986. "urls": [
  987. "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226369/1.m3u8",
  988. "http://117.148.179.160/PLTV/88888888/224/3221231568/index.m3u8",
  989. "http://117.148.179.160/PLTV/88888888/224/3221231564/index.m3u8",
  990. "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226233/1.m3u8"
  991. ]
  992. },
  993. {
  994. "name": "CCTV-7",
  995. "urls": [
  996. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225627/index.m3u8",
  997. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225700/index.m3u8",
  998. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225627/index.m3u8",
  999. "http://39.135.138.60:18890/PLTV/88888910/224/3221225624/index.m3u8",
  1000. "rtp://239.69.1.103:10256"
  1001. ]
  1002. },
  1003. {
  1004. "name": "CCTV-8",
  1005. "urls": [
  1006. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225630/index.m3u8",
  1007. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225716/index.m3u8",
  1008. "http://39.135.137.24:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226008/1.m3u8",
  1009. "http://39.134.115.163:8080/PLTV/88888910/224/3221225635/index.m3u8",
  1010. "http://39.135.138.59:18890/PLTV/88888910/224/3221225631/index.m3u8",
  1011. "http://39.134.24.24/PLTV/88888888/224/3221225666/index.m3u8"
  1012. ]
  1013. },
  1014. {
  1015. "name": "CCTV-9",
  1016. "urls": [
  1017. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225633/index.m3u8",
  1018. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225663/index.m3u8",
  1019. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225633/index.m3u8",
  1020. "http://39.134.134.86/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226236/1.m3u8",
  1021. "http://111.40.196.9/PLTV/88888888/224/3221225502/index.m3u8"
  1022. ]
  1023. },
  1024. {
  1025. "name": "CCTV-10",
  1026. "urls": [
  1027. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225624/index.m3u8",
  1028. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225704/index.m3u8",
  1029. "http://39.135.138.59:18890/PLTV/88888910/224/3221225627/index.m3u8",
  1030. "http://39.135.137.35:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225730/1.m3u8"
  1031. ]
  1032. },
  1033. {
  1034. "name": "CCTV-11",
  1035. "urls": [
  1036. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225750/index.m3u8",
  1037. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225739/index.m3u8",
  1038. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225750/index.m3u8",
  1039. "http://39.135.137.38:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225597/1.m3u8"
  1040. ]
  1041. },
  1042. {
  1043. "name": "CCTV-12",
  1044. "urls": [
  1045. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225670/index.m3u8",
  1046. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225645/index.m3u8",
  1047. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225670/index.m3u8",
  1048. "http://111.40.196.9/PLTV/88888888/224/3221225498/index.m3u8"
  1049. ]
  1050. },
  1051. {
  1052. "name": "CCTV-13",
  1053. "urls": [
  1054. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225787/index.m3u8",
  1055. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225742/index.m3u8",
  1056. "http://39.135.47.87/PLTV/77777777/224/3221226819/index.m3u8",
  1057. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225787/index.m3u8",
  1058. "http://39.134.24.24/PLTV/88888888/224/3221225650/index.m3u8"
  1059. ]
  1060. },
  1061. {
  1062. "name": "CCTV-14",
  1063. "urls": [
  1064. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225673/index.m3u8",
  1065. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225648/index.m3u8",
  1066. "http://39.135.138.60:18890/PLTV/88888910/224/3221225639/index.m3u8",
  1067. "http://39.135.138.59:18890/PLTV/88888910/224/3221225640/index.m3u8",
  1068. "http://111.40.196.9/PLTV/88888888/224/3221225573/index.m3u8"
  1069. ]
  1070. },
  1071. {
  1072. "name": "CCTV-15",
  1073. "urls": [
  1074. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225830/index.m3u8",
  1075. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225693/index.m3u8",
  1076. "http://39.135.47.87/PLTV/77777777/224/3221226818/index.m3u8",
  1077. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225830/index.m3u8",
  1078. "http://110.72.57.106:808/hls/116/index.m3u8"
  1079. ]
  1080. },
  1081. {
  1082. "name": "CCTV-16",
  1083. "urls": [
  1084. "http://ott.js.chinamobile.com/PLTV/3/224/3221228144/index.m3u8",
  1085. "http://39.135.129.162/hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226880/index.m3u8",
  1086. "http://59.49.72.48/live.aishang.ctlcdn.com/00000110240388_1/encoder/0/playlist.m3u8?CONTENTID=00000110240388_1",
  1087. "https://live.olympicchannelchina.cn:443/aoyun/cctv16_1ud.m3u8"
  1088. ]
  1089. },
  1090. {
  1091. "name": "CCTV-17",
  1092. "urls": [
  1093. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225833/index.m3u8",
  1094. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225766/index.m3u8",
  1095. "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225833/index.m3u8",
  1096. "http://39.134.24.24/PLTV/88888888/224/3221225859/index.m3u8"
  1097. ]
  1098. },
  1099. {
  1100. "name": "CCTV地理",
  1101. "urls": [
  1102. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226071/1/index.m3u8?fmt=ts2hls$8M1080P",
  1103. "http://39.136.18.105/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226071/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&hms_devid=4691,4699&online=1632725720&vqe=3",
  1104. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226071/1/index.m3u8?fmt=ts2hls"
  1105. ]
  1106. },
  1107. {
  1108. "name": "CCTV兵器",
  1109. "urls": [
  1110. "http://39.136.18.98/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226111/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&ocs=2_39.136.18.75_80&hms_devid=4691,4703&online=1632725806&vqe=3",
  1111. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226111/1/index.m3u8?fmt=ts2hls"
  1112. ]
  1113. },
  1114. {
  1115. "name": "CCTV台球",
  1116. "urls": [
  1117. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226117/1/index.m3u8?fmt=ts2hls$8M1080P",
  1118. "http://39.136.18.91/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226117/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&hms_devid=4691,4705&online=1632725860&vqe=3",
  1119. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226117/1/index.m3u8?fmt=ts2hls"
  1120. ]
  1121. },
  1122. {
  1123. "name": "CCTV文化",
  1124. "urls": [
  1125. "http://39.136.18.87/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226100/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&hms_devid=4691,4698&online=1632725946&vqe=3",
  1126. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226100/1/index.m3u8?fmt=ts2hls"
  1127. ]
  1128. },
  1129. {
  1130. "name": "CCTV时尚",
  1131. "urls": [
  1132. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226104/1/index.m3u8?fmt=ts2hls$8M1080P",
  1133. "http://39.136.18.67/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226104/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&ocs=2_39.136.18.93_80&hms_devid=4691,4694&online=1632725998&vqe=3",
  1134. "http://cg01.hrtn.net:9090/live/jspd_1500.m3u8",
  1135. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226104/1/index.m3u8?fmt=ts2hls"
  1136. ]
  1137. },
  1138. {
  1139. "name": "CCTV怀旧",
  1140. "urls": [
  1141. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225765/1/index.m3u8?fmt=ts2hls$2M1080P",
  1142. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226097/1/index.m3u8?fmt=ts2hls$8M1080P",
  1143. "http://39.136.18.103/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226097/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&hms_devid=4691,4701&online=1632726052&vqe=3",
  1144. "http://cg01.hrtn.net:9090/live/hjjc_1500.m3u8",
  1145. "http://117.148.179.158/PLTV/88888888/224/3221231544/index.m3u8",
  1146. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226097/1/index.m3u8?fmt=ts2hls"
  1147. ]
  1148. },
  1149. {
  1150. "name": "CCTV剧场",
  1151. "urls": [
  1152. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226124/1/index.m3u8?fmt=ts2hls",
  1153. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226124/1/index.m3u8?fmt=ts2hls",
  1154. "http://117.148.179.172/PLTV/88888888/224/3221231540/index.m3u8"
  1155. ]
  1156. },
  1157. {
  1158. "name": "CCTV风云",
  1159. "urls": [
  1160. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225700/1/index.m3u8?fmt=ts2hls$2M1080P",
  1161. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226107/1/index.m3u8?fmt=ts2hls$8M1080P",
  1162. "http://39.136.18.94/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226107/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&hms_devid=4691,4708&online=1632726245&vqe=3",
  1163. "http://cg01.hrtn.net:9090/live/fyjc_1500.m3u8",
  1164. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226107/1/index.m3u8?fmt=ts2hls"
  1165. ]
  1166. },
  1167. {
  1168. "name": "CCTV足球",
  1169. "urls": [
  1170. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225734/1/index.m3u8?fmt=ts2hls$2M1080P",
  1171. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226153/1/index.m3u8?fmt=ts2hls$8M1080P",
  1172. "http://39.136.18.80/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226153/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&ocs=2_39.136.18.69_80&hms_devid=4691,4693&online=1632726315&vqe=3",
  1173. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226153/1/index.m3u8?fmt=ts2hls",
  1174. "http://cg01.hrtn.net:9090/live/fyzq_1500.m3u8",
  1175. "http://39.134.216.5/live.hcs.cmvideo.cn:8088/ws_v/2018/fyzq/fyzq711/1000/index.m3u8?ProgramID=&encrypt=1"
  1176. ]
  1177. },
  1178. {
  1179. "name": "CCTV音乐",
  1180. "urls": [
  1181. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225698/1/index.m3u8?fmt=ts2hls$2M1080P",
  1182. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226083/1/index.m3u8?fmt=ts2hls",
  1183. "http://cg01.hrtn.net:9090/live/fyyy_1500.m3u8",
  1184. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226083/1/index.m3u8?fmt=ts2hls"
  1185. ]
  1186. },
  1187. {
  1188. "name": "CCTV网球",
  1189. "urls": [
  1190. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226114/1/index.m3u8?fmt=ts2hls$8M1080P",
  1191. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225674/1/index.m3u8?fmt=ts2hls$2M1080P",
  1192. "http://39.136.18.95/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226114/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&ocs=2_39.136.18.72_80&hms_devid=4691,4708&online=1632726406&vqe=3",
  1193. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226114/1/index.m3u8?fmt=ts2hls"
  1194. ]
  1195. },
  1196. {
  1197. "name": "央视精品",
  1198. "urls": [
  1199. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225675/1/index.m3u8?fmt=ts2hls$3M1080P",
  1200. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226100/1/index.m3u8?fmt=ts2hls$8M1080P"
  1201. ]
  1202. },
  1203. {
  1204. "name": "教育1台",
  1205. "urls": [
  1206. "http://117.136.154.86/PLTV/88888888/224/3221225701/index.m3u8",
  1207. "http://39.130.202.81:6610/gitv_live/G_CETV-1-HD/G_CETV-1-HD.m3u8",
  1208. "http://117.148.179.156/PLTV/88888888/224/3221231714/index.m3u8",
  1209. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225723/1/index.m3u8?fmt=ts2hls"
  1210. ]
  1211. },
  1212. {
  1213. "name": "湖南卫视",
  1214. "urls": [
  1215. "http://111.40.196.9/PLTV/88888888/224/3221225554/index.m3u8",
  1216. "http://111.40.196.9/PLTV/88888888/224/3221225521/index.m3u8",
  1217. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225707/1/index.m3u8?fmt=ts2hls",
  1218. "http://39.135.138.60:18890/PLTV/88888910/224/3221225745/index.m3u8",
  1219. "http://39.135.138.59:18890/PLTV/88888910/224/3221225704/index.m3u8",
  1220. "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226509/1.m3u8",
  1221. "http://111.40.196.9/PLTV/88888888/224/3221225519/index.m3u8",
  1222. "http://111.40.196.9/PLTV/88888888/224/3221225594/index.m3u8"
  1223. ]
  1224. },
  1225. {
  1226. "name": "湖南经视",
  1227. "urls": [
  1228. "http://124.232.231.246:6610/000000001001/201500000068/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
  1229. "http://149.129.100.78/hunan.php?id=280",
  1230. "http://58.20.64.92:9999/tsfile/live/1000_1.m3u8",
  1231. "http://124.232.231.246:6610/000000001001/201500000234/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
  1232. "http://111.40.196.25/PLTV/88888888/224/3221225658/index.m3u8"
  1233. ]
  1234. },
  1235. {
  1236. "name": "湖南都市",
  1237. "urls": [
  1238. "http://124.232.231.246:6610/000000001001/201500000151/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
  1239. "http://58.20.64.92:9999/tsfile/live/1001_1.m3u8",
  1240. "http://149.129.100.78/hunan.php?id=346",
  1241. "http://124.232.231.246:6610/000000001001/201500000235/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"
  1242. ]
  1243. },
  1244. {
  1245. "name": "湖南电影",
  1246. "urls": [
  1247. "http://58.20.64.92:9999/tsfile/live/1003_1.m3u8",
  1248. "http://124.232.231.246:6610/000000001001/201500000237/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"
  1249. ]
  1250. },
  1251. {
  1252. "name": "湖南电视剧",
  1253. "urls": [
  1254. "http://58.20.64.92:9999/tsfile/live/1042_1.m3u8",
  1255. "http://124.232.231.246:6610/000000001001/201500000155/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
  1256. "http://124.232.231.246:6610/000000001001/201500000236/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
  1257. "http://124.232.231.246:6610/000000001001/201500000236/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"
  1258. ]
  1259. },
  1260. {
  1261. "name": "湖南公共",
  1262. "urls": [
  1263. "http://124.232.231.246:6610/000000001001/201500000241/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
  1264. "http://124.232.231.246:6610/000000001001/201500000222/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
  1265. "http://124.232.231.246:6610/000000001001/201500000241/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"
  1266. ]
  1267. },
  1268. {
  1269. "name": "湖南娱乐",
  1270. "urls": [
  1271. "http://124.232.231.246:6610/000000001001/201500000152/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
  1272. "http://124.232.231.246:6610/000000001001/201500000239/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
  1273. "http://124.232.231.246:6610/000000001001/201500000239/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"
  1274. ]
  1275. },
  1276. {
  1277. "name": "湖南国际",
  1278. "urls": [
  1279. "http://124.232.231.246:6610/000000001001/201500000242/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"
  1280. ]
  1281. },
  1282. {
  1283. "name": "金鹰纪实",
  1284. "urls": [
  1285. "http://39.130.202.81:6610/gitv_live/G_JINYINGJS-HD/G_JINYINGJS-HD.m3u8",
  1286. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225671/1/index.m3u8?fmt=ts2hls"
  1287. ]
  1288. },
  1289. {
  1290. "name": "长沙政法",
  1291. "urls": [
  1292. "http://124.232.231.246:6610/000000001001/201500000229/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
  1293. "http://124.232.231.246:6610/000000001001/201500000229/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"
  1294. ]
  1295. },
  1296. {
  1297. "name": "东方卫视",
  1298. "urls": [
  1299. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225752/1/index.m3u8?fmt=ts2hls",
  1300. "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226237/1.m3u8",
  1301. "http://39.135.138.59:18890/PLTV/88888910/224/3221225658/index.m3u8",
  1302. "http://39.135.138.59:18890/PLTV/88888910/224/3221225659/index.m3u8",
  1303. "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/hddfws/2300000/mnf.m3u8",
  1304. "http://111.40.196.9/PLTV/88888888/224/3221225542/index.m3u8"
  1305. ]
  1306. },
  1307. {
  1308. "name": "江苏卫视",
  1309. "urls": [
  1310. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225751/1/index.m3u8?fmt=ts2hls",
  1311. "http://111.40.196.9/PLTV/88888888/224/3221225596/index.m3u8",
  1312. "http://39.135.138.59:18890/PLTV/88888910/224/3221225743/index.m3u8",
  1313. "http://117.148.179.160/PLTV/88888888/224/3221231447/index.m3u8",
  1314. "http://111.40.196.9/PLTV/88888888/224/3221225578/index.m3u8"
  1315. ]
  1316. },
  1317. {
  1318. "name": "浙江卫视",
  1319. "urls": [
  1320. "http://111.40.196.9/PLTV/88888888/224/3221225523/index.m3u8",
  1321. "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225612/1.m3u8",
  1322. "http://39.134.67.55:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225612/1.m3u8",
  1323. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225750/1/index.m3u8?fmt=ts2hls",
  1324. "http://111.40.196.9/PLTV/88888888/224/3221225538/index.m3u8"
  1325. ]
  1326. },
  1327. {
  1328. "name": "深圳卫视",
  1329. "urls": [
  1330. "http://39.134.39.37/PLTV/88888888/224/3221226199/index.m3u8",
  1331. "http://39.134.39.39/PLTV/88888888/224/3221226199/index.m3u8",
  1332. "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226245/1.m3u8",
  1333. "http://111.40.196.9/PLTV/88888888/224/3221225602/index.m3u8"
  1334. ]
  1335. },
  1336. {
  1337. "name": "北京卫视",
  1338. "urls": [
  1339. "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226436/1.m3u8",
  1340. "http://39.134.39.37/PLTV/88888888/224/3221226161/index.m3u8",
  1341. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225754/1/index.m3u8?fmt=ts2hls",
  1342. "http://39.134.24.24/PLTV/88888888/224/3221225646/index.m3u8"
  1343. ]
  1344. },
  1345. {
  1346. "name": "冬奥纪实",
  1347. "urls": [
  1348. "http://39.135.138.58:18890/PLTV/88888910/224/3221225676/index.m3u8",
  1349. "http://39.130.202.81:6610/gitv_live/G_BEIJINGJS-HD/G_BEIJINGJS-HD.m3u8",
  1350. "http://39.134.135.124/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226560/1.m3u8",
  1351. "http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226560/1.m3u8"
  1352. ]
  1353. },
  1354. {
  1355. "name": "北京青年",
  1356. "urls": [
  1357. "http://39.134.135.124/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226562/1.m3u8",
  1358. "http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226562/1.m3u8"
  1359. ]
  1360. },
  1361. {
  1362. "name": "北京生活",
  1363. "urls": [
  1364. "http://39.134.135.124/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226561/1.m3u8",
  1365. "http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226561/1.m3u8"
  1366. ]
  1367. },
  1368. {
  1369. "name": "北京新闻",
  1370. "urls": [
  1371. "http://39.134.135.124/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226437/1.m3u8",
  1372. "http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226437/1.m3u8"
  1373. ]
  1374. },
  1375. {
  1376. "name": "北京文艺",
  1377. "urls": [
  1378. "http://39.134.135.82/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226440/1.m3u8"
  1379. ]
  1380. },
  1381. {
  1382. "name": "北京影视",
  1383. "urls": [
  1384. "http://39.134.135.82/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226486/1.m3u8"
  1385. ]
  1386. },
  1387. {
  1388. "name": "上海新闻",
  1389. "urls": [
  1390. "http://111.40.196.9/PLTV/88888888/224/3221225499/index.m3u8",
  1391. "http://183.207.255.188/live/program/live/xwzhhd/4000000/mnf.m3u8"
  1392. ]
  1393. },
  1394. {
  1395. "name": "第一财经",
  1396. "urls": [
  1397. "http://39.134.39.39/PLTV/88888888/224/3221226172/index.m3u8",
  1398. "http://39.134.39.37/PLTV/88888888/224/3221226172/index.m3u8",
  1399. "http://111.40.196.9/PLTV/88888888/224/3221225497/index.m3u8",
  1400. "http://39.134.39.39/PLTV/88888888/224/3221226172/index.m3u8"
  1401. ]
  1402. },
  1403. {
  1404. "name": "上海纪实",
  1405. "urls": [
  1406. "http://39.134.39.37/PLTV/88888888/224/3221226174/index.m3u8",
  1407. "http://39.134.39.39/PLTV/88888888/224/3221226174/index.m3u8",
  1408. "http://39.134.155.141/PLTV/88888888/224/3221225590/index.m3u8"
  1409. ]
  1410. },
  1411. {
  1412. "name": "上海娱乐",
  1413. "urls": [
  1414. "http://111.40.196.9/PLTV/88888888/224/3221225624/index.m3u8",
  1415. "http://111.40.196.9/PLTV/88888888/224/3221225632/index.m3u8",
  1416. "http://39.134.135.82/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226325/1.m3u8"
  1417. ]
  1418. },
  1419. {
  1420. "name": "天津卫视",
  1421. "urls": [
  1422. "http://39.135.138.60:18890/PLTV/88888910/224/3221225739/index.m3u8",
  1423. "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/tjwshd/2300000/mnf.m3u8",
  1424. "http://111.40.196.9/PLTV/88888888/224/3221225556/index.m3u8",
  1425. "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226502/1.m3u8"
  1426. ]
  1427. },
  1428. {
  1429. "name": "安徽卫视",
  1430. "urls": [
  1431. "http://39.135.138.59:18890/PLTV/88888910/224/3221225737/index.m3u8",
  1432. "http://39.135.138.59:18890/PLTV/88888910/224/3221225691/index.m3u8",
  1433. "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226499/1.m3u8",
  1434. "http://39.134.39.37/PLTV/88888888/224/3221226205/index.m3u8",
  1435. "http://39.134.24.24/PLTV/88888888/224/3221225638/index.m3u8"
  1436. ]
  1437. },
  1438. {
  1439. "name": "重庆卫视",
  1440. "urls": [
  1441. "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-chongqingstv/HD-8000k-1080P-chongqingstv",
  1442. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225686/1/index.m3u8?fmt=ts2hls",
  1443. "http://39.135.138.59:18890/PLTV/88888910/224/3221225734/index.m3u8",
  1444. "http://womlive.cloud.wo.cn/tvlive/100018/otpzod_hn,100018_hls_pull_2000K_live.m3u8",
  1445. "http://39.134.24.24/PLTV/88888888/224/3221225592/index.m3u8"
  1446. ]
  1447. },
  1448. {
  1449. "name": "四川卫视",
  1450. "urls": [
  1451. "http://39.130.202.81:6610/gitv_live/G_SICHUAN-HD/G_SICHUAN-HD.m3u8",
  1452. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225757/1/index.m3u8?fmt=ts2hls",
  1453. "http://womlive.cloud.wo.cn/tvlive/100017/otpzod_hn,100017_hls_pull_2000K_live.m3u8",
  1454. "http://39.134.24.24/PLTV/88888888/224/3221225704/index.m3u8"
  1455. ]
  1456. },
  1457. {
  1458. "name": "东南卫视",
  1459. "urls": [
  1460. "http://39.135.138.59:18890/PLTV/88888910/224/3221225657/index.m3u8",
  1461. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225739/1/index.m3u8?fmt=ts2hls",
  1462. "http://39.134.135.124/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226496/1.m3u8",
  1463. "http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226496/1.m3u8"
  1464. ]
  1465. },
  1466. {
  1467. "name": "海峡卫视",
  1468. "urls": [
  1469. "rtsp://183.252.166.199/PLTV/88888888/224/3221226128/10000100000000060000000002434539_0.smil"
  1470. ]
  1471. },
  1472. {
  1473. "name": "广东卫视",
  1474. "urls": [
  1475. "http://39.135.138.60:18890/PLTV/88888910/224/3221225701/index.m3u8",
  1476. "http://111.40.196.9/PLTV/88888888/224/3221225533/index.m3u8",
  1477. "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225720/1/index.m3u8?fmt=ts2hls",
  1478. "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/gdwshd/2300000/mnf.m3u8",
  1479. "http://111.40.196.9/PLTV/88888888/224/3221225531/index.m3u8"
  1480. ]
  1481. },
  1482. {
  1483. "name": "广西卫视",
  1484. "urls": [
  1485. "http://womlive.cloud.wo.cn/tvlive/100021/otpzod_otpzod,100021_hls_pull_2000K_live.m3u8",
  1486. "http://39.130.202.81:6610/gitv_live/G_GUANGXI-HD/G_GUANGXI-HD.m3u8",
  1487. "rtsp://183.252.176.54:554/PLTV/88888888/224/3221226070/10000100000000060000000002296911_0.smil",
  1488. "http://111.40.196.9/PLTV/88888888/224/3221225518/index.m3u8"
  1489. ]
  1490. },
  1491. {
  1492. "name": "贵州卫视",
  1493. "urls": [
  1494. "http://womlive.cloud.wo.cn/tvlive/100019/otpzod_otpzod,100019_hls_pull_2000K_live.m3u8",
  1495. "rtsp://183.252.166.199:554/PLTV/88888888/224/3221226126/10000100000000060000000002434541_0.smil",
  1496. "http://39.134.66.66/PLTV/88888888/224/3221225561/index.m3u8",
  1497. "http://111.40.196.9/PLTV/88888888/224/3221225522/index.m3u8"
  1498. ]
  1499. },
  1500. {
  1501. "name": "海南卫视",
  1502. "urls": [
  1503. "http://womlive.cloud.wo.cn/tvlive/100022/otpzod_otpzod,100022_hls_pull_2000K_live.m3u8",
  1504. "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225639/1.m3u8",
  1505. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225639/1.m3u8"
  1506. ]
  1507. },
  1508. {
  1509. "name": "河北卫视",
  1510. "urls": [
  1511. "http://womlive.cloud.wo.cn/tvlive/100008/otpzod_otpzod,100008_hls_pull_2000K_live.m3u8",
  1512. "http://39.134.66.66/PLTV/88888888/224/3221225867/index.m3u8",
  1513. "http://183.207.248.71:80/cntv/live1/n-hebeistv/n-hebeistv",
  1514. "http://39.134.66.66/PLTV/88888888/224/3221225867/index.m3u8"
  1515. ]
  1516. },
  1517. {
  1518. "name": "河南卫视",
  1519. "urls": [
  1520. "http://womlive.cloud.wo.cn/tvlive/100009/otpzod_otpzod,100009_hls_pull_2000K_live.m3u8",
  1521. "rtsp://183.252.176.54:554/PLTV/88888888/224/3221226076/10000100000000060000000002296917_0.smil",
  1522. "http://39.134.24.24/PLTV/88888888/224/3221225716/index.m3u8"
  1523. ]
  1524. },
  1525. {
  1526. "name": "黑龙江卫视",
  1527. "urls": [
  1528. "http://111.40.196.9/PLTV/88888888/224/3221225544/index.m3u8",
  1529. "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226239/1.m3u8"
  1530. ]
  1531. },
  1532. {
  1533. "name": "湖北卫视",
  1534. "urls": [
  1535. "http://223.110.245.154/ott.js.chinamobile.com/PLTV/3/224/3221227703/index.m3u8",
  1536. "http://39.135.138.59:18890/PLTV/88888910/224/3221225699/index.m3u8",
  1537. "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226240/1.m3u8",
  1538. "http://111.40.196.9/PLTV/88888888/224/3221225566/index.m3u8"
  1539. ]
  1540. },
  1541. {
  1542. "name": "吉林卫视",
  1543. "urls": [
  1544. "rtsp://183.252.166.199/PLTV/88888888/224/3221226792/48616745.smil",
  1545. "http://39.134.24.24/PLTV/88888888/224/3221225804/index.m3u8"
  1546. ]
  1547. },
  1548. {
  1549. "name": "江西卫视",
  1550. "urls": [
  1551. "http://39.134.39.39/PLTV/88888888/224/3221226207/index.m3u8",
  1552. "http://117.148.179.160/PLTV/88888888/224/3221231964/index.m3u8",
  1553. "http://111.40.196.9/PLTV/88888888/224/3221225591/index.m3u8"
  1554. ]
  1555. },
  1556. {
  1557. "name": "辽宁卫视",
  1558. "urls": [
  1559. "http://39.135.138.59:18890/PLTV/88888910/224/3221225696/index.m3u8",
  1560. "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/lnwshd/2300000/mnf.m3u8",
  1561. "http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226500/1.m3u8",
  1562. "http://111.40.196.9/PLTV/88888888/224/3221225593/index.m3u8"
  1563. ]
  1564. },
  1565. {
  1566. "name": "黑龙江卫视",
  1567. "urls": [
  1568. "http://39.135.138.59:18890/PLTV/88888910/224/3221225736/index.m3u8",
  1569. "http://111.40.196.9/PLTV/88888888/224/3221225539/index.m3u8",
  1570. "http://117.148.179.160/PLTV/88888888/224/3221231967/index.m3u8",
  1571. "http://111.40.196.9/PLTV/88888888/224/3221225541/index.m3u8"
  1572. ]
  1573. },
  1574. {
  1575. "name": "山东卫视",
  1576. "urls": [
  1577. "http://39.135.138.59:18890/PLTV/88888910/224/3221225697/index.m3u8",
  1578. "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/sdwshd/2300000/mnf.m3u8",
  1579. "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226501/1.m3u8",
  1580. "http://39.134.135.82/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226501/1.m3u8",
  1581. "http://111.40.196.9/PLTV/88888888/224/3221225546/index.m3u8"
  1582. ]
  1583. },
  1584. {
  1585. "name": "山西卫视",
  1586. "urls": [
  1587. "http://womlive.cloud.wo.cn/tvlive/100010/otpzod_otpzod,100010_hls_pull_2000K_live.m3u8",
  1588. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225624/1.m3u8",
  1589. "http://womlive.cloud.wo.cn/tvlive/100010/otpzod_otpzod,100010_hls_pull_2000K_live.m3u8",
  1590. "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225624/1.m3u8",
  1591. "http://111.40.196.9/PLTV/88888888/224/3221225520/index.m3u8"
  1592. ]
  1593. },
  1594. {
  1595. "name": "云南卫视",
  1596. "urls": [
  1597. "http://39.130.202.81:6610/gitv_live/G_YUNNAN-HD/G_YUNNAN-HD.m3u8",
  1598. "rtsp://183.252.166.199/PLTV/88888888/224/3221226108/10000100000000060000000002310150_0.smil",
  1599. "rtsp://183.252.176.54:554/PLTV/88888888/224/3221226108/10000100000000060000000002310150_0.smil",
  1600. "http://womlive.cloud.wo.cn/tvlive/100016/otpzod_hn,100016_hls_pull_2000K_live.m3u8",
  1601. "http://183.207.248.71:80/cntv/live1/n-yntv1/n-yntv1",
  1602. "http://39.134.24.24/PLTV/88888888/224/3221225696/index.m3u8"
  1603. ]
  1604. },
  1605. {
  1606. "name": "新疆卫视",
  1607. "urls": [
  1608. "http://womlive.cloud.wo.cn/tvlive/100027/otpzod_otpzod,100027_hls_pull_2000K_live.m3u8",
  1609. "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225635/1.m3u8",
  1610. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225635/1.m3u8",
  1611. "http://111.40.196.9/PLTV/88888888/224/3221225598/index.m3u8"
  1612. ]
  1613. },
  1614. {
  1615. "name": "陕西卫视",
  1616. "urls": [
  1617. "http://39.134.66.66/PLTV/88888888/224/3221225567/index.m3u8",
  1618. "http://39.134.66.66/PLTV/88888888/224/3221225567/index.m3u8",
  1619. "http://183.207.248.71:80/cntv/live1/n-shanxi1stv/n-shanxi1stv"
  1620. ]
  1621. },
  1622. {
  1623. "name": "甘肃卫视",
  1624. "urls": [
  1625. "http://39.134.39.39/PLTV/88888888/224/3221226240/index.m3u8",
  1626. "http://womlive.cloud.wo.cn/tvlive/100028/otpzod_otpzod,100028_hls_pull_2000K_live.m3u8",
  1627. "http://183.207.248.71:80/cntv/live1/n-gansustv/n-gansustv",
  1628. "http://39.134.24.24/PLTV/88888888/224/3221225714/index.m3u8"
  1629. ]
  1630. },
  1631. {
  1632. "name": "青海卫视",
  1633. "urls": [
  1634. "http://live.geermurmt.com/qhws/sd/live.m3u8",
  1635. "http://womlive.cloud.wo.cn/tvlive/100024/otpzod_hn,100024_hls_pull_2000K_live.m3u8"
  1636. ]
  1637. },
  1638. {
  1639. "name": "精品大剧",
  1640. "urls": [
  1641. "http://111.40.196.9/PLTV/88888888/224/3221225612/index.m3u8",
  1642. "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226331/1.m3u8"
  1643. ]
  1644. },
  1645. {
  1646. "name": "爱情喜剧",
  1647. "urls": [
  1648. "http://111.40.196.9/PLTV/88888888/224/3221225616/index.m3u8",
  1649. "http://111.40.196.9/PLTV/88888888/224/3221225624/index.m3u8"
  1650. ]
  1651. },
  1652. {
  1653. "name": "IPTV古装剧场",
  1654. "urls": [
  1655. "http://58.20.64.92:9999/tsfile/live/1044_1.m3u8"
  1656. ]
  1657. },
  1658. {
  1659. "name": "超级电视剧",
  1660. "urls": [
  1661. "http://39.134.67.55:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225716/1.m3u8",
  1662. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225716/1.m3u8",
  1663. "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225716/1.m3u8"
  1664. ]
  1665. },
  1666. {
  1667. "name": "超级综艺",
  1668. "urls": [
  1669. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225714/1.m3u8",
  1670. ",http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225714/1.m3u8"
  1671. ]
  1672. },
  1673. {
  1674. "name": "潮妈辣婆",
  1675. "urls": [
  1676. "http://39.134.67.55:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225685/1.m3u8",
  1677. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225685/1.m3u8",
  1678. "http://39.135.137.15:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225685/1.m3u8"
  1679. ]
  1680. },
  1681. {
  1682. "name": "东北热剧",
  1683. "urls": [
  1684. "http://39.135.137.15:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225741/1.m3u8",
  1685. "http://39.135.137.24:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225741/1.m3u8",
  1686. "http://39.135.137.32:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225741/1.m3u8"
  1687. ]
  1688. },
  1689. {
  1690. "name": "明星大片",
  1691. "urls": [
  1692. "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225664/1.m3u8",
  1693. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225664/1.m3u8"
  1694. ]
  1695. },
  1696. {
  1697. "name": "古装剧场",
  1698. "urls": [
  1699. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225663/1.m3u8",
  1700. "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225663/1.m3u8"
  1701. ]
  1702. },
  1703. {
  1704. "name": "欢乐剧场",
  1705. "urls": [
  1706. "http://39.135.137.15:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225742/1.m3u8",
  1707. "http://39.135.137.24:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225742/1.m3u8",
  1708. "http://39.135.137.32:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225742/1.m3u8"
  1709. ]
  1710. },
  1711. {
  1712. "name": "家庭剧场",
  1713. "urls": [
  1714. "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225677/1.m3u8",
  1715. "http://39.134.67.55:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225677/1.m3u8",
  1716. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225677/1.m3u8"
  1717. ]
  1718. },
  1719. {
  1720. "name": "悬疑剧场",
  1721. "urls": [
  1722. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225665/1.m3u8",
  1723. "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225665/1.m3u8"
  1724. ]
  1725. },
  1726. {
  1727. "name": "军旅剧场",
  1728. "urls": [
  1729. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225676/1.m3u8",
  1730. "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225676/1.m3u8"
  1731. ]
  1732. },
  1733. {
  1734. "name": "金牌综艺",
  1735. "urls": [
  1736. "http://39.135.137.32:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225666/1.m3u8",
  1737. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225666/1.m3u8",
  1738. "http://39.135.137.38:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225666/1.m3u8"
  1739. ]
  1740. },
  1741. {
  1742. "name": "精品大剧",
  1743. "urls": [
  1744. "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225670/1.m3u8",
  1745. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225670/1.m3u8",
  1746. "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225670/1.m3u8"
  1747. ]
  1748. },
  1749. {
  1750. "name": "精品记录",
  1751. "urls": [
  1752. "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225672/1.m3u8",
  1753. "http://39.134.67.55:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225672/1.m3u8"
  1754. ]
  1755. },
  1756. {
  1757. "name": "军事评论",
  1758. "urls": [
  1759. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225668/1.m3u8",
  1760. "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225668/1.m3u8",
  1761. "http://183.207.248.71:80/cntv/live1/n-junshipl/n-junshipl"
  1762. ]
  1763. },
  1764. {
  1765. "name": "农业致富",
  1766. "urls": [
  1767. "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225683/1.m3u8",
  1768. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225683/1.m3u8"
  1769. ]
  1770. },
  1771. {
  1772. "name": "四海钓鱼",
  1773. "urls": [
  1774. "http://cg01.hrtn.net:9090/live/shdy_1500.m3u8",
  1775. "http://124.232.231.246:6610/000000001001/201500000054/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
  1776. "http://58.20.64.92:9999/tsfile/live/1031_1.m3u8",
  1777. "http://womlive.cloud.wo.cn/tvlive/100077/otpzod_otpzod,100077_hls_pull_2000K_live.m3u8"
  1778. ]
  1779. },
  1780. {
  1781. "name": "黑莓动画",
  1782. "urls": [
  1783. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225662/1.m3u8",
  1784. "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225662/1.m3u8"
  1785. ]
  1786. },
  1787. {
  1788. "name": "金鹰卡通",
  1789. "urls": [
  1790. "http://124.232.231.246:6610/000000001001/201500000154/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
  1791. "http://124.232.231.246:6610/000000001001/201500000238/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2#http://124.232.231.246:6610/000000001001/201500000240/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
  1792. "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225653/1.m3u8",
  1793. "http://39.134.66.66/PLTV/88888888/224/3221225561/index.m3u8"
  1794. ]
  1795. },
  1796. {
  1797. "name": "动漫秀场",
  1798. "urls": [
  1799. "http://111.40.196.9/PLTV/88888888/224/3221225599/index.m3u8"
  1800. ]
  1801. },
  1802. {
  1803. "name": "优漫卡通",
  1804. "urls": [
  1805. "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225656/1.m3u8",
  1806. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225656/1.m3u8",
  1807. "http://39.134.66.66/PLTV/88888888/224/3221225556/index.m3u8"
  1808. ]
  1809. },
  1810. {
  1811. "name": "芒果TV直播",
  1812. "urls": [
  1813. "http://117.148.179.160/PLTV/88888888/224/3221231276/index.m3u8",
  1814. "http://117.148.179.160/PLTV/88888888/224/3221231301/index.m3u8",
  1815. "http://117.148.179.160/PLTV/88888888/224/3221231310/index.m3u8",
  1816. "http://117.148.179.160/PLTV/88888888/224/3221231273/index.m3u8"
  1817. ]
  1818. },
  1819. {
  1820. "name": "游戏直播",
  1821. "urls": [
  1822. "http://39.134.66.66/PLTV/88888888/224/3221225559/index.m3u8"
  1823. ]
  1824. },
  1825. {
  1826. "name": "HBO(测试)",
  1827. "urls": [
  1828. "http://50.7.161.82:8278/streams/d/Hbo/playlist.m3u8"
  1829. ]
  1830. },
  1831. {
  1832. "name": "旋舞未来",
  1833. "urls": [
  1834. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225719/1.m3u8"
  1835. ]
  1836. },
  1837. {
  1838. "name": "旋舞未来",
  1839. "urls": [
  1840. "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225719/1.m3u8"
  1841. ]
  1842. }
  1843. ]
  1844. }
  1845. ],
  1846. "flags": [
  1847. "youku",
  1848. "qq",
  1849. "iqiyi",
  1850. "qiyi",
  1851. "letv",
  1852. "sohu",
  1853. "tudou",
  1854. "pptv",
  1855. "mgtv",
  1856. "wasu",
  1857. "bilibili"
  1858. ],
  1859. "spider": "https://pglblb-1307091970.cos.ap-guangzhou.myqcloud.com/custom_spider.jar",
  1860. "parses": [
  1861. {
  1862. "name": "默认解析",
  1863. "url": "https://okjx.cc?url="
  1864. },
  1865. {
  1866. "name": "备用解析",
  1867. "url": "https://m2090.com/?url="
  1868. },
  1869. {
  1870. "name": "OK解析",
  1871. "url": "https://okjx.cc/?url="
  1872. },
  1873. {
  1874. "name": "U盘解析",
  1875. "url": "http://api.u1o.net/?url="
  1876. },
  1877. {
  1878. "name": "ZSJ解析",
  1879. "url": "http://jx.hao-zsj.cn/vip/?url="
  1880. },
  1881. {
  1882. "name": "Parw解析",
  1883. "url": "https://vip.parwix.com:4433/player/?url="
  1884. },
  1885. {
  1886. "name": "老板解析",
  1887. "url": "https://vip.laobandq.com/jiexi.php?url="
  1888. },
  1889. {
  1890. "name": "百玉解析",
  1891. "url": "http://api.baiyug.vip/index.php?url="
  1892. }
  1893. ],
  1894. "Parallel": [
  1895. "http://jx.hao-zsj.cn/vip/?url=",
  1896. "https://jx.renrenmi.cc/?url=",
  1897. "https://m2090.com/?url=",
  1898. "https://vip.parwix.com:4433/player/?url=",
  1899. "https://jx.ns360.cn/1080/jiexi/?url=",
  1900. "http://jjxx.me/?url="
  1901. ],
  1902. "ijk": [
  1903. {
  1904. "group": "软解码",
  1905. "options": [
  1906. {
  1907. "category": 4,
  1908. "name": "opensles",
  1909. "value": "0"
  1910. },
  1911. {
  1912. "category": 4,
  1913. "name": "overlay-format",
  1914. "value": "842225234"
  1915. },
  1916. {
  1917. "category": 4,
  1918. "name": "framedrop",
  1919. "value": "1"
  1920. },
  1921. {
  1922. "category": 4,
  1923. "name": "soundtouch",
  1924. "value": "1"
  1925. },
  1926. {
  1927. "category": 4,
  1928. "name": "start-on-prepared",
  1929. "value": "1"
  1930. },
  1931. {
  1932. "category": 1,
  1933. "name": "http-detect-range-support",
  1934. "value": "0"
  1935. },
  1936. {
  1937. "category": 1,
  1938. "name": "fflags",
  1939. "value": "fastseek"
  1940. },
  1941. {
  1942. "category": 2,
  1943. "name": "skip_loop_filter",
  1944. "value": "48"
  1945. },
  1946. {
  1947. "category": 4,
  1948. "name": "reconnect",
  1949. "value": "1"
  1950. },
  1951. {
  1952. "category": 4,
  1953. "name": "max-buffer-size",
  1954. "value": "5242880"
  1955. },
  1956. {
  1957. "category": 4,
  1958. "name": "enable-accurate-seek",
  1959. "value": "0"
  1960. },
  1961. {
  1962. "category": 4,
  1963. "name": "mediacodec",
  1964. "value": "0"
  1965. },
  1966. {
  1967. "category": 4,
  1968. "name": "mediacodec-auto-rotate",
  1969. "value": "0"
  1970. },
  1971. {
  1972. "category": 4,
  1973. "name": "mediacodec-handle-resolution-change",
  1974. "value": "0"
  1975. },
  1976. {
  1977. "category": 4,
  1978. "name": "mediacodec-hevc",
  1979. "value": "0"
  1980. }
  1981. ]
  1982. },
  1983. {
  1984. "group": "硬解码",
  1985. "options": [
  1986. {
  1987. "category": 4,
  1988. "name": "opensles",
  1989. "value": "0"
  1990. },
  1991. {
  1992. "category": 4,
  1993. "name": "overlay-format",
  1994. "value": "842225234"
  1995. },
  1996. {
  1997. "category": 4,
  1998. "name": "framedrop",
  1999. "value": "1"
  2000. },
  2001. {
  2002. "category": 4,
  2003. "name": "soundtouch",
  2004. "value": "1"
  2005. },
  2006. {
  2007. "category": 4,
  2008. "name": "start-on-prepared",
  2009. "value": "1"
  2010. },
  2011. {
  2012. "category": 1,
  2013. "name": "http-detect-range-support",
  2014. "value": "0"
  2015. },
  2016. {
  2017. "category": 1,
  2018. "name": "fflags",
  2019. "value": "fastseek"
  2020. },
  2021. {
  2022. "category": 2,
  2023. "name": "skip_loop_filter",
  2024. "value": "48"
  2025. },
  2026. {
  2027. "category": 4,
  2028. "name": "reconnect",
  2029. "value": "1"
  2030. },
  2031. {
  2032. "category": 4,
  2033. "name": "max-buffer-size",
  2034. "value": "5242880"
  2035. },
  2036. {
  2037. "category": 4,
  2038. "name": "enable-accurate-seek",
  2039. "value": "0"
  2040. },
  2041. {
  2042. "category": 4,
  2043. "name": "mediacodec",
  2044. "value": "1"
  2045. },
  2046. {
  2047. "category": 4,
  2048. "name": "mediacodec-auto-rotate",
  2049. "value": "1"
  2050. },
  2051. {
  2052. "category": 4,
  2053. "name": "mediacodec-handle-resolution-change",
  2054. "value": "1"
  2055. },
  2056. {
  2057. "category": 4,
  2058. "name": "mediacodec-hevc",
  2059. "value": "1"
  2060. }
  2061. ]
  2062. }
  2063. ],
  2064. "ads": [
  2065. "mimg.0c1q0l.cn",
  2066. "www.googletagmanager.com",
  2067. "www.google-analytics.com",
  2068. "mc.usihnbcq.cn",
  2069. "mg.g1mm3d.cn",
  2070. "mscs.svaeuzh.cn",
  2071. "cnzz.hhttm.top",
  2072. "tp.vinuxhome.com",
  2073. "cnzz.mmstat.com",
  2074. "www.baihuillq.com",
  2075. "s23.cnzz.com",
  2076. "z3.cnzz.com",
  2077. "c.cnzz.com",
  2078. "stj.v1vo.top",
  2079. "z12.cnzz.com",
  2080. "img.mosflower.cn",
  2081. "tips.gamevvip.com",
  2082. "ehwe.yhdtns.com",
  2083. "xdn.cqqc3.com",
  2084. "www.jixunkyy.cn",
  2085. "sp.chemacid.cn",
  2086. "hm.baidu.com",
  2087. "s9.cnzz.com",
  2088. "z6.cnzz.com",
  2089. "um.cavuc.com",
  2090. "mav.mavuz.com",
  2091. "wofwk.aoidf3.com",
  2092. "z5.cnzz.com",
  2093. "xc.hubeijieshikj.cn",
  2094. "tj.tianwenhu.com",
  2095. "xg.gars57.cn",
  2096. "k.jinxiuzhilv.com",
  2097. "cdn.bootcss.com",
  2098. "ppl.xunzhuo123.com",
  2099. "xomk.jiangjunmh.top",
  2100. "img.xunzhuo123.com",
  2101. "z1.cnzz.com",
  2102. "s13.cnzz.com",
  2103. "xg.huataisangao.cn",
  2104. "z7.cnzz.com",
  2105. "xg.huataisangao.cn",
  2106. "z2.cnzz.com",
  2107. "s96.cnzz.com",
  2108. "q11.cnzz.com",
  2109. "thy.dacedsfa.cn",
  2110. "xg.whsbpw.cn",
  2111. "s19.cnzz.com",
  2112. "z8.cnzz.com",
  2113. "s4.cnzz.com",
  2114. "f5w.as12df.top",
  2115. "ae01.alicdn.com",
  2116. "www.92424.cn",
  2117. "k.wudejia.com",
  2118. "vivovip.mmszxc.top",
  2119. "qiu.xixiqiu.com",
  2120. "cdnjs.hnfenxun.com",
  2121. "cms.qdwght.com"
  2122. ]
  2123. }