maoTV.json 216 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489
  1. {
  2. "sites": [
  3. {
  4. "key": "lezhu",
  5. "name": "乐猪爬虫",
  6. "type": 1,
  7. "api": "http://pandown.pro/mao/lezhu.php"
  8. },
  9. {
  10. "key": "cokemv",
  11. "name": "cokemv爬虫",
  12. "type": 1,
  13. "api": "http://pandown.pro/mao/cokemv.php"
  14. },
  15. {
  16. "key": "chuxin",
  17. "name": "初心爬虫",
  18. "type": 1,
  19. "api": "http://pandown.pro/mao/chuxin.php"
  20. },
  21. {
  22. "key": "buka",
  23. "name": "不开VIP爬虫",
  24. "type": 1,
  25. "api": "http://pandown.pro/mao/buka.php"
  26. },
  27. {
  28. "key": "xmkk",
  29. "name": "熊猫看看爬虫",
  30. "type": 1,
  31. "api": "http://pandown.pro/mao/xmkk.php"
  32. },
  33. {
  34. "key": "nekk",
  35. "name": "九亿爬虫",
  36. "type": 1,
  37. "api": "http://pandown.pro/mao/nekk.php"
  38. },
  39. {
  40. "key": "xuangz",
  41. "name": "六度爬虫",
  42. "type": 1,
  43. "api": "http://pandown.pro/mao/xuangz.php"
  44. },
  45. {
  46. "key": "libvio",
  47. "name": "libvio爬虫",
  48. "type": 1,
  49. "api": "http://pandown.pro/mao/libvio.php"
  50. },
  51. {
  52. "key": "ysgc",
  53. "name": "毒蛇爬虫",
  54. "type": 1,
  55. "api": "http://pandown.pro/mao/ysgc.php"
  56. },
  57. {
  58. "key": "tv552",
  59. "name": "迪迪爬虫",
  60. "type": 1,
  61. "api": "http://pandown.pro/mao/tv552.php"
  62. },
  63. {
  64. "key": "兔子窝影院",
  65. "name": "兔子窝影院",
  66. "type": 1,
  67. "api": "http://cj.huimaojia.com:12345/api.php/provide/vod/?ac=list",
  68. "playUrl": "",
  69. "searchable": 1,
  70. "filterable": 0
  71. },
  72. {
  73. "key": "揉子影视",
  74. "name": "楺子影视",
  75. "type": 0,
  76. "api": "https://www.lehootv.com/api.php/provide/vod/at/xml"
  77. },
  78. {
  79. "key": "小小影视",
  80. "name": "小小影视",
  81. "type": 0,
  82. "api": "https://www.mbomovie.com/api.php/provide/vod/at/xml"
  83. },
  84. {
  85. "key": "kk看剧",
  86. "name": "kk看剧",
  87. "type": 0,
  88. "api": "http://www.kkkanju.com/api.php/provide/vod/at/xml"
  89. },
  90. {
  91. "key": "月光影视",
  92. "name": "月光影视",
  93. "type": 0,
  94. "api": "https://www.juhaokan.cc/api.php/provide/vod/at/xml"
  95. },
  96. {
  97. "key":"大海",
  98. "name":"大海",
  99. "type": 0,
  100. "api": "https://www.39kan.com/api.php/provide/vod/at/xml",
  101. "playUrl":"",
  102. "categories":[
  103. "综艺片",
  104. "动漫片",
  105. "动作片",
  106. "喜剧片",
  107. "爱情片",
  108. "科幻片",
  109. "恐怖片",
  110. "剧情片",
  111. "战争片",
  112. "国产剧",
  113. "港台剧",
  114. "日韩剧",
  115. "欧美剧"
  116. ]
  117. },
  118. {
  119. "key": "6U",
  120. "name": "6U",
  121. "type": 1,
  122. "api": "http://zy.ataoju.com/inc/apijson_vod.php?pg=1",
  123. "playUrl": "",
  124. "categories": [
  125. "电影",
  126. "连续剧",
  127. "海外剧",
  128. "综艺",
  129. "动漫",
  130. "少儿频道"
  131. ]
  132. },
  133. {
  134. "key": "1920官采",
  135. "name": "1920官采",
  136. "type": 1,
  137. "api": "http://zy.1920i.com/api.php/provide/vod/",
  138. "playUrl": ""
  139. },
  140. {
  141. "key": "无尽资源",
  142. "name": "无尽资源",
  143. "type": 0,
  144. "api": "https://wuzy9.com/api.php/provide/vod/at/xml",
  145. "playUrl": "",
  146. "categories": []
  147. },
  148. {
  149. "key":"无尽资源",
  150. "name":"无尽资源",
  151. "type":0,
  152. "api":"https://wujinzy.com/api.php/provide/vod/at/xml",
  153. "playUrl":"https://jx.xhswglobal.com/dplayer/?url="
  154. },
  155. {
  156. "key":"M3U8.TV资源",
  157. "name":"影视高清源",
  158. "type":0,
  159. "api":"http://www.zycaiji.net:7788/api.php/provide/vod/at/xml",
  160. "playUrl":"",
  161. "categories":[
  162. "动画片番剧(B站专用)",
  163. "国创(B站专用)",
  164. "电影(B站专用)",
  165. "电视剧(B站专用)",
  166. "综艺",
  167. "动漫",
  168. "动作片",
  169. "喜剧片",
  170. "爱情片",
  171. "科幻片",
  172. "恐怖片",
  173. "剧情片",
  174. "战争片",
  175. "国产剧",
  176. "港台剧",
  177. "日韩剧",
  178. "惊悚片",
  179. "犯罪片",
  180. "冒险片",
  181. "悬疑片",
  182. "动画片",
  183. "武侠片",
  184. "奇幻片",
  185. "纪录片"
  186. ]
  187. },
  188. {
  189. "key":"想看资源",
  190. "name":"想看资源(xml)",
  191. "type":0,
  192. "api":"https://m3u8.xiangkanapi.com/provide/vod/at/xml",
  193. "playUrl":""
  194. },
  195. {
  196. "key":"5060影院",
  197. "name":"5060影院",
  198. "type":0,
  199. "api":"https://app.linzhiyuan.xyz/api.php/provide/vod/at/xml",
  200. "playUrl":""
  201. },
  202. {
  203. "key":"白嫖联盟",
  204. "name":"白嫖联盟",
  205. "type":0,
  206. "api":"https://www.hszbj.net/api.php/provide/vod/at/xml"
  207. },
  208. {
  209. "key": "橘猫影视",
  210. "name": "橘猫影视(优)",
  211. "type": 0,
  212. "api": "http://www.zitv.cc/api.php/provide/vod/at/xml/",
  213. "searchable": 1,
  214. "quickSearch": 1,
  215. "filterable": 0,
  216. "categories": [
  217. "综艺",
  218. "动作片",
  219. "喜剧片",
  220. "爱情片",
  221. "科幻片",
  222. "恐怖片",
  223. "剧情片",
  224. "战争片",
  225. "国产剧",
  226. "港剧",
  227. "日剧",
  228. "欧美剧",
  229. "台剧",
  230. "韩剧",
  231. "其他动漫",
  232. "lun理",
  233. "海外剧",
  234. "纪录片",
  235. "国产动漫",
  236. "日本动漫",
  237. "欧美动漫",
  238. "动画电影",
  239. "篮球",
  240. "足球",
  241. "网球"
  242. ]
  243. },
  244. {
  245. "key":"2345",
  246. "name":"2345官源",
  247. "type":1,
  248. "api":"http://2345.tgzy.cc:1005/api.php/provide/vod/",
  249. "searchable":1,
  250. "quickSearch":1,
  251. "categories":[]
  252. },
  253. {
  254. "key":"百度官方",
  255. "name":"百度官方",
  256. "type":0,
  257. "api":"https://api.apibdzy.com/api.php/provide/vod/at/xml",
  258. "playUrl":""
  259. },
  260. {
  261. "key": "人人迷",
  262. "name": "人人迷(有G)",
  263. "type": 0,
  264. "api": "http://www.zjys.vip/api.php/provide/vod/from/renrenmi/at/xml",
  265. "playUrl": "https://kuba.renrenmi.cc:2266/api/?key=Y6UYLYtjImTCKe98JD&url= ",
  266. "searchable": 1,
  267. "quickSearch":1,
  268. "categories": []
  269. },
  270. {
  271. "key":"土狗",
  272. "name":"搜乐哗优西1905",
  273. "type":0,
  274. "api":"http://vip-02.tgzy.cc/api.php/provide/vod/at/xml",
  275. "searchable":1,
  276. "quickSearch":1,
  277. "filterable":0,
  278. "categories":[
  279. "最新",
  280. "综艺",
  281. "动漫",
  282. "动作片",
  283. "喜剧片",
  284. "恐怖片",
  285. "爱情片",
  286. "科幻片",
  287. "恐怖片",
  288. "剧情片",
  289. "战争片",
  290. "国产剧",
  291. "港台剧",
  292. "日韩剧",
  293. "欧美剧",
  294. "惊悚片",
  295. "犯罪片",
  296. "冒险片",
  297. "悬疑片",
  298. "动画片",
  299. "武侠片",
  300. "奇幻片",
  301. "少儿",
  302. "其他片",
  303. "其他剧"
  304. ]
  305. },
  306. {
  307. "key":"麒麟资源",
  308. "name":"绮丽资源",
  309. "type":0,
  310. "api":"http://www.qilinzyz.com/api.php/provide/vod/at/xml",
  311. "playUrl":""
  312. },
  313. {
  314. "key":"雪人官采",
  315. "name":"雪人官采",
  316. "type":1,
  317. "api":"https://zl.qd234.cn/api.php/provide/vod/?ac=list",
  318. "searchable":1,
  319. "quickSearch":1,
  320. "categories":[]
  321. },
  322. {
  323. "key":"舒渡影视",
  324. "name":"舒渡影视",
  325. "type":1,
  326. "api":"http://www.lovctv.com/api.php/provide/vod/",
  327. "playUrl":"",
  328. "searchable":1,
  329. "quickSearch":1,
  330. "categories":[]
  331. },
  332. {
  333. "key":"星一官采",
  334. "name":"星月蓝光",
  335. "type":0,
  336. "api":"https://gcku.suboyun.vip/api.php/provide/vod/at/xml",
  337. "playUrl":"https://play.xing1.club/dm.php?url="
  338. },
  339. {
  340. "key": "胖猫",
  341. "name": "胖猫",
  342. "type": 0,
  343. "api": "https://www.pangmaotv.com/api.php/provide/vod/at/xml",
  344. "playUrl": ""
  345. },
  346. {
  347. "key":"千寻影视",
  348. "name":"千寻影视",
  349. "type":1,"api":"http://wy.dqyhg.cn/api.php/provide/vod/?ac=list",
  350. "searchable":1,
  351. "quickSearch":1,
  352. "filterable":0,
  353. "categories":[
  354. "电影",
  355. "综艺",
  356. "动漫",
  357. "连续剧",
  358. "动作片",
  359. "喜剧片",
  360. "爱情片",
  361. "科幻片",
  362. "恐怖片",
  363. "剧情片",
  364. "战争片",
  365. "国产剧",
  366. "港台剧",
  367. "日韩剧",
  368. "欧美剧",
  369. "体育赛事",
  370. "格斗摔跤",
  371. "赛车",
  372. "网球",
  373. "篮球",
  374. "足球"
  375. ]
  376. },
  377. { "key":"木偶TV",
  378. "name":"木偶TV(xml)",
  379. "type":0,
  380. "api":"http://vip.muoutv.com/api.php/provide/vod/at/xml"
  381. },
  382. { "key": "爱美剧",
  383. "name": "爱美剧",
  384. "type": 0,
  385. "api": "https://www.meijuxq.com/inc/api.php"
  386. },
  387. {
  388. "key": "九九美剧",
  389. "name": "九九美剧",
  390. "type": 0,
  391. "api": "https://www.999meiju.com/api.php/provide/vod/at/xml",
  392. "playUrl": "http://jx.hao-zsj.cn/vip/?url="
  393. },
  394. {
  395. "key":"聚合资源",
  396. "name":"聚合资源",
  397. "type":0,
  398. "api":"https://ziyuan.juhesys.com/api.php/provide/vod/at/xml"
  399. },
  400. {
  401. "key":"刺桐影视",
  402. "name":"刺桐影视",
  403. "type":0,
  404. "api":"http://tv.cttv.vip/api.php/provide/vod/at/xml"
  405. },
  406. {
  407. "key":"飘花影院",
  408. "name":"飘花影院",
  409. "type":0,
  410. "api":"http://www.2mjtt.com/inc/api.php/provide/vod/at/xml"
  411. },
  412. {
  413. "key": "VIP影视",
  414. "name": "VIP影视",
  415. "type": 0,
  416. "api": "https://www.dianyingn.cc/api.php/provide/vod/at/xml/",
  417. "playUrl": ""
  418. },
  419. {
  420. "key": "多米影视",
  421. "name": "多米影视",
  422. "type": 0,
  423. "api": "http://hdmys1.com/api.php/provide/vod/at/xml",
  424. "playUrl": ""
  425. },
  426. { "key":"大米",
  427. "name":"大米高清(有G)",
  428. "type":1,
  429. "api":"http://dmzyu.com/api.php/provide/vod/from/mim3u8/at/json/",
  430. "searchable":1,
  431. "quickSearch":1,
  432. "categories":[]
  433. },
  434. {
  435. "key":"旋风直链",
  436. "name":"旋风直链",
  437. "type":1,
  438. "api":"https://www.kan365.xyz/api.php/provide/vod/from/xuanfeng",
  439. "playUrl":"",
  440. "searchable":1,
  441. "quickSearch":1,
  442. "categories":[]
  443. },
  444. {
  445. "key":"飞速资源",
  446. "name":"飞速资源",
  447. "type":1,
  448. "api":"https://m3u8.feisuzyapi.com/vod/",
  449. "playUrl":"",
  450. "searchable":1,
  451. "quickSearch":0,
  452. "categories":[]
  453. },
  454. {
  455. "key": "人人影视",
  456. "name": "人人影视",
  457. "type": 0,
  458. "api": "https://kuu.renrenmi.cc/api.php/provide/vod/at/xml",
  459. "playUrl": "https://jx.renrenmi.cc/?url="
  460. },
  461. {
  462. "key":"测试",
  463. "name":"自架源站",
  464. "type":1,
  465. "api":"http://107.150.5.146:39000/maccms10-main/api.php/provide/vod/",
  466. "playUrl":"",
  467. "categories":[]
  468. },
  469. {
  470. "key": "csp_xpath_sigu",
  471. "name": "思古影视",
  472. "type": 3,
  473. "api": "csp_XPath",
  474. "searchable": 1,
  475. "quickSearch": 1,
  476. "filterable": 0,
  477. "ext": "https://wabc.ml/mao/jk/sigu.json"
  478. },
  479. {
  480. "key":"豆瓣云",
  481. "name":"豆瓣云",
  482. "type":0,
  483. "api":"http://api.bdyunzy.com/api.php/provide/vod/at/xml/",
  484. "playUrl":""
  485. },
  486. {
  487. "key":"胖猫",
  488. "name":"胖猫",
  489. "type":0,
  490. "api":"https://www.pangmaotv.com/api.php/provide/vod/at/xml",
  491. "playUrl":""
  492. },
  493. {
  494. "key":"KK看剧",
  495. "name":"KK看剧",
  496. "type":0,
  497. "api":"http://www.kkkanju.com/api.php/provide/vod/at/xml",
  498. "playUrl":"",
  499. "categories":[]
  500. },
  501. { "key":"淘片资源",
  502. "name":"淘片资源",
  503. "type":0,
  504. "api":"https://taopianzy.com/home/cjapi/as/mc10/vod/xml/m3u8",
  505. "playUrl":""
  506. },
  507. {
  508. "key":"北斗资源",
  509. "name":"北斗资源",
  510. "type":1,
  511. "api":"https://api.bdxzyapi.com/api.php/provide/vod?ac=list",
  512. "playUrl":"",
  513. "categories":[]
  514. },
  515. {
  516. "key":"OmoFun动漫",
  517. "name":"OmoFun动漫",
  518. "type":1,
  519. "api":"https://www.omofun.com/api.php/provide/vod/",
  520. "playUrl":"",
  521. "categories":[
  522. "动漫",
  523. "剧场版",
  524. "国产",
  525. "欧美"
  526. ]
  527. },
  528. {
  529. "key": "艾思影视",
  530. "name": "艾思影视",
  531. "type": 1,
  532. "api": "https://www.aitee.cc/api.php/provide/vod/?ac=list",
  533. "categories": [
  534. "电影",
  535. "连续剧",
  536. "综艺",
  537. "动漫"
  538. ]
  539. },
  540. {
  541. "key": "NETFLIXMI",
  542. "name": "奈飞高清",
  543. "type": 1,
  544. "api": "http://shdmv.com/api.php/provide/vod/?ac=list",
  545. "playUrl": "",
  546. "searchable": 1,
  547. "quickSearch":1,
  548. "categories": [
  549. "欧美剧",
  550. "国产剧",
  551. "动作片",
  552. "喜剧片",
  553. "爱情片",
  554. "科幻片",
  555. "恐怖片",
  556. "剧情片",
  557. "战争片",
  558. "港台剧",
  559. "日韩剧",
  560. "综艺",
  561. "动漫"
  562. ]
  563. },
  564. {
  565. "key": "速影",
  566. "name": "速影",
  567. "type": 0,
  568. "api": "https://速影128.xyz/inc/api.php",
  569. "playUrl": "",
  570. "categories": [
  571. "综艺",
  572. "动漫",
  573. "动作片",
  574. "喜剧片",
  575. "爱情片",
  576. "科幻片",
  577. "恐怖片",
  578. "剧情片",
  579. "战争片",
  580. "国产剧",
  581. "纪录片",
  582. "海外剧",
  583. "欧美剧",
  584. "日本剧",
  585. "韩国剧",
  586. "香港剧",
  587. "台湾剧",
  588. "理论片"
  589. ]
  590. },
  591. {
  592. "key": "8k影视{源码}",
  593. "name": "8k影视",
  594. "type": 1,
  595. "api": "http://vip.8kvod.com:888/8kvodapilgxc.php/provide/vod/",
  596. "playUrl": "",
  597. "searchable": 1,
  598. "quickSearch": 0,
  599. "filterable": 1,
  600. "categories": [
  601. "国产剧",
  602. "港台剧",
  603. "日韩剧",
  604. "欧美剧",
  605. "台湾剧",
  606. "综艺",
  607. "动漫",
  608. "动作片",
  609. "喜剧片",
  610. "爱情片",
  611. "科幻片",
  612. "恐怖片",
  613. "剧情片",
  614. "战争片"
  615. ]
  616. },
  617. {
  618. "key": "2A资源站",
  619. "name": "2A资源站",
  620. "type": 1,
  621. "api": "http://zy.zcocc.com/api.php/provide/vod/",
  622. "playUrl": "https://www.2ajx.com/vip.php?url=",
  623. "categories": [
  624. "综艺",
  625. "动作片",
  626. "喜剧片",
  627. "爱情片",
  628. "科幻片",
  629. "恐怖片",
  630. "剧情片",
  631. "战争片",
  632. "国产剧",
  633. "香港剧",
  634. "韩国剧",
  635. "欧美剧",
  636. "微电影",
  637. "纪录片",
  638. "论理片",
  639. "冒险片",
  640. "悬疑片",
  641. "犯罪片",
  642. "灾难片",
  643. "魔幻片",
  644. "青春片",
  645. "音乐片",
  646. "其他片",
  647. "惊悚片",
  648. "动画片",
  649. "奇幻片",
  650. "台湾剧",
  651. "日本剧",
  652. "其他剧",
  653. "国产动漫",
  654. "日本动漫",
  655. "欧美动漫",
  656. "其他动漫"
  657. ]
  658. },
  659. {
  660. "key": "明日资源<源码>",
  661. "name": "明日资源",
  662. "type": 0,
  663. "api": "http://zy.zcocc.com/api.php/provide/vod/at/xml",
  664. "playUrl": "",
  665. "categories": [
  666. "国产剧",
  667. "港台剧",
  668. "日韩剧",
  669. "欧美剧",
  670. "泰国剧",
  671. "综艺片",
  672. "动漫片",
  673. "动作片",
  674. "喜剧片",
  675. "爱情片",
  676. "科幻片",
  677. "恐怖片",
  678. "剧情片",
  679. "战争片",
  680. "纪录片"
  681. ]
  682. },
  683. {
  684. "key": "星辰资源<源码>",
  685. "name": "星辰资源",
  686. "type": 0,
  687. "api": "http://www.kuaibocaiji.com/api.php/provide/vod/from/kbm3u8/at/xml/",
  688. "playUrl": "",
  689. "categories": []
  690. },
  691. {
  692. "key": "清欢资源",
  693. "name": "清欢资源",
  694. "type": 1,
  695. "api": "https://free.qinghuanzy.com/api.php/provide/vod/",
  696. "searchable": 1,
  697. "quickSearch": 1,
  698. "filterable": 0,
  699. "categories": [
  700. "国产剧",
  701. "港台剧",
  702. "日韩剧",
  703. "欧美剧",
  704. "动漫",
  705. "综艺",
  706. "纪录片"
  707. ]
  708. },
  709. {
  710. "key":"飞鱼影视",
  711. "name":"飞鱼影视",
  712. "type":1,
  713. "api":"https://app.feiyu5.com/api.php/provide/vod/",
  714. "playUrl":"",
  715. "categories":[]
  716. },
  717. {
  718. "key": "白熊影院",
  719. "name": "白熊影院(正)",
  720. "type": 0,
  721. "api": "https://www.bxyy5.com/api.php/provide/vod/at/xml",
  722. "searchable": 1,
  723. "quickSearch": 1,
  724. "filterable": 0
  725. },
  726. {
  727. "key": "美剧星球",
  728. "name": "美剧星球",
  729. "type": 0,
  730. "api": "https://www.meijuxq.tv/inc/api.php/provide/vod/at/xml",
  731. "searchable": 1,
  732. "quickSearch": 1,
  733. "filterable": 0,
  734. "categories": [
  735. "魔幻/科幻",
  736. "灵异/惊悚",
  737. "都市/情感",
  738. "犯罪/历史",
  739. "动漫/卡通",
  740. "综艺/记录"
  741. ]
  742. },
  743. {
  744. "key": "星辰资源",
  745. "name": "星辰资源(正)",
  746. "type": 1,
  747. "api": "http://www.zycaiji.net:7788/api.php/provide/vod",
  748. "searchable": 1,
  749. "quickSearch": 1,
  750. "filterable": 0,
  751. "categories": [
  752. "综艺",
  753. "动漫",
  754. "动作片",
  755. "喜剧片",
  756. "爱情片",
  757. "科幻片",
  758. "恐怖片",
  759. "剧情片",
  760. "战争片",
  761. "国产剧",
  762. "港台剧",
  763. "日韩剧",
  764. "惊悚片",
  765. "犯罪片",
  766. "冒险片",
  767. "悬疑片",
  768. "动画片",
  769. "武侠片",
  770. "奇幻片",
  771. "纪录片"
  772. ]
  773. },
  774. {
  775. "key": "KK看剧",
  776. "name": "KK看剧",
  777. "type": 0,
  778. "api": "http://www.kkkanju.com/api.php/provide/vod/at/xml",
  779. "playUrl": "http://jx.hao-zsj.cn/vip/?url=",
  780. "categories": []
  781. },
  782. {
  783. "key": "追剧吧APP",
  784. "name": "追剧吧APP",
  785. "type": 1,
  786. "api": "http://data.zju8.cc:1234/api.php/provide/vod/",
  787. "playUrl":"",
  788. "categories": []
  789. },
  790. {
  791. "key": "小蜻蜓APP",
  792. "name": "小蜻蜓APP",
  793. "type": 1,
  794. "api": "http://3ketv.com/api.php/provide/vod/",
  795. "playUrl": "",
  796. "categories": [
  797. ]
  798. },
  799. {
  800. "key":"椰子资源",
  801. "name":"椰子资源",
  802. "type":1,
  803. "api":"https://zy.gbxy.net.cn/api.php/provide/vod/",
  804. "playUrl":"",
  805. "searchable":1,
  806. "quickSearch":1,
  807. "categories":[]
  808. },
  809. {
  810. "key":"7788官采",
  811. "name":"7788官采",
  812. "type":0,
  813. "api":"http://www.zycaiji.net:7788/api.php/provide/vod/at/xml/"
  814. },
  815. {
  816. "key":"网民电影",
  817. "name":"网民电影",
  818. "type":1,
  819. "api":"https://www.prinevillesda.org/api.php/provide/vod/",
  820. "playUrl":"",
  821. "searchable":1,
  822. "quickSearch":1,
  823. "categories":[]
  824. },
  825. {
  826. "key":"白熊影视",
  827. "name":"白熊影视",
  828. "type":0,
  829. "api":"https://www.bxyy5.com/api.php/provide/vod/at/xml"
  830. },
  831. {
  832. "key":"人人资源",
  833. "name":"人人资源",
  834. "type":0,
  835. "api":"https://www.rrzyw.cc/api.php/provide/vod/at/xml"
  836. },
  837. {
  838. "key":"卧龙资源",
  839. "name":"卧龙资源",
  840. "type":0,
  841. "api":"https://www.wolongzyw.com/api.php/provide/vod/at/xml"
  842. },
  843. {
  844. "key":"天天看",
  845. "name":"天天看",
  846. "type":0,
  847. "api":"https://www.ttky8.com/api.php/provide/vod/at/xml"
  848. },
  849. {
  850. "key": "淘片资源",
  851. "name": "淘片资源",
  852. "type": 0,
  853. "api": "https://taopianapi.com/home/cjapi/as/mc/vod/xml/m3u8",
  854. "playUrl": ""
  855. },
  856. {
  857. "key": "快播云",
  858. "name": "快播云(广告)",
  859. "type": 0,
  860. "api": "http://www.kuaibozy.com/api.php/provide/vod/at/xml/",
  861. "searchable": 1,
  862. "quickSearch": 1,
  863. "filterable": 0,
  864. "categories": [
  865. "国产剧",
  866. "港台剧",
  867. "日韩剧",
  868. "欧美剧",
  869. "泰剧",
  870. "综艺",
  871. "动漫",
  872. "动作片",
  873. "喜剧片",
  874. "爱情片",
  875. "科幻片",
  876. "恐怖片",
  877. "剧情片",
  878. "战争片",
  879. "纪录片"
  880. ]
  881. },
  882. {
  883. "key":"萌果资源",
  884. "name":"萌果资源",
  885. "type":0,
  886. "api":"http://api.appearoo.top/api.php/provide/vod/at/xml/",
  887. "playUrl":"",
  888. "searchable":1,
  889. "quickSearch":1,
  890. "filterable":0,
  891. "categories":[
  892. "综艺",
  893. "动漫",
  894. "动作片",
  895. "喜剧片",
  896. "爱情片",
  897. "科幻片",
  898. "恐怖片",
  899. "剧情片",
  900. "战争片",
  901. "国产剧",
  902. "港台剧",
  903. "日韩剧",
  904. "欧美剧",
  905. "海外剧",
  906. "动画片",
  907. "纪录片"
  908. ]
  909. },
  910. {
  911. "key": "天空资源",
  912. "name": "天空资源(优,广告)",
  913. "type": 0,
  914. "api": "https://api.tiankongapi.com/api.php/provide/vod/at/xml/from/tkm3u8/",
  915. "searchable": 1,
  916. "quickSearch": 1,
  917. "filterable": 0,
  918. "categories": [
  919. "动作片",
  920. "喜剧片",
  921. "爱情片",
  922. "科幻片",
  923. "恐怖片",
  924. "剧情片",
  925. "战争片",
  926. "惊悚片",
  927. "犯罪片",
  928. "动漫片",
  929. "国产剧",
  930. "韩国剧",
  931. "香港剧",
  932. "台湾剧",
  933. "美国剧",
  934. "日本剧",
  935. "海外剧",
  936. "纪录片",
  937. "国产动漫",
  938. "日本动漫",
  939. "欧美动漫",
  940. "海外动漫",
  941. "大陆综艺",
  942. "日韩综艺",
  943. "港台综艺",
  944. "欧美综艺"
  945. ]
  946. },
  947. {
  948. "key": "爱看美剧",
  949. "name": "爱看美剧(良)",
  950. "type": 0,
  951. "api": "https://www.akmeiju.com/api.php/provide/vod/at/xml",
  952. "searchable": 1,
  953. "quickSearch": 1,
  954. "filterable": 0,
  955. "categories": [
  956. "美剧",
  957. "魔幻/科幻",
  958. "惊悚/恐怖",
  959. "都市/喜剧",
  960. "犯罪/动作",
  961. "韩剧/日剧",
  962. "韩剧",
  963. "日剧",
  964. "动作"
  965. ]
  966. },
  967. {
  968. "key":"麒麟资源",
  969. "name":"麒麟资源",
  970. "type":0,
  971. "api":"http://www.qilinzyz.com/api.php/provide/vod/at/xml"
  972. },
  973. {
  974. "key":"无极影视",
  975. "name":"无极影视",
  976. "type":0,
  977. "api":"http://wujiys.com/api.php/provide/vod/at/xml"
  978. },
  979. {
  980. "key":"39影视",
  981. "name":"39影视",
  982. "type":0,
  983. "api":"https://www.39kan.com/api.php/provide/vod/at/xml/",
  984. "playUrl":"",
  985. "categories":[]
  986. },
  987. {
  988. "key":"神马影院",
  989. "name":"神马影院",
  990. "type":0,
  991. "api":"http://www.zitv.cc/api.php/provide/vod/at/xml/"
  992. },
  993. {
  994. "key": "番茄资源",
  995. "name": "番茄资源",
  996. "type": 0,
  997. "api": "http://api.fqzy.cc/api.php/provide/vod/at/xml/",
  998. "playUrl": "https://jx.fqzy.cc/jx.php?url=",
  999. "categories": [
  1000. ]
  1001. },
  1002. {
  1003. "key":"百度采集",
  1004. "name":"百度采集",
  1005. "type":1,
  1006. "api":"https://api.bdjx.vip/api.php/provide/vod/"
  1007. },
  1008. {
  1009. "key":"TVB云",
  1010. "name":"TVB云",
  1011. "type":0,
  1012. "api":"http://www.tvyb02.com/api.php/provide/vod/at/xml",
  1013. "playUrl": "http://jx.hao-zsj.cn/vip/?url="
  1014. },
  1015. {
  1016. "key": "天龙影院",
  1017. "name": "天龙影院(广告,优)",
  1018. "type": 0,
  1019. "api": "http://www.tl86dy.com/api.php/provide/vod/at/xml",
  1020. "searchable": 1,
  1021. "quickSearch": 1,
  1022. "filterable": 0
  1023. },
  1024. {
  1025. "key":"爱搜影视",
  1026. "name":"爱搜影视",
  1027. "type":0,
  1028. "api":"https://www.yunbangcheng.com/api.php/provide/vod/at/xml"
  1029. },
  1030. {
  1031. "key":"青莲资源",
  1032. "name":"青莲资源",
  1033. "type":0,
  1034. "api":"https://www.qinglyy.com/api.php/provide/vod/at/xml"
  1035. },
  1036. {
  1037. "key":"酷点资源",
  1038. "name":"酷点资源",
  1039. "type":0,
  1040. "api":"https://kudian8.com/api.php/provide/vod?ac=list"
  1041. },
  1042. {
  1043. "key":"百度资源",
  1044. "name":"百度资源",
  1045. "type":1,
  1046. "api":"https://api.apibdzy.com/api.php/provide/vod?ac=list",
  1047. "playUrl":"",
  1048. "categories":[]
  1049. },
  1050. {
  1051. "key":"三零资源",
  1052. "name":"三零资源(EXO解码)",
  1053. "type":1,
  1054. "api":"http://api.000zy.com/provide/vod/",
  1055. "categories":[]
  1056. },
  1057. {
  1058. "key":"韩剧资源",
  1059. "name":"韩剧资源",
  1060. "type":0,
  1061. "api":"http://www.hanjuzy.com/inc/api.php",
  1062. "playUrl":"https://jx.aidouer.net/?url="
  1063. },
  1064. {
  1065. "key":"乐活影视",
  1066. "name":"乐活影视",
  1067. "type":0,
  1068. "api":"https://lehootv.com/api.php/provide/vod/at/xml"
  1069. },
  1070. {
  1071. "key":"随便看",
  1072. "name":"随便看",
  1073. "type":0,
  1074. "api":"https://www.sbkdy.com/inc/api.php"
  1075. },
  1076. {
  1077. "key":"百搜资源",
  1078. "name":"百搜资源",
  1079. "type":0,
  1080. "api":"https://vip.baisou.ltd/api.php/provide/vod/at/xml"
  1081. },
  1082. {
  1083. "key":"09蓝光影视",
  1084. "name":"09蓝光影视",
  1085. "type":0,
  1086. "api":"https://09tv.top/api.php/provide/vod/at/xml",
  1087. "filterable":1
  1088. },
  1089. {
  1090. "key":"lehoo资源",
  1091. "name":"lehoo资源",
  1092. "type":0,
  1093. "api":"https://www.lehootv.com/api.php/provide/vod/at/xml"
  1094. },
  1095. {
  1096. "key":"灵智云",
  1097. "name":"灵智云",
  1098. "type":0,
  1099. "api":"https://app.linzhiyuan.xyz/api.php/provide/vod/at/xml"
  1100. },
  1101. {
  1102. "key":"爪可可",
  1103. "name":"爪可可",
  1104. "type":0,
  1105. "api":"https://www.zwcoco.com/api.php/provide/vod/at/xml"
  1106. },
  1107. {
  1108. "key":"77电影",
  1109. "name":"77电影",
  1110. "type":0,
  1111. "api":"https://www.77diany.com/api.php/provide/vod/at/xml"
  1112. },
  1113. {
  1114. "key":"播放吧",
  1115. "name":"播放吧",
  1116. "type":0,
  1117. "api":"https://www.bofangya.com/api.php/provide/vod/at/xml"
  1118. },
  1119. {
  1120. "key":"清欢授权",
  1121. "name":"清欢授权",
  1122. "type":1,
  1123. "api":"https://www.qinghuanzy.com/qinghuan.php/provide/vod/?token=m7DJcblgDs",
  1124. "playUrl":"",
  1125. "searchable":1,
  1126. "quickSearch":1,
  1127. "categories":[]
  1128. },
  1129. {
  1130. "key":"飞鱼",
  1131. "name":"飞鱼",
  1132. "type":0,
  1133. "api":"https://app.feiyu5.com/api.php/provide/vod/at/xml/"
  1134. },
  1135. {
  1136. "key":"黄河影视",
  1137. "name":"黄河影视",
  1138. "type":1,
  1139. "api":"http://i.ledu8.cn/api.php/provide/vod/at/xml"
  1140. },
  1141. {
  1142. "key":"3号港剧",
  1143. "name":"3号港剧",
  1144. "type":0,
  1145. "api":"https://www.hktv03.com/api.php/provide/vod/at/xml"
  1146. },
  1147. {
  1148. "key":"想看资源",
  1149. "name":"想看资源",
  1150. "type":1,
  1151. "api":"https://m3u8.xiangkanapi.com/provide/vod/?ac=list",
  1152. "playUrl":"https://lyw28.com/m3u8/?url="
  1153. },
  1154. {
  1155. "key": "8k影视",
  1156. "name": "8k影视",
  1157. "type": 0,
  1158. "api": "http://vip.8kvod.com:888/8kvodapilgxc.php/provide/vod/at/xml"
  1159. },
  1160. {
  1161. "key":"趣看视频",
  1162. "name":"趣看视频",
  1163. "type":0,
  1164. "api":"http://qkmp4.cn/api.php/provide/vod/at/xml/"
  1165. },
  1166. {
  1167. "key":"速更资源",
  1168. "name":"速更资源",
  1169. "type":1,
  1170. "api":"https://sugengzy.cn/api.php/provide/vod/",
  1171. "playUrl":"",
  1172. "searchable":1,
  1173. "quickSearch":1,
  1174. "categories":[]
  1175. },
  1176. {
  1177. "key": "启灵资源",
  1178. "name": "启灵资源(正)",
  1179. "type": 0,
  1180. "api": "http://www.qilinzyz.com/api.php/provide/vod/at/xml",
  1181. "searchable": 1,
  1182. "quickSearch": 1,
  1183. "filterable": 0,
  1184. "categories": [
  1185. "动作片",
  1186. "喜剧片",
  1187. "爱情片",
  1188. "科幻片",
  1189. "恐怖片",
  1190. "剧情片",
  1191. "战争片",
  1192. "惊悚片",
  1193. "犯罪片",
  1194. "冒险片",
  1195. "悬疑片",
  1196. "动画片",
  1197. "武侠片",
  1198. "奇幻片",
  1199. "纪录片",
  1200. "国产剧",
  1201. "港台剧",
  1202. "日韩剧",
  1203. "欧美剧",
  1204. "综艺",
  1205. "动漫",
  1206. "电影(B站)",
  1207. "电视剧(B站)",
  1208. "番剧(B站)",
  1209. "国创(B站)"
  1210. ]
  1211. },
  1212. {
  1213. "key": "奈菲迷授权",
  1214. "name": "VV电视",
  1215. "type": 1,
  1216. "api": "https://vvdy.org/api.php/provide/vod/?ac=list",
  1217. "playUrl": "https://svip.naifeimi.com/nfm/?url=",
  1218. "searchable": 1,
  1219. "quickSearch": 1,
  1220. "filterable": 0
  1221. },
  1222. {
  1223. "key":"比邻影视",
  1224. "name":"比邻影视",
  1225. "type":1,
  1226. "api":"http://0hzy.cn:9990/api.php/provide/vod/?ac=list"
  1227. },
  1228. {
  1229. "key":"快看客栈",
  1230. "name":"快看客栈",
  1231. "type":1,
  1232. "api":"https://www.vp1127.com/api.php/provide/vod/",
  1233. "playUrl":"",
  1234. "searchable":1,
  1235. "quickSearch":1,
  1236. "categories":[]
  1237. },
  1238. {
  1239. "key":"影世界",
  1240. "name":"影世界",
  1241. "type":0,
  1242. "api":"http://video.yingworld.vip/api.php/provide/vod/at/xml",
  1243. "playUrl":""
  1244. },
  1245. {
  1246. "key": "海艺影院",
  1247. "name": "海艺影院(秒开)",
  1248. "type": 0,
  1249. "api": "https://www.hszbj.net/api.php/provide/vod/at/xml",
  1250. "searchable": 1,
  1251. "quickSearch": 1,
  1252. "filterable": 0,
  1253. "categories": [
  1254. "电影",
  1255. "动漫",
  1256. "综艺",
  1257. "连续剧"
  1258. ]
  1259. },
  1260. {
  1261. "key":"MBO影视",
  1262. "name":"MBO影视",
  1263. "type":0,
  1264. "api":"https://www.mbomovie.com/api.php/provide/vod/at/xml"
  1265. },
  1266. {
  1267. "key":"艾特",
  1268. "name":"艾特",
  1269. "type":0,
  1270. "api":"http://tv.aitesucai.xyz/api.php/provide/vod/at/xml"
  1271. },
  1272. {
  1273. "key":"605资源",
  1274. "name":"605资源",
  1275. "type":0,
  1276. "api":"http://www.605zy.co/inc/api.php/"
  1277. },
  1278. {
  1279. "key":"月光影视",
  1280. "name":"月光影视",
  1281. "type":0,
  1282. "api":"https://www.juhaokan.cc/api.php/provide/vod/at/xml"
  1283. },
  1284. {
  1285. "key":"我爱跟剧",
  1286. "name":"我爱跟剧",
  1287. "type":0,
  1288. "api":"http://www.52gen.com/api.php/provide/vod/at/xml"
  1289. },
  1290. { "key":"YT影视",
  1291. "name":"YT影视",
  1292. "type":1,
  1293. "api":"http://ytys.cc/api.php/provide/vod/",
  1294. "playUrl":"",
  1295. "categories":[]
  1296. },
  1297. {
  1298. "key": "w7tv",
  1299. "name": "w7tv",
  1300. "type": 1,
  1301. "api": "http://w7tv.com/api.php/provide/vod/"
  1302. },
  1303. {
  1304. "key": "电影牛",
  1305. "name": "电影牛",
  1306. "type": 0,
  1307. "api": "https://www.dianyingn.cc/api.php/provide/vod/at/xml/",
  1308. "playUrl": "",
  1309. "categories": [
  1310. "理论片",
  1311. "动作片",
  1312. "喜剧片",
  1313. "爱情片",
  1314. "科幻片",
  1315. "恐怖片",
  1316. "剧情片",
  1317. "战争片",
  1318. "欧美剧",
  1319. "国产剧",
  1320. "港澳剧",
  1321. "韩剧",
  1322. "综艺",
  1323. "动漫",
  1324. "动漫电影",
  1325. "台湾剧",
  1326. "泰剧",
  1327. "纪录片"
  1328. ]
  1329. },
  1330. {
  1331. "key": "八八资源(站点)",
  1332. "name": "八八资源(站点)",
  1333. "type": 0,
  1334. "api": "http://www.88zyw.net/inc/api.php",
  1335. "playUrl": "",
  1336. "categories": [
  1337. "综艺片",
  1338. "动作片",
  1339. "喜剧片",
  1340. "爱情片",
  1341. "科幻片",
  1342. "恐怖片",
  1343. "剧情片",
  1344. "战争片",
  1345. "欧美片",
  1346. "纪录片",
  1347. "国产剧",
  1348. "港台剧",
  1349. "日韩剧",
  1350. "欧美剧",
  1351. "东南亚剧",
  1352. "日本动漫",
  1353. "国产动漫",
  1354. "欧美动漫",
  1355. "里番动漫",
  1356. "论理",
  1357. "性感"
  1358. ]
  1359. },
  1360. {
  1361. "key": "三九影视(站点)",
  1362. "name": "三九影视(站点)",
  1363. "type": 0,
  1364. "api": "https://www.39kan.com/api.php/provide/vod/at/xml",
  1365. "playUrl": "http://jx.hao-zsj.cn/vip/?url=",
  1366. "categories": [
  1367. "综艺片",
  1368. "动漫片",
  1369. "动作片",
  1370. "喜剧片",
  1371. "爱情片",
  1372. "科幻片",
  1373. "恐怖片",
  1374. "剧情片",
  1375. "战争片",
  1376. "国产剧",
  1377. "港台剧",
  1378. "日韩剧",
  1379. "欧美剧"
  1380. ]
  1381. },
  1382. {
  1383. "key": "八九资源",
  1384. "name": "八九资源",
  1385. "type": 0,
  1386. "api": "http://zy.yilans.net:8090/api.php/provide/vod/at/xml/",
  1387. "playUrl":"https://jx.renrenmi.cc/?url=",
  1388. "searchable": 1,
  1389. "quickSearch": 1,
  1390. "filterable": 0,
  1391. "categories": [
  1392. "国产剧",
  1393. "港台剧",
  1394. "日韩剧",
  1395. "欧美剧",
  1396. "泰国剧",
  1397. "综艺片",
  1398. "动漫片",
  1399. "动作片",
  1400. "喜剧片",
  1401. "爱情片",
  1402. "科幻片",
  1403. "恐怖片",
  1404. "战争片",
  1405. "纪录片"
  1406. ]
  1407. },
  1408. {
  1409. "key":"木偶人",
  1410. "name":"木偶人",
  1411. "type":1,
  1412. "api":"http://vip.muoutv.com/api.php/provide/vod/",
  1413. "playUrl":"","searchable":1,"quickSearch":1,"categories":[]
  1414. },
  1415. {
  1416. "key":"6U资源",
  1417. "name":"6U资源",
  1418. "type":1,
  1419. "api":"http://zy.ataoju.com/inc/apijson_vod.php",
  1420. "playUrl":"",
  1421. "searchable":1,
  1422. "quickSearch":0,
  1423. "categories":[]
  1424. },
  1425. {
  1426. "key":"片库",
  1427. "name":"片库",
  1428. "type":0,
  1429. "api":"https://pianku.wang/api.php/provide/vod/at/xml",
  1430. "playUrl":"https://api.jhdyw.vip/?url="
  1431. },
  1432. {
  1433. "key":"乐多采集1",
  1434. "name":"乐多采集1",
  1435. "type":0,
  1436. "api":"http://cj.leduocaiji.com/inc/seacmsapi.php",
  1437. "playUrl":"https://ldy.jx.cn/wp-api/ifr.php?vid="
  1438. },
  1439. {
  1440. "key": "乐多采集2(站点)",
  1441. "name": "乐多采集2(站点)",
  1442. "type": 0,
  1443. "api": "https://cj.leduocaiji.com/inc/api.php",
  1444. "playUrl": "https://api.xxctzy.com/1.php?vid=",
  1445. "categories": [
  1446. "综艺片",
  1447. "动作片",
  1448. "喜剧片",
  1449. "爱情片",
  1450. "科幻片",
  1451. "恐怖片",
  1452. "剧情片",
  1453. "战争片",
  1454. "纪录片",
  1455. "国产剧",
  1456. "香港剧",
  1457. "日本剧",
  1458. "欧美剧",
  1459. "台湾剧",
  1460. "韩国剧",
  1461. "海外剧",
  1462. "动画电影",
  1463. "其他动漫",
  1464. "国产动漫",
  1465. "日本动漫",
  1466. "欧美动漫",
  1467. "体育赛事",
  1468. "篮球赛事",
  1469. "足球赛事",
  1470. "网球赛事"
  1471. ]
  1472. },
  1473. {
  1474. "key":"乐多资源",
  1475. "name":"乐多资源",
  1476. "type":0,
  1477. "api":"http://api.leduosj.com/inc/api.php",
  1478. "playUrl":"https://ldy.jx.cn/wp-api/ifr.php?vid="
  1479. },
  1480. {
  1481. "key": "U酷资源",
  1482. "name": "U酷资源",
  1483. "type": 1,
  1484. "api": "http://ukuzy.com/api.php/provide/vod?ac=list"
  1485. },
  1486. {
  1487. "key": "天堂资源",
  1488. "name": "天堂资源(正)",
  1489. "type": 0,
  1490. "api": "http://vipmv.cc/api.php/provide/vod/at/xml",
  1491. "searchable": 1,
  1492. "quickSearch": 1,
  1493. "filterable": 0,
  1494. "categories": [
  1495. "国产剧",
  1496. "港台剧",
  1497. "日韩剧",
  1498. "欧美剧",
  1499. "泰剧",
  1500. "综艺",
  1501. "动漫",
  1502. "动作片",
  1503. "喜剧片",
  1504. "爱情片",
  1505. "科幻片",
  1506. "恐怖片",
  1507. "剧情片",
  1508. "战争片",
  1509. "纪录片"
  1510. ]
  1511. },
  1512. {
  1513. "key":"淘片资源",
  1514. "name":"淘片资源",
  1515. "type":0,
  1516. "api":"https://taopianzy.com/home/cjapi/as/vod/xml"
  1517. },
  1518. {
  1519. "key":"BL视频",
  1520. "name":"BL视频",
  1521. "type":0,
  1522. "api":"https://bljiex.com/api.php/provide/vod/at/xml"
  1523. },
  1524. {
  1525. "key":"1905",
  1526. "name":"1905",
  1527. "type":0,
  1528. "api":"http://zy.yilans.net:8090/api.php/provide/vod/from/m1905/at/xml/",
  1529. "playUrl":"http://api.u1o.net/?url="
  1530. },
  1531. {
  1532. "key": "芒果",
  1533. "name": "芒果",
  1534. "type": 0,
  1535. "api":"http://zy.yilans.net:8090/api.php/provide/vod/from/mgtv/at/xml",
  1536. "categories": [
  1537. ]
  1538. },
  1539. {
  1540. "key": "搜狐",
  1541. "name": "搜狐",
  1542. "type": 0,
  1543. "api":"http://zy.yilans.net:8090/api.php/provide/vod/from/sohu/at/xml",
  1544. "categories": [
  1545. ]
  1546. },
  1547. {
  1548. "key": "奇艺",
  1549. "name": "奇艺",
  1550. "type": 0,
  1551. "api":"http://zy.yilans.net:8090/api.php/provide/vod/from/qiyi/at/xml",
  1552. "categories": [
  1553. ]
  1554. },
  1555. {
  1556. "key": "优酷",
  1557. "name": "优酷",
  1558. "type": 0,
  1559. "api":"http://zy.yilans.net:8090/api.php/provide/vod/from/youku/at/xml",
  1560. "categories": [
  1561. ]
  1562. },
  1563. {
  1564. "key": "腾讯",
  1565. "name": "腾讯",
  1566. "type": 0,
  1567. "api":"http://zy.yilans.net:8090/api.php/provide/vod/from/qq/at/xml",
  1568. "categories": [
  1569. ]
  1570. },
  1571. {
  1572. "key": "PPTV",
  1573. "name": "PPTV",
  1574. "type": 0,
  1575. "api":"http://zy.yilans.net:8090/api.php/provide/vod/from/pptv/at/xml",
  1576. "categories": [
  1577. ]
  1578. },
  1579. {
  1580. "key": "乐视",
  1581. "name": "乐视",
  1582. "type": 0,
  1583. "api":"http://zy.yilans.net:8090/api.php/provide/vod/from/letv/at/xml",
  1584. "categories": [
  1585. ]
  1586. },
  1587. {
  1588. "key": "咪咕",
  1589. "name": "咪咕",
  1590. "type": 0,
  1591. "api":"http://zy.yilans.net:8090/api.php/provide/vod/from/migu/at/xml",
  1592. "categories": [
  1593. ]
  1594. },
  1595. {
  1596. "key": "哔哩",
  1597. "name": "哔哩",
  1598. "type": 0,
  1599. "api":"http://zy.yilans.net:8090/api.php/provide/vod/from/bilibili/at/xml",
  1600. "categories": [
  1601. ]
  1602. },
  1603. {
  1604. "key": "全网",
  1605. "name": "全网",
  1606. "type": 0,
  1607. "api": "http://zy.yilans.net:8090/api.php/provide/vod/at/xml",
  1608. "playUrl": "",
  1609. "categories": [
  1610. ]
  1611. },
  1612. {
  1613. "key":"若欣",
  1614. "name":"若欣",
  1615. "type":0,
  1616. "api":"http://rxiptv.ruoxinew.com/api.php/provide/vod/at/xml"
  1617. },
  1618. {
  1619. "key":"i71",
  1620. "name":"i71",
  1621. "type":0,
  1622. "api":"https://www.i71ys.com/api.php/provide/vod/at/xml"
  1623. },
  1624. {
  1625. "key":"网民电影",
  1626. "name":"网民电影",
  1627. "type":0,
  1628. "api":"https://www.prinevillesda.org/api.php/provide/vod/at/xml"
  1629. },
  1630. {
  1631. "key": "嗨哆咪影视",
  1632. "name": "嗨哆咪影视",
  1633. "type": 1,
  1634. "api": "http://hdmys1.com/api.php/provide/vod/"
  1635. },
  1636. {
  1637. "key":"爱搜影院",
  1638. "name":"爱搜影院",
  1639. "type":0,
  1640. "api":"http://yunbangcheng.com/api.php/provide/vod/at/xml"
  1641. },
  1642. {
  1643. "key":"英皇影城资源",
  1644. "name":"英皇影城资源",
  1645. "type":0,
  1646. "api":"https://www.yhyczy.com/api.php/provide/vod/at/xml"
  1647. },
  1648. {
  1649. "key":"爱蛋",
  1650. "name":"爱蛋",
  1651. "type":0,
  1652. "api":"https://lovedan.net/api.php/provide/vod/at/xml"
  1653. },
  1654. {
  1655. "key":"酷点m3u8",
  1656. "name":"酷点m3u8",
  1657. "type":0,
  1658. "api":"https://api.kuapi.cc/api.php/provide/vod/from/kdm3u8/at/xml"
  1659. },
  1660. {
  1661. "key":"零玖影视",
  1662. "name":"零玖影视",
  1663. "type":0,
  1664. "api":"https://09tv.top/api.php/provide/vod/at/xml"
  1665. },
  1666. {
  1667. "key":"侦探",
  1668. "name":"侦探",
  1669. "type":0,
  1670. "api":"http://ys.huangguay.com/api.php/provide/vod/at/xml/"
  1671. },
  1672. {
  1673. "key":"八戒采集",
  1674. "name":"八戒采集",
  1675. "type":0,
  1676. "api":"http://cj.bajiecaiji.com/inc/bjm3u8.php"
  1677. },
  1678. {
  1679. "key":"8090",
  1680. "name":"8090",
  1681. "type":0,
  1682. "api":"http://zy.yilans.net:8090/api.php/provide/vod/at/xml/"
  1683. },
  1684. {
  1685. "key":"88",
  1686. "name":"88",
  1687. "type":0,
  1688. "api":"http://www.88zy.live/inc/api.php",
  1689. "playUrl":""
  1690. },
  1691. {
  1692. "key":"飘花电影",
  1693. "name":"飘花电影",
  1694. "type":0,
  1695. "api":"http://www.zzrhgg.com/api.php/provide/vod/at/xml"
  1696. },
  1697. {
  1698. "key": "*晓峰影视",
  1699. "name": "*晓峰影视",
  1700. "type": 0,
  1701. "api": "http://api.xxcr.tk/api.php/provide/vod/at/xml",
  1702. "searchable": 1,
  1703. "quickSearch": 1,
  1704. "filterable": 0,
  1705. "categories": [
  1706. "国产剧",
  1707. "港台剧",
  1708. "日韩剧",
  1709. "欧美剧",
  1710. "综艺",
  1711. "动漫",
  1712. "动作片",
  1713. "科幻片",
  1714. "恐怖片",
  1715. "剧情片",
  1716. "战争片",
  1717. "喜剧片",
  1718. "爱情片"
  1719. ]
  1720. },
  1721. {
  1722. "key": "人人迷",
  1723. "name": "人人迷",
  1724. "type": 1,
  1725. "api": "https://kuu.renrenmi.cc/api.php/provide/vod/?ac=list",
  1726. "playUrl": "https://jx.renrenmi.cc/?url=",
  1727. "searchable": 1,
  1728. "quickSearch": 1,
  1729. "filterable": 1,
  1730. "categories": [
  1731. "动作片",
  1732. "喜剧片",
  1733. "爱情片",
  1734. "科幻片",
  1735. "剧情片",
  1736. "战争片",
  1737. "恐怖片",
  1738. "国产剧",
  1739. "港台剧",
  1740. "日韩剧",
  1741. "欧美剧",
  1742. "其他剧",
  1743. "综艺",
  1744. "动漫"
  1745. ]
  1746. },
  1747. {
  1748. "key": "滴哩TV",
  1749. "name": "滴哩TV",
  1750. "type": 1,
  1751. "api": "http://api.diliktv.xyz/api.php/provide/vod/?ac=list",
  1752. "categories": [
  1753. "电影",
  1754. "连续剧",
  1755. "综艺",
  1756. "动漫",
  1757. "动作片",
  1758. "喜剧片",
  1759. "爱情片",
  1760. "科幻片",
  1761. "恐怖片",
  1762. "剧情片",
  1763. "战争片",
  1764. "国产剧",
  1765. "港台剧",
  1766. "日韩剧",
  1767. "欧美剧",
  1768. "犯罪片",
  1769. "纪录片",
  1770. "悬疑片",
  1771. "奇幻片"
  1772. ]
  1773. },
  1774. {
  1775. "key": "橘猫影视",
  1776. "name": "橘猫影视_M",
  1777. "type": 1,
  1778. "api": "http://www.zitv.cc/api.php/provide/vod/at/xml/",
  1779. "playUrl": "",
  1780. "categories": [
  1781. "电影",
  1782. "连续剧",
  1783. "综艺",
  1784. "动作片",
  1785. "喜剧片",
  1786. "爱情片",
  1787. "科幻片",
  1788. "恐怖片",
  1789. "剧情片",
  1790. "战争片",
  1791. "国产剧",
  1792. "港剧",
  1793. "日剧",
  1794. "欧美剧",
  1795. "台剧",
  1796. "韩剧",
  1797. "海外剧",
  1798. "纪录片"
  1799. ]
  1800. },
  1801. {
  1802. "key": "追剧吧",
  1803. "name": "追剧吧",
  1804. "type": 1,
  1805. "api": "http://www.huaxiab.com/api.php/provide/vod/at/xml",
  1806. "playUrl": "",
  1807. "categories": [
  1808. "电影",
  1809. "综艺",
  1810. "动漫",
  1811. "动作片",
  1812. "喜剧片",
  1813. "爱情片",
  1814. "科幻片",
  1815. "恐怖片",
  1816. "剧情片",
  1817. "战争片",
  1818. "国产剧",
  1819. "港台剧",
  1820. "日韩剧",
  1821. "欧美剧",
  1822. "悬疑片",
  1823. "灾难片",
  1824. "犯罪片",
  1825. "其他片",
  1826. "泰国剧",
  1827. "论理片"
  1828. ]
  1829. }
  1830. ],
  1831. "lives": [{
  1832. "group": "share",
  1833. "channels": [{
  1834. "name": "斗鱼",
  1835. "urls": ["http://dyscdnali1.douyucdn.cn/live/122402rK7MO9bXSq.flv?uuid="]
  1836. },
  1837. {"name":"中国天气","urls":["http://39.135.230.71/ott.fj.chinamobile.com/PLTV/88888888/224/3221227005/index.m3u8"]}
  1838. ]}, {
  1839. "group": "CCTV",
  1840. "channels": [{
  1841. "name": "CCTV-1",
  1842. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225618/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225918/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225762/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226016/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226834/48356507.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225804/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv1/HD-8000k-1080P-cctv1","http://yinhe-live.yinhe.vs.rxip.sc96655.com/live/CCTV-1H265_4000.m3u8","http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225777/1/index.m3u8?fmt=ts2hls","http://39.134.24.24/PLTV/88888888/224/3221225684/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225829/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225652/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221226024/index.m3u8", "http://39.135.34.150:8080/000000001000/1000000001000021973/1.m3u8?xtkg", "http://39.134.115.163:8080/PLTV/88888910/224/3221225642/index.m3u8", "http://host496323.us.ooqr.com/pltv/gz.php?id=cctv-1", "http://39.135.138.58:18890/PLTV/88888888/224/3221225642/index.m3u8", "http://39.134.39.4/PLTV/88888888/224/3221226247/index.m3u8", "http://39.134.66.110/PLTV/88888888/224/3221225816/index.m3u8", "http://117.136.154.98/PLTV/88888888/224/3221225663/index.m3u8", "http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221225530/index.m3u8", "http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226226/1.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225726/1/index.m3u8?fmt=ts2hls", "http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227675/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231468/index.m3u8", "http://117.148.179.55/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221228809/index.m3u8", "http://39.135.34.142:8080/000000001000/1000000001000021973/1.m3u8?", "http://124.232.233.14:6610/000000001001/201500000063/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2", "http://coocaa-ynbit-ws.ifengli.com:2381/live/cctv-1hd/1.m3u8", "http://gslbserv.itv.cmvideo.cn:80/1.m3u8?channel-id=ystenlive&Contentid=1000000001000021973&livemode=1&stbId=00000250001B50800001B401420BC069&userToken=&usergroup=", "http://otttv.bj.chinamobile.com/PLTV/88888888/224/3221226226/index.m3u8?servicetype=2&icpid=88888888&accounttype=1&limitflux=-1&limitdur=-1&GuardEncType=2&accountinfo=hEQbBsN1cd87ZS1LRd3TXf5LH0Ql8IEhnGwO%2B75IdBOPtEbjPb9jhieBCtTUAr9dv5ZbZ4EessCEDFzP4cGUE71B0UFe79pybuMPoFbNny1A5gXy7m59YoE1AMvcRYl8Pvf6NHAGt8pY%2F1XkpmVDXg%3D%3D%3A20180910182102%2C60D21CD359DA%2C124.129.96.17%2C20180910182102%2C10000100000000050000000002171815%2C0B6786BF2451D83B45BD7E85EAB1B8F7%2C-1%2C1%2C1%2C-1%2C%2C7%2C2201300%2C17%2C%2C4%2CEND","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225618/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225918/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225501/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225642/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-1/1.m3u8","http://cctvalih5ca.v.myalicdn.com/live/cctv1_2/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226416/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226515/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226438/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226563/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226226/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221226564/1.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221227014/index.m3u8","http://39.135.230.69/ott.fj.chinamobile.com/PLTV/88888888/224/3221226995/index.m3u8","http://39.135.230.81/ott.fj.chinamobile.com/PLTV/88888888/224/3221226908/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225922/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225812/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221226624/index.m3u8"]
  1843. }, {
  1844. "name": "CCTV-2",
  1845. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225619/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226655/40417429.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226195/index.m3u8", "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv2/HD-8000k-1080P-cctv2","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225588/index.m3u8","http://yinhe-live.yinhe.vs.rxip.sc96655.com/live/CCTV-2H265_4000.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228118/index.m3u8","http://39.130.202.81:6610/gitv_live/G_CCTV-2-HD/G_CCTV-2-HD/.m3u8","http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225612/1.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228118/index.m3u8","http://202.204.118.254/hls/ch3.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228094/index.m3u8","http://39.130.202.81:6610/gitv_live/G_CCTV-2-HD/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225686/index.m3u8", "http://39.135.138.60:18890/PLTV/88888910/224/3221225643/index.m3u8", "http://39.134.134.88/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226371/1.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225619/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225643/index.m3u8", "http://39.134.39.4/PLTV/88888888/224/3221226220/index.m3u8", "http://39.134.135.81/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226371/1.m3u8", "http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226472/1.m3u8", "http://117.136.154.98/PLTV/88888888/224/3221225502/index.m3u8", "http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227708/index.m3u8", "http://223.110.245.158/ott.js.chinamobile.com/PLTV/3/224/3221227696/index.m3u8", "http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221226993/index.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225706/1/index.m3u8?fmt=ts2hls", "http://223.110.245.148/ott.js.chinamobile.com/PLTV/3/224/3221227543/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231678/index.m3u8", "http://39.135.34.142:8080/000000001000/1000000001000012442/1.m3u8?", "http://coocaa-ynbit-ws.ifengli.com:2381/live/cctv-2hd/1.m3u8", "http://otttv.bj.chinamobile.com/PLTV/88888888/224/3221226230/index.m3u8?servicetype=2&icpid=&accounttype=1&limitflux=-1&limitdur=-1&GuardEncType=2&accountinfo=hEQbBsN1cd87ZS1LRd3TXf5LH0Ql8IEhnGwO%2B75IdBOPtEbjPb9jhieBCtTUAr9dv5ZbZ4EessCEDFzP4cGUE71B0UFe79pybuMPoFbNny03lPQqzzaPom58NeiSUcIEpHb2JZvMEi7Y3xwc0BSosA%3D%3D%3A20180910182829%2C60D21CD359DA%2C124.129.96.17%2C20180910182829%2C10000100000000050000000002171859%2C0B6786BF2451D83B45BD7E85EAB1B8F7%2C-1%2C1%2C1%2C-1%2C%2C7%2C2201300%2C17%2C%2C4%2CEND","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225500/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225643/index.m3u8","http://cctvalih5ca.v.myalicdn.com/live/cctv2_2/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-2/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225934/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226230/1.m3u8","http://39.135.230.80/ott.fj.chinamobile.com/PLTV/88888888/224/3221225800/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225923/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221226915/index.m3u8"]
  1846. }, {
  1847. "name": "CCTV-3",
  1848. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225647/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv3/HD-8000k-1080P-cctv3","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226021/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221226023/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225630/index.m3u8", "https://p4.weizan.cn/1228393605/270303707572166290/live.m3u8", "http://39.135.34.150:8080/000000001000/1000000001000011218/1.m3u8?xtkg", "http://39.135.32.29:6610/000000001000/1000000001000011218/1.m3u8?", "http://140.207.241.2:8080/live/program/live/cctv3hd/2300000/mnf.m3u8", "http://111.63.117.13:6060/030000001000/CCTV-3/CCTV-3.m3u8", "http://117.169.120.160:8080/live/cctv-3/1.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-3/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226471/1.m3u8"]
  1849. }, {
  1850. "name": "CCTV-4",
  1851. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225621/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226633/40417241.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226191/index.m3u8","http://183.207.248.71:80/cntv/live1/cctv-4/cctv-4","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226007/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225662/index.m3u8", "http://39.135.34.150:8080/000000001000/1000000002000031664/1.m3u8?xtkg", "http://117.169.120.160:8080/live/cctv-4/1.m3u8", "http://39.135.32.29:6610/000000001000/1000000002000031664/1.m3u8?", "http://39.134.134.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226335/1.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225621/index.m3u8", "http://117.136.154.86/PLTV/88888888/224/3221225501/index.m3u8", "http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226335/1.m3u8", "http://117.136.154.98/PLTV/88888888/224/3221225501/index.m3u8", "http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227658/index.m3u8", "http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227683/index.m3u8", "http://223.110.243.140/ott.js.chinamobile.com/PLTV/3/224/3221225534/index.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225779/1/index.m3u8?fmt=ts2hls", "http://39.135.34.142:8080/000000001000/1000000002000031664/1.m3u8?", "http://coocaa-ynbit-ws.ifengli.com:2381/live/cctv-4sd/1.m3u8", "http://otttv.bj.chinamobile.com/PLTV/88888888/224/3221226156/index.m3u8?servicetype=2&icpid=&accounttype=1&limitflux=-1&limitdur=-1&GuardEncType=2&accountinfo=hEQbBsN1cd87ZS1LRd3TXf5LH0Ql8IEhnGwO%2B75IdBOPtEbjPb9jhieBCtTUAr9dv5ZbZ4EessCEDFzP4cGUE71B0UFe79pybuMPoFbNny39rqLpWTnoSe3SMCfckAmq2XZ52h1qe0gYx4t9%2FVbXIA%3D%3D%3A20180910183850%2C60D21CD359DA%2C124.129.96.17%2C20180910183850%2C10000100000000050000000001936248%2C0B6786BF2451D83B45BD7E85EAB1B8F7%2C-1%2C1%2C1%2C-1%2C%2C7%2C2201300%2C17%2C%2C4%2CEND","http://cctvalih5ca.v.myalicdn.com/live/cctv4_2/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-4/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226335/1.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221226968/index.m3u8"]
  1852. }, {
  1853. "name": "CCTV-5",
  1854. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225752/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225753/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225754/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225633/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226019/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv5/HD-8000k-1080P-cctv5", "http://39.134.24.24/PLTV/88888888/224/3221226025/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225758/index.m3u8", "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv5/HD-8000k-1080P-cctv5", "http://39.135.34.150:8080/000000001000/1000000001000004794/1.m3u8?xtkg", "http://111.63.117.13:6060/030000001000/CCTV-5/CCTV-5.m3u8", "http://140.207.241.2:8080/live/program/live/cctv5hd/4000000/mnf.m3u8", "http://117.169.120.160:8080/live/cctv-5/1.m3u8", "http://39.134.134.88:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226469/1.m3u8", "http://117.136.154.98/PLTV/88888888/224/3221225780/index.m3u8", "http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227661/index.m3u8", "http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227686/index.m3u8", "http://223.110.243.158/ott.js.chinamobile.com/PLTV/3/224/3221227478/index.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226024/1/index.m3u8?fmt=ts2hls", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226043/1/index.m3u8?fmt=ts2hls", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226248/1/index.m3u8?fmt=ts2hls", "http://39.134.66.110/PLTV/88888888/224/3221225818/index.m3u8", "http://223.110.243.141/ott.js.chinamobile.com/PLTV/3/224/3221227661/index.m3u8", "http://223.110.243.145/ott.js.chinamobile.com/PLTV/3/224/3221227478/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231702/index.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226454/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226469/1.m3u8"]
  1855. }, {
  1856. "name": "CCTV-5+",
  1857. "urls": ["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225603/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225718/index.m3u8", "http://39.134.39.39/TVOD/88888888/224/3221226253/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225649/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225761/index.m3u8", "http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226349/1.m3u8", "http://39.134.134.88:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226458/1.m3u8", "http://117.169.124.46:6410/ysten-businessmobile/live/hdcctv05plus/1.m3u8", "http://39.134.135.81:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226225/1.m3u8", "http://39.134.66.66/PLTV/88888888/224/3221225507/index.m3u8", "http://117.136.154.98/PLTV/88888888/224/3221225512/index.m3u8", "http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227714/index.m3u8", "http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221227381/index.m3u8", "http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221227480/index.m3u8", "http://223.110.245.150/ott.js.chinamobile.com/PLTV/3/224/3221227502/index.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226128/1/index.m3u8?fmt=ts2hls", "http://223.110.243.145/ott.js.chinamobile.com/PLTV/3/224/3221227685/index.m3u8", "http://117.148.179.55/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221228822/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231459/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/hdcctv05plus/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226458/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226225/1.m3u8","http://39.135.230.72/ott.fj.chinamobile.com/PLTV/88888888/224/3221225939/index.m3u8","http://39.135.230.88/ott.fj.chinamobile.com/PLTV/88888888/224/3221226919/index.m3u8"]
  1858. }, {
  1859. "name": "CCTV-6",
  1860. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225650/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225632/index.m3u8","http://183.207.248.71:80/cntv/live1/cctv-6/cctv-6","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226010/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221226027/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225708/index.m3u8", "http://140.207.241.2:8080/live/program/live/cctv6hd/2300000/mnf.m3u8", "http://39.135.32.29:6610/000000001000/1000000001000016466/1.m3u8?","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226393/index.m3u8", "http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225548/index.m3u8", "http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221225548/index.m3u8", "http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221227209/index.m3u8", "http://223.110.243.145/ott.js.chinamobile.com/PLTV/3/224/3221227581/index.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226011/1/index.m3u8?fmt=ts2hls", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226046/1/index.m3u8?fmt=ts2hls", "http://223.110.243.158/ott.js.chinamobile.com/PLTV/3/224/3221227664/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231724/index.m3u8", "http://117.148.179.55/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230685/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-6/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226453/1.m3u8"]
  1861. }, {
  1862. "name": "CCTV-7",
  1863. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225624/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225499/index.m3u8?fmt=ts2hls","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv7/HD-8000k-1080P-cctv7","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225733/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225855/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225768/index.m3u8", "http://39.135.32.29:6610/000000001000/1000000001000017218/1.m3u8?","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226192/index.m3u8", "http://39.135.138.60:18890/PLTV/88888910/224/3221225624/index.m3u8", "http://39.135.138.59:18890/PLTV/88888910/224/3221225644/index.m3u8", "http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226234/1.m3u8", "http://39.135.238.69/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226467/1.m3u8", "http://39.134.66.110/PLTV/88888888/224/3221225671/index.m3u8", "http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227642/index.m3u8", "http://223.110.245.148/ott.js.chinamobile.com/PLTV/3/224/3221225546/index.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225745/1/index.m3u8?fmt=ts2hls", "http://39.134.66.66/PLTV/88888888/224/3221225671/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231633/index.m3u8", "rtsp://183.252.166.199/PLTV/88888888/224/3221226645/40426612.smil","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-7/1.m3u8","http://cctvalih5ca.v.myalicdn.com/live/cctv7_2/index.m3u8","http://111.13.42.47/PLTV/88888888/224/3221226452/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226467/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226234/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225863/1.m3u8"]
  1864. }, {
  1865. "name": "CCTV-8",
  1866. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225635/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225631/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv8/HD-8000k-1080P-cctv8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226008/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221226029/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225666/index.m3u8", "http://39.135.34.150:8080/000000001000/1000000001000003736/1.m3u8?xtkg","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226391/index.m3u8", "http://140.207.241.2:8080/live/program/live/cctv8hd/2300000/mnf.m3u8", "http://117.169.120.160:8080/live/cctv-8/1.m3u8", "http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221227205/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231694/index.m3u8", "http://117.148.179.55/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230737/index.m3u8", "http://223.110.243.164/ott.js.chinamobile.com/PLTV/3/224/3221227667/index.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226005/1/index.m3u8?fmt=ts2hls","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-8/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226451/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226485/1.m3u8"]
  1867. }, {
  1868. "name": "CCTV-9",
  1869. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225626/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225646/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv9/HD-8000k-1080P-cctv9","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225734/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225672/index.m3u8", "http://117.169.120.160:8080/live/cctv-news/1.m3u8", "http://39.134.134.88:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226465/1.m3u8", "http://39.134.66.110/PLTV/88888888/224/3221225676/index.m3u8", "http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221227614/index.m3u8", "http://223.110.243.143/ott.js.chinamobile.com/PLTV/3/224/3221227704/index.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226031/1/index.m3u8?fmt=ts2hls", "http://39.134.134.86:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226236/1.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231697/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-9/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226450/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226236/1.m3u8"]
  1870. }, {
  1871. "name": "CCTV-10",
  1872. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225627/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225496/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225636/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv10/HD-8000k-1080P-cctv10", "http://39.134.24.24/PLTV/88888888/224/3221225823/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225730/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225782/index.m3u8", "http://39.135.34.150:8080/000000001000/7019587760656900133/1.m3u8?xtkg","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226189/index.m3u8", "http://117.169.120.160:8080/live/cctv-10/1.m3u8", "http://39.134.66.110/PLTV/88888888/224/3221225677/index.m3u8", "http://117.136.154.98/PLTV/88888888/224/3221225503/index.m3u8", "http://223.110.243.141/ott.js.chinamobile.com/PLTV/3/224/3221227717/index.m3u8", "http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221225550/index.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225685/1/index.m3u8?fmt=ts2hls", "http://117.148.179.160/PLTV/88888888/224/3221231666/index.m3u8", "rtsp://183.252.166.199/PLTV/88888888/224/3221226718/40417274.smil", "http://coocaa-ynbit-ws.ifengli.com:2381/live/cctv-10hd/1.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-10/1.m3u8","http://cctvalih5ca.v.myalicdn.com/live/cctv10_2/index.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226227/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225868/1.m3u8"]
  1873. }, {
  1874. "name": "CCTV-11",
  1875. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225628/index.m3u8","http://183.207.248.71:80/cntv/live1/n-cctv-11/n-cctv-11","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225597/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225825/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225774/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225628/index.m3u8", "http://39.134.135.81/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226334/1.m3u8", "http://39.134.135.126:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226463/1.m3u8", "http://223.110.243.149/ott.js.chinamobile.com/PLTV/3/224/3221227524/index.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225746/1/index.m3u8?fmt=ts2hls", "http://117.148.179.160/PLTV/88888888/224/3221231711/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-11/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225869/1.m3u8"]
  1876. }, {
  1877. "name": "CCTV-12",
  1878. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225629/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225921/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225495/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225637/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225731/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv12/HD-8000k-1080P-cctv12", "http://39.134.24.24/PLTV/88888888/224/3221225702/index.m3u8", "http://39.135.32.29:6610/000000001000/1000000001000032494/1.m3u8?", "http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226228/1.m3u8", "http://39.134.66.66/PLTV/88888888/224/3221225669/index.m3u8", "http://39.134.135.126:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226462/1.m3u8", "http://117.136.154.98/PLTV/88888888/224/3221225505/index.m3u8", "http://223.110.243.164/ott.js.chinamobile.com/PLTV/3/224/3221227655/index.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225747/1/index.m3u8?fmt=ts2hls", "http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221225556/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-12/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226447/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226462/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226228/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225870/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226190/index.m3u8"]
  1879. }, {
  1880. "name": "CCTV-13",
  1881. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225638/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225638/index.m3u8","rtsp://183.252.176.54:554/PLTV/88888888/224/3221226104/10000100000000060000000002298296_0.smil","http://yinhe-live.yinhe.vs.rxip.sc96655.com/live/CCTV-xw_4000.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228224/index.m3u8","http://219.150.217.47:6610/PLTV1/280/index.m3u8?icpid=dxrm1","http://183.207.248.71:80/cntv/live1/cctv-13/cctv-13","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226011/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225827/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225612/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225650/index.m3u8", "http://39.135.140.104:6610/PLTV/88888888/224/3221225638/2/index.m3u8?fmt=ts2hls", "http://39.135.34.150:8080/000000001000/1000000002000021303/1.m3u8?xtkg", "http://39.135.138.60:18890/PLTV/88888910/224/3221225638/index.m3u8", "http://117.169.120.160:8080/live/cctv-13/1.m3u8", "http://39.135.32.29:6610/000000001000/1000000002000021303/1.m3u8?", "http://39.134.134.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226316/1.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225638/index.m3u8", "http://39.135.238.15:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226316/1.m3u8", "http://39.135.138.59:18890/PLTV/88888910/224/3221225638/index.m3u8", "http://117.136.154.98/PLTV/88888888/224/3221225510/index.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225748/1/index.m3u8?fmt=ts2hls", "http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221227387/index.m3u8", "http://39.135.34.142:8080/000000001000/1000000002000021303/1.m3u8?", "rtsp://183.252.166.199/PLTV/88888888/224/3221226104/10000100000000060000000002298296_0.smil", "http://coocaa-ynbit-ws.ifengli.com:2381/live/cctv-newssd/1.m3u8", "http://otttv.bj.chinamobile.com/PLTV/88888888/224/3221226159/index.m3u8?servicetype=2&icpid=&accounttype=1&limitflux=-1&limitdur=-1&GuardEncType=2&accountinfo=hEQbBsN1cd87ZS1LRd3TXf5LH0Ql8IEhnGwO%2B75IdBOPtEbjPb9jhieBCtTUAr9dv5ZbZ4EessCEDFzP4cGUE71B0UFe79pybuMPoFbNny0UFqokgozs5U5z7uMDGi6ggqbCRmEa1rrlXOkqIpCyQA%3D%3D%3A20180910190104%2C60D21CD359DA%2C124.129.96.17%2C20180910190104%2C10000100000000050000000001936260%2C0B6786BF2451D83B45BD7E85EAB1B8F7%2C-1%2C1%2C1%2C-1%2C%2C7%2C2201300%2C17%2C%2C4%2CEND","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-13/1.m3u8","http://cctvalih5ca.v.myalicdn.com/live/cctv13_2/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221226568/1.m3u8","http://39.135.230.82/ott.fj.chinamobile.com/PLTV/88888888/224/3221226985/index.m3u8"]
  1882. }, {
  1883. "name": "CCTV-14",
  1884. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225639/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225494/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225640/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv14/HD-8000k-1080P-cctv14", "http://39.134.24.24/PLTV/88888888/224/3221225857/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225732/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225658/index.m3u8", "http://39.134.66.66/PLTV/88888888/224/3221225674/index.m3u8", "http://117.169.120.160:8080/live/cctv-14/1.m3u8", "http://39.134.135.81/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226229/1.m3u8", "http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227656/index.m3u8", "http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227693/index.m3u8", "http://117.136.154.86/PLTV/88888888/224/3221225678/index.m3u8", "http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221227201/index.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225727/1/index.m3u8?fmt=ts2hls", "http://223.110.243.141/ott.js.chinamobile.com/PLTV/3/224/3221227693/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231648/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-14/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226445/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226229/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226461/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225872/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226193/index.m3u8"]
  1885. }, {
  1886. "name": "CCTV-15",
  1887. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225641/index.m3u8","http://183.207.248.71:80/cntv/live1/n-cctv-15/n-cctv-15","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225601/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225636/index.m3u8", "http://39.135.34.150:8080/000000001000/1000000002000008163/1.m3u8?xtkg", "http://117.136.154.86/PLTV/88888888/224/3221225508/index.m3u8", "http://117.136.154.98/PLTV/88888888/224/3221225508/index.m3u8", "http://223.110.243.167/ott.js.chinamobile.com/PLTV/3/224/3221227538/index.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225749/1/index.m3u8?fmt=ts2hls", "http://117.148.179.160/PLTV/88888888/224/3221231693/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/cctv-15/1.m3u8","http://111.13.42.47/PLTV/88888888/224/3221226460/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225940/1.m3u8"]
  1888. }, {
  1889. "name": "CCTV-16",
  1890. "urls": ["http://cctvalih5ca.v.myalicdn.com/live/cctv16_2/index.m3u8","http://liveop.cctv.cn/hls/CCTV16HD/playlist.m3u8","http://yinhe-live.yinhe.vs.rxip.sc96655.com/live/CCTV-16_4000.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225919/index.m3u8?fmt=ts2hls","http://yinhe-live.yinhe.vs.rxip.sc96655.com/live/CCTV-16-4K_8000.m3u8","http://59.49.72.48/live.aishang.ctlcdn.com/00000110240388_1/encoder/0/playlist.m3u8?CONTENTID=00000110240388_1","http://110.184.197.25:9981/stream/channelid/1747634698","https://live.olympicchannelchina.cn/aoyun/cctv16_1td.m3u8"]
  1891. }, {
  1892. "name": "CCTV-17",
  1893. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225907/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225908/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225909/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225765/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv17/HD-8000k-1080P-cctv17", "http://39.134.24.24/PLTV/88888888/224/3221225859/index.m3u8", "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv17/HD-8000k-1080P-cctv17", "http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226318/1.m3u8", "http://39.134.66.110/PLTV/88888888/224/3221225708/index.m3u8", "http://117.136.154.98/PLTV/88888888/224/3221225706/index.m3u8", "http://223.110.243.167/ott.js.chinamobile.com/PLTV/3/224/3221227578/index.m3u8", "http://223.110.243.167/ott.js.chinamobile.com/PLTV/3/224/3221227589/index.m3u8", "http://223.110.243.150/ott.js.chinamobile.com/PLTV/3/224/3221227592/index.m3u8", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226027/1/index.m3u8?fmt=ts2hls", "http://39.134.135.82:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226459/1.m3u8", "http://223.110.243.149/ott.js.chinamobile.com/PLTV/3/224/3221227726/index.m3u8", "http://223.110.243.143/ott.js.chinamobile.com/PLTV/3/224/3221227726/index.m3u8", "http://117.148.179.55/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221229765/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231772/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226198/index.m3u8"]
  1894. }, {
  1895. "name": "CCTV风云音乐",
  1896. "urls": ["http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226083/1/index.m3u8?fmt=ts2hls", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225698/1/index.m3u8?fmt=ts2hls"]
  1897. }, {
  1898. "name": "CCTVnx时尚",
  1899. "urls": ["http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226104/1/index.m3u8?fmt=ts2hls", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225699/1/index.m3u8?fmt=ts2hls", "http://223.110.245.152/ott.js.chinamobile.com/PLTV/3/224/3221227026/index.m3u8"]
  1900. }, {
  1901. "name": "CCTV兵器科技",
  1902. "urls": ["http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226111/1/index.m3u8?fmt=ts2hls", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225676/1/index.m3u8?fmt=ts2hls", "http://124.232.231.246:6610/000000001001/201500000313/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"]
  1903. }, {
  1904. "name": "CCTV世界地理",
  1905. "urls": ["http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226071/1/index.m3u8?fmt=ts2hls", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225733/1/index.m3u8?fmt=ts2hls", "http://117.148.179.160/PLTV/88888888/224/3221231537/index.m3u8"]
  1906. }, {
  1907. "name": "CCTV风云足球",
  1908. "urls": ["http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226153/1/index.m3u8?fmt=ts2hls", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225734/1/index.m3u8?fmt=ts2hls", "http://117.148.179.160/PLTV/88888888/224/3221231547/index.m3u8"]
  1909. }, {
  1910. "name": "CCTV央视台球",
  1911. "urls": ["http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226117/1/index.m3u8?fmt=ts2hls", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226156/1/index.m3u8?fmt=ts2hls", "http://117.148.179.160/PLTV/88888888/224/3221231616/index.m3u8"]
  1912. }, {
  1913. "name": "CCTV高尔夫网球",
  1914. "urls": ["http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226114/1/index.m3u8?fmt=ts2hls", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225674/1/index.m3u8?fmt=ts2hls", "http://117.148.179.160/PLTV/88888888/224/3221231619/index.m3u8"]
  1915. }, {
  1916. "name": "CCTV电视指南",
  1917. "urls": ["http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226120/1/index.m3u8?fmt=ts2hls"]
  1918. }, {
  1919. "name": "CCTV央视文化精品",
  1920. "urls": ["http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226100/1/index.m3u8?fmt=ts2hls", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225675/1/index.m3u8?fmt=ts2hls", "http://117.148.179.160/PLTV/88888888/224/3221231561/index.m3u8"]
  1921. }, {
  1922. "name": "CCTV怀旧剧场",
  1923. "urls": ["http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226097/1/index.m3u8?fmt=ts2hls", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225765/1/index.m3u8?fmt=ts2hls", "http://117.148.179.160/PLTV/88888888/224/3221231544/index.m3u8"]
  1924. }, {
  1925. "name": "CCTV第一剧场",
  1926. "urls": ["http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226124/1/index.m3u8?fmt=ts2hls", "http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225702/1/index.m3u8?fmt=ts2hls"]
  1927. }, {
  1928. "name": "CCTV风云剧场",
  1929. "urls": ["http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226107/1/index.m3u8?fmt=ts2hls", "http://117.148.179.160/PLTV/88888888/224/3221231604/index.m3u8"]
  1930. }, {"name":"CGTN","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225747/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225604/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221226980/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225822/index.m3u8"]},
  1931. {"name":"CGTN纪录","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225645/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225602/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225813/index.m3u8"]},{
  1932. "name": "中央新影-发现之旅",
  1933. "urls": ["http://183.207.248.71/gitv/live1/G_FAXIANZL/G_FAXIANZL"]
  1934. }, {
  1935. "name": "中央新影-中学生",
  1936. "urls": ["http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225663/1/index.m3u8?fmt=ts2hls"]
  1937. }, {
  1938. "name": "中国教育1",
  1939. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225661/index.m3u8","http://39.134.134.82:80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226494/1.m3u86", "http://117.136.154.98/PLTV/88888888/224/3221225701/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231714/index.m3u8", "http://39.134.135.81/otttv.bj.chinamobile.com/TVOD/88888888/224/3221225905/1.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225563/index.m3u8", "http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221225909/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231552/index.m3u8"]
  1940. }, {
  1941. "name": "中国教育2",
  1942. "urls": ["http://223.110.246.67/ott.js.chinamobile.com/PLTV/4/224/3221225850/index.m3u8", "http://223.110.243.162/ott.js.chinamobile.com/PLTV/3/224/3221227607/index.m3u8"]
  1943. }, {
  1944. "name": "中国教育3",
  1945. "urls": ["http://223.110.246.68/ott.js.chinamobile.com/PLTV/3/224/3221227018/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231543/index.m3u8"]
  1946. }, {
  1947. "name": "中国教育4",
  1948. "urls": ["http://117.136.154.98/PLTV/88888888/224/3221225802/index.m3u8", "http://223.110.243.143/ott.js.chinamobile.com/PLTV/3/224/3221227657/index.m3u8", "http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226557/1.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231613/index.m3u8", "http://117.148.179.55/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230334/index.m3u8"]
  1949. }]
  1950. }, {
  1951. "group": "卫视",
  1952. "channels": [{
  1953. "name": "湖南卫视",
  1954. "urls": ["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226211/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225745/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225490/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225704/index.m3u8","http://183.207.248.71:80/cntv/live1/hunanstv/hunanstv","http://39.134.24.24/PLTV/88888888/224/3221225616/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225610/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226053/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/hnws-hd/1.m3u8","http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221227698/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225704/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225745/index.m3u8", "rtsp://183.252.166.199/PLTV/88888888/224/3221226082/10000100000000060000000002296924_0.smil", "http://39.134.39.4/PLTV/88888888/224/3221226193/index.m3u8", "http://39.134.66.2/PLTV/88888888/224/3221225506/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231729/index.m3u8", "http://39.134.135.124/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226509/1.m3u8", "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226509/1.m3u8", "http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226509/1.m3u8", "http://39.134.39.37/PLTV/88888888/224/3221226193/index.m3u8", "http://39.134.39.39/PLTV/88888888/224/3221226193/index.m3u8", "http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221228824/index.m3u8", "http://223.110.243.173/PLTV/3/224/3221227220/index.m3u8", "http://39.130.202.114:6610/gitv_live/HNWS-HD/HNWS-HD.m3u8", "http://39.135.34.150:8080/000000001000/1000000001000009115/1.m3u8?xtkg", "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225704/index.m3u8", "http://39.134.66.66/PLTV/88888888/224/3221225506/index.m3u8", "http://117.169.120.160:8080/live/hdhunanstv/1.m3u8", "http://39.135.138.58:18890/PLTV/88888888/224/3221225704/index.m3u8", "http://39.135.34.142:8080/000000001000/1000000001000009115/1.m3u8?","http://117.169.124.36:6610/ysten-businessmobile/live/hdhunanstv/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225799/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226211/index.m3u8"]
  1955. }, {
  1956. "name": "东南卫视",
  1957. "urls": ["http://183.207.248.71:80/cntv/live1/n-dongnanstv/n-dongnanstv","http://39.134.39.37/PLTV/88888888/224/3221226182/index.m3u8", "rtsp://183.252.166.199/PLTV/88888888/224/3221226121/10000100000000060000000002358085_0.smil","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226079/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225735/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/fjws-hd/1.m3u8","http://116.199.5.51:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5a1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=23&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "http://223.110.243.162/ott.js.chinamobile.com/PLTV/3/224/3221227553/index.m3u8", "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225585/index.m3u8?fmt=ts2hls", "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225657/index.m3u8", "http://39.135.138.59:18890/PLTV/88888910/224/3221225657/index.m3u8", "http://39.135.32.29:6610/000000001000/1000000002000009263/1.m3u8?", "http://39.135.34.150:8080/000000001000/1000000002000009263/1.m3u8?xtkg","http://39.130.202.81:6610/gitv_live/G_DONGNAN-HD/G_DONGNAN-HD.m3u8","http://58.211.84.24/liveplay-kk.rtxapp.com/live/program/live/dnwshd/4000000/mnf.m3u8", "http://shbu.live.bestvcdn.com.cn:8080/live/program/live/dnwshd/2300000/mnf.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/dongnanstv/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226517/1.m3u8","http://111.13.42.47/PLTV/88888888/224/3221226496/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225876/1.m3u8"]
  1958. }, {
  1959. "name": "海峡卫视",
  1960. "urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226128/10000100000000060000000002434539_0.smil","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221226977/index.m3u8"]
  1961. }, {
  1962. "name": "广东南方卫视",
  1963. "urls": ["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226216/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226203/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226038/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225871/index.m3u8"]
  1964. }, {
  1965. "name": "广东卫视",
  1966. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225742/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225597/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225701/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226076/index.m3u8","http://183.207.248.71:80/cntv/live1/n-guangdongstv/n-guangdongstv","http://coocaa-ynbit-ws.ifengli.com:2381/live/gdws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225692/index.m3u8","http://39.130.202.81:6610/gitv_live/GDWS-HD/GDWS-HD.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/hdguangdongstv/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226535/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226238/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225803/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226216/index.m3u8"]
  1967. }, {
  1968. "name": "深圳卫视",
  1969. "urls": ["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226205/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225741/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225598/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225700/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225739/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226111/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-shenzhenstv/HD-2500k-1080P-shenzhenstv","http://coocaa-ynbit-ws.ifengli.com:2381/live/szws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225843/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225764/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225590/index.m3u8","http://39.130.202.81:6610/gitv_live/SZWS-HD/SZWS-HD.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/hdshenzhenstv/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226573/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226495/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226245/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225801/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226205/index.m3u8"]
  1970. }, {
  1971. "name": "江苏卫视",
  1972. "urls": ["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226200/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225743/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225488/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225702/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225613/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226099/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-jiangsustv/HD-2500k-1080P-jiangsustv","http://coocaa-ynbit-ws.ifengli.com:2381/live/jsws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225602/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225734/index.m3u8", "rtsp://183.252.166.199/PLTV/88888888/224/3221226038/10000100000000060000000002296879_0.smil","http://39.130.202.81:6610/gitv_live/G_JIANGSU-HD/G_JIANGSU-HD.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/hdjiangsustv/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226506/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226242/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225800/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226200/index.m3u8"]
  1973. }, {
  1974. "name": "东方卫视",
  1975. "urls": ["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226217/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225658/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225489/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225659/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225676/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225835/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/shdfws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225622/index.m3u8","http://39.130.202.81:6610/gitv_live/DFWS-HD/DFWS-HD.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225976/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/hddongfangstv/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226519/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226237/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226261/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226217/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225797/index.m3u8"]
  1976. }, {
  1977. "name": "浙江卫视",
  1978. "urls": ["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226199/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225744/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225491/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225703/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225612/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226056/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225642/index.m3u8", "rtsp://183.252.166.199/PLTV/88888888/224/3221226040/10000100000000060000000002296881_0.smil","http://117.169.124.36:6610/ysten-businessmobile/live/hdzhejiangstv/1.m3u8","http://111.13.42.47/PLTV/88888888/224/3221226492/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226247/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225798/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226199/index.m3u8"]
  1979. }, {
  1980. "name": "北京卫视",
  1981. "urls": ["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226222/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225673/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225600/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225674/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-beijingstv/HD-2500k-1080P-beijingstv","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225728/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226064/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/bjws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225833/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225724/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225646/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225735/index.m3u8", "rtsp://183.252.166.199/PLTV/88888888/224/3221226092/10000100000000060000000002296930_0.smil","http://117.169.124.36:6610/ysten-businessmobile/live/hdbeijingstv/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226441/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226224/1.m3u8","http://111.13.42.47/PLTV/88888888/224/3221226367/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225796/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226222/index.m3u8"]
  1982. }, {
  1983. "name": "四川卫视",
  1984. "urls": ["http://183.207.248.71:80/cntv/live1/n-sichuanstv/n-sichuanstv","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225733/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225532/index.m3u8?fmt=ts2hls","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226096/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/scws-hd/1.m3u8","http://39.130.202.81:6610/gitv_live/G_SICHUAN-HD/G_SICHUAN-HD.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225704/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226407/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226523/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225898/1.m3u8"]
  1985. }, {
  1986. "name": "安徽卫视",
  1987. "urls": ["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226196/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225737/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225691/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-anhuistv/HD-8000k-1080P-anhuistv", "http://39.134.24.24/PLTV/88888888/224/3221225847/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226087/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/ahws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225638/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/anhuistv/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226223/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226499/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225873/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226196/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226203/index.m3u8"]
  1988. }, {
  1989. "name": "兵团卫视",
  1990. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225530/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226200/index.m3u8","http://183.207.248.71:80/cntv/live1/SD-4000k-576P-bingtuanstv/SD-4000k-576P-bingtuanstv","http://coocaa-ynbit-ws.ifengli.com:2381/live/btws-sd/1.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226804/48628997.smil","http://111.13.42.47/PLTV/88888888/224/3221226541/1.m3u8"]
  1991. }, {
  1992. "name": "重庆卫视",
  1993. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225734/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225612/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225692/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-chongqingstv/HD-8000k-1080P-chongqingstv","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226062/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/cqws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225592/index.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226518/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221226569/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226202/index.m3u8"]
  1994. }, {
  1995. "name": "甘肅卫视",
  1996. "urls": ["http://183.207.248.71:80/cntv/live1/n-gansustv/n-gansustv","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225724/index.m3u8", "http://39.134.39.39/PLTV/88888888/224/3221226240/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225714/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225877/1.m3u8"]
  1997. }, {
  1998. "name": "广西卫视",
  1999. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226211/index.m3u8?fmt=ts2hls","http://coocaa-ynbit-ws.ifengli.com:2381/live/gxws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225594/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225879/1.m3u8"]
  2000. }, {
  2001. "name": "贵州卫视",
  2002. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225483/index.m3u8?fmt=ts2hls","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226105/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/gzws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225610/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226405/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226521/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225880/1.m3u8"]
  2003. }, {
  2004. "name": "海南卫视",
  2005. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226212/index.m3u8?fmt=ts2hls","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226102/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/lyws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225614/index.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226427/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226574/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225890/1.m3u8"]
  2006. }, {
  2007. "name": "河北卫视",
  2008. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225610/index.m3u8?fmt=ts2hls","http://183.207.248.71:80/cntv/live1/n-hebeistv/n-hebeistv","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226059/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/hebeiws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225744/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226409/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226536/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225881/1.m3u8"]
  2009. }, {
  2010. "name": "河南卫视",
  2011. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225611/index.m3u8?fmt=ts2hls","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226108/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/hnws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225716/index.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226525/1.m3u8"]
  2012. }, {
  2013. "name": "黑龙江卫视",
  2014. "urls": ["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226215/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225736/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225586/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225690/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-heilongjiangstv/HD-8000k-1080P-heilongjiangstv","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226014/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/hljws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225690/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/hdheilongjiangstv/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226524/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226239/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225802/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226215/index.m3u8"]
  2015. }, {
  2016. "name": "湖北卫视",
  2017. "urls": ["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226194/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226091/10000100000000060000000002296929_0.smil","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225740/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225596/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225699/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225627/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226088/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/hbws-sd/1.m3u8","http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-hubeistv/HD-2500k-1080P-hubeistv", "http://39.134.24.24/PLTV/88888888/224/3221225674/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/hdhubeistv/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226520/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226240/1.m3u8","http://111.13.42.47/PLTV/88888888/224/3221226503/1.m3u8"]
  2018. }, {
  2019. "name": "吉林卫视",
  2020. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225680/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225553/index.m3u8?fmt=ts2hls","http://coocaa-ynbit-ws.ifengli.com:2381/live/jlws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225804/index.m3u8","http://111.13.42.47/PLTV/88888888/224/3221226533/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225886/1.m3u8"]
  2021. }, {
  2022. "name": "江西卫视",
  2023. "urls": ["http://183.207.248.71:80/cntv/live1/jiangxistv/jiangxistv","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225705/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225746/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225492/index.m3u8?fmt=ts2hls","http://39.134.24.24/PLTV/88888888/224/3221225682/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226085/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/jxws-hd/1.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226687/42186801.smil","http://39.130.202.81:6610/gitv_live/G_JIANGXI-HD/G_JIANGXI-HD.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/jiangxistv/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226522/1.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226243/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221226570/1.m3u8"]
  2024. }, {
  2025. "name": "康巴卫视",
  2026. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226207/index.m3u8","http://183.207.248.71:80/cntv/live1/SD-4000k-576P-kambatv/SD-4000k-576P-kambatv"]
  2027. }, {
  2028. "name": "辽宁卫视",
  2029. "urls": ["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226210/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225735/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225601/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225696/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/lnws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225726/index.m3u8","http://111.13.42.47/PLTV/88888888/224/3221226488/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226201/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226210/index.m3u8"]
  2030. }, {
  2031. "name": "內蒙古卫视",
  2032. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225667/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/nmws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225626/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225891/1.m3u8"]
  2033. }, {
  2034. "name": "宁夏卫视",
  2035. "urls": ["http://183.207.248.71:80/cntv/live1/n-ningxiastv/n-ningxiastv","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225726/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225535/index.m3u8?fmt=ts2hls","http://coocaa-ynbit-ws.ifengli.com:2381/live/nxws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225730/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226528/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225892/1.m3u8"]
  2036. }, {
  2037. "name": "青海卫视",
  2038. "urls": ["http://183.207.248.71:80/cntv/live1/n-qinghaistv/n-qinghaistv","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225727/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225546/index.m3u8?fmt=ts2hls","http://39.134.24.24/PLTV/88888888/224/3221225606/index.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226529/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225893/1.m3u8"]
  2039. }, {
  2040. "name": "山东卫视",
  2041. "urls": ["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226209/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225738/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225484/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225697/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226067/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-shandongstv/HD-2500k-1080P-shandongstv","http://coocaa-ynbit-ws.ifengli.com:2381/live/sdws-hd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225841/index.m3u8", "http://39.134.24.24/PLTV/88888888/224/3221225796/index.m3u8","http://117.169.124.36:6610/ysten-businessmobile/live/hdshandongstv/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226244/1.m3u8"]
  2042. }, {
  2043. "name": "山西卫视",
  2044. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225730/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225549/index.m3u8?fmt=ts2hls","http://coocaa-ynbit-ws.ifengli.com:2381/live/shanxiws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225738/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225895/1.m3u8"]
  2045. }, {
  2046. "name": "陜西农林卫视",
  2047. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226204/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/sxws-sd/1.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225877/index.m3u8"]
  2048. }, {
  2049. "name": "陜西卫视",
  2050. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225729/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225531/index.m3u8?fmt=ts2hls","http://183.207.248.71:80/cntv/live1/n-shanxi1stv/n-shanxi1stv","http://111.13.42.10/PLTV/88888888/224/3221226411/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226532/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225896/1.m3u8"]
  2051. }, {
  2052. "name": "天津卫视",
  2053. "urls": ["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226204/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225739/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225485/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225698/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225740/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226073/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/tjws-sd/1.m3u8","http://183.207.248.71:80/cntv/live1/HD-2500k-1080P-tianjinstv/HD-2500k-1080P-tianjinstv","http://117.169.124.36:6610/ysten-businessmobile/live/hdtianjinstv/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226502/1.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226246/1.m3u8"]
  2054. }, {
  2055. "name": "云南卫视",
  2056. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225538/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225664/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2381/live/ynws-hd/1.m3u8","http://183.207.248.71:80/cntv/live1/n-yntv1/n-yntv1", "http://39.134.24.24/PLTV/88888888/224/3221225696/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226424/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226543/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225902/1.m3u8"]
  2057. }, {
  2058. "name": "新疆卫视",
  2059. "urls": ["http://coocaa-ynbit-ws.ifengli.com:2381/live/xjws-sd/1.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226546/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225901/1.m3u8"]
  2060. }, {
  2061. "name": "xi藏卫视",
  2062. "urls": ["http://coocaa-ynbit-ws.ifengli.com:2381/live/xzws-sd/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226428/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225900/1.m3u8"]
  2063. }, {
  2064. "name": "安多卫视",
  2065. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226195/index.m3u8","http://183.207.248.71:80/cntv/live1/anduostv/anduostv","http://39.134.24.24/PLTV/88888888/224/3221225875/index.m3u8"]
  2066. },
  2067. {"name":"上海哈哈炫动","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225720/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225560/index.m3u8?fmt=ts2hls","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225657/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225909/1.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225872/index.m3u8","http://39.135.230.83/ott.fj.chinamobile.com/PLTV/88888888/224/3221227020/index.m3u8"]},
  2068. {"name":"北京卡酷少儿","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225677/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225654/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226511/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226558/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225907/1.m3u8","http://39.135.230.78/ott.fj.chinamobile.com/PLTV/88888888/224/3221225871/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221226963/index.m3u8"]},
  2069. {"name":"广东嘉佳卡通","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226193/index.m3u8","http://111.13.42.12/PLTV/88888888/224/3221226539/1.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221227024/index.m3u8"]},
  2070. {"name":"江苏优漫卡通","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225665/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225656/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225910/1.m3u8","http://111.13.42.10/PLTV/88888888/224/3221226420/1.m3u8","http://39.135.230.74/ott.fj.chinamobile.com/PLTV/88888888/224/3221225874/index.m3u8"]},
  2071. {"name":"湖南金鹰卡通","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225721/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225653/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225554/index.m3u8?fmt=ts2hls","http://111.13.42.8/PLTV/88888888/224/3221226576/1.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221226959/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225870/index.m3u8"]},
  2072. {"name":"大健康","urls":["http://111.13.42.45/PLTV/88888888/224/3221226556/1.m3u8"]},
  2073. {"name":"淘宝贝","urls":["http://111.13.42.12/PLTV/88888888/224/3221226554/1.m3u8"]},
  2074. {"name":"淘娱乐","urls":["http://111.13.42.10/PLTV/88888888/224/3221226551/1.m3u8"]},
  2075. {"name":"聚鲨环球精选","urls":["http://111.13.42.10/PLTV/88888888/224/3221226345/1.m3u8"]}]
  2076. }, {
  2077. "group": "港澳台海外",
  2078. "channels": [{
  2079. "name": "凤凰中文",
  2080. "urls": ["http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8", "rtmp://45.88.148.178/channel/60c2f331961593122ebaf8c7?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://223.110.245.139/PLTV/3/224/3221226922/index.m3u8", "http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8", "http://zb.ios.ifeng.com/live/05QGDA0CIRK/index.m3u8", "http://117.169.124.37:6610/ysten-businessmobile/live/fhchinese/1.m3u8", "http://117.169.124.43:6610/ysten-businessmobile/live/fhchinese/index.m3u8", "http://223.110.245.136/PLTV/3/224/3221226923/index.m3u8", "http://117.169.124.37:6610/ysten-businessmobile/live/fhchinese/1.m3u8", "http://117.169.124.43:6610/ysten-businessmobile/live/fhchinese/index.m3u8", "http://playtv-live.ifeng.com:80/live/06OLEGEGM4G.m3u8", "http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221228608/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225942/1.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225948/1.m3u8"]
  2081. }, {
  2082. "name": "凤凰资讯",
  2083. "urls": ["http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8", "rtmp://45.88.148.178/channel/60c2f46e961593122ebaf8cb?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://zb.ios.ifeng.com/live/05QGCOB3T34/index.m3u8", "http://117.169.124.43:6610/ysten-businessmobile/live/fhzixun/index.m3u8", "http://117.169.124.37:6610/ysten-businessmobile/live/fhzixun/1.m3u8", "http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221228597/index.m3u8","http://111.13.42.10/PLTV/88888888/224/3221225949/1.m3u8"]
  2084. }, {
  2085. "name": "凤凰香港",
  2086. "urls": ["http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8", "rtmp://45.88.148.178/channel/60c2f428961593122ebaf8c9?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8", "http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8", "http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8$JS1080P", "http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8", "http://183.207.249.34/PLTV/3/224/3221226975/index.m3u8", "http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8?icpid=88888888&from=0&hms_devid=3804", "http://183.207.249.35/PLTV/3/224/3221226975/index.m3u8", "http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8?icpid=88888888&from=0&hms_devid=38044364", "http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8$JS1080P", "http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8", "http://183.207.249.34/PLTV/3/224/3221226975/index.m3u8", "http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8?icpid=88888888&from=0&hms_devid=3804", "http://183.207.249.35/PLTV/3/224/3221226975/index.m3u8", "http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8?icpid=88888888&from=0&hms_devid=38044364", "http://223.110.245.136/PLTV/3/224/3221226975/index.m3u8", "http://183.207.249.34/PLTV/3/224/3221226975/index.m3u8"]
  2087. }, {
  2088. "name": "凤凰电影台",
  2089. "urls": ["http://218.202.220.2:5000/nn_live.ts?id=NEWSASIA"]
  2090. }, {
  2091. "name": "翡翠台",
  2092. "urls": ["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=188&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "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=188&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "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=188&Fsv_rate_id=1&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "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=188&Fsv_rate_id=1&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "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=188&Fsv_rate_id=1&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1&lv=1&c=0&s=4&v=100&wh=16:9&p=1翡翠台", "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id=&Fsv_chan_hls_se_idx=188", "http://host496323.us.ooqr.com/pltv/gz.php?id=tvbfc"]
  2093. }, {
  2094. "name": "明珠台",
  2095. "urls": ["http://116.199.5.51:8114/index.m3u8?Fsv_chan_hls_se_idx=12&FvSeid=1&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=12&Fsv_rate_id=2&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=.m3u8&Fsv_CMSID=&Fsv_otype=1", "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=12&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "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=12&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "http://116.199.5.52:8114/00000000/index.m3u8?Fsv_chan_hls_se_idx=12&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=&Pcontent_id=.m3u8", "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=12&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1"]
  2096. }, {
  2097. "name": "TVB星河",
  2098. "urls": ["rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d7a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://50.7.161.82:8278/streams/d/Xinhe/./playlist.m3u8", "http://43.128.9.168/jjtv.php?id=4"]
  2099. }, {
  2100. "name": "星空卫视",
  2101. "urls": ["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=233&Fsv_rate_id=1&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "http://116.199.5.51:8114/hls/Fsv_chan_hls_se_idx=233&FvSeid=1&Fsv_ctype=LIVES&Fsv_otype=1&Provider_id=0&Pcontent_id=8114.m3u8", "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=233&Fsv_rate_id=1&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "http://218.202.220.2:5000/nn_live.ts?id=STARTV", "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=233&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "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=233&Fsv_rate_id=1&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1", "http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id=&Fsv_chan_hls_se_idx=233"]
  2102. }, {
  2103. "name": "香港HKS",
  2104. "urls": ["http://zhibo.hkstv.tv/livestream/mutfysrq.flv","http://zhibo.hkstv.tv/livestream/mutfysrq/playlist.m3u8","http://zhibo.hkstv.tv/livestream/mutfysrq.flv","http://zhibo.hkstv.tv:80/livestream/mutfysrq"]
  2105. }, {
  2106. "name": "澳门卫视",
  2107. "urls": ["http://61.244.22.4/ch3/ch3.live/chunklist_w415594313.m3u8","http://61.244.22.4/ch3/ch3.live/index.m3u8","http://61.244.22.4/ch3/ch3.live/playelist.m3u8"]
  2108. }, {
  2109. "name": "澳视澳门",
  2110. "urls": ["http://61.244.22.4/ch1/ch1.live/playelist.m3u8"]
  2111. }, {
  2112. "name": "澳门资讯",
  2113. "urls": ["http://61.244.22.5/ch5/info_ch5.live/master.m3u8","http://61.244.22.4/ch2/ch2.live/playelist.m3u8"]
  2114. }, {
  2115. "name": "民视",
  2116. "urls": ["rtmp://9wv7.mine.nu/sat/tv051","rtmp://45.92.126.226/channel/60c317bd961593122ebaf90a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://211.23.114.106:8504/http/61.221.81.94:8088/hls/73/815/ch49.m3u8","rtmp://59.124.75.138/sat/tv051","rtmp://59.124.75.157/sat/tv051", "http://50.7.61.147:30080/Entry/ftv", "rtmp://45.92.126.226/channel/60c317bd961593122ebaf90a", "http://50.7.61.148:30080/Entry/ftv", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv002", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv001"]
  2117. }, {
  2118. "name": "台视",
  2119. "urls": ["rtmp://59.124.75.138/sat/tv071","rtmp://9wv7.mine.nu/sat/tv071","rtmp://59.124.75.157/sat/tv071", "rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910c44?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://50.7.61.148:30080/Entry/ttv","http://211.23.114.106:8502/http/61.221.81.94:8088/hls/72/814/ch46.m3u8", "http://60.251.59.180:8543/xoxo.m3u8", "http://50.7.61.148:30080/Entry/ttv", "rtmp://45.92.126.226/channel/60c31796961593122ebaf908", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv066"]
  2120. }, {
  2121. "name": "中视",
  2122. "urls": ["rtmp://59.124.75.138/sat/tv091","rtmp://9wv7.mine.nu/sat/tv091","rtmp://59.124.75.157/sat/tv091","rtmp://45.92.126.114/channel/60c3166c961593122ebaf8fe?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://211.23.114.106:8502/http/61.221.81.94:8088/hls/72/814/ch47.m3u8", "http://50.7.61.148:30080/Entry/ctv", "http://50.7.61.148:30080/Entry/ctv", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv040"]
  2123. }, {
  2124. "name": "华视",
  2125. "urls": ["rtmp://59.124.75.157/sat/tv111","rtmp://9wv7.mine.nu/sat/tv111","rtmp://59.124.75.157/sat/tv111","rtmp://45.88.148.122/channel/60b4e50239e1b02e8b910c4c?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://211.23.114.106:8503/http/61.221.81.94:8088/hls/72/814/ch48.m3u8", "http://50.7.61.147:30080/Entry/cts", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv041", "rtmp://59.124.75.138/sat/tv111"]
  2126. }, {
  2127. "name": "公视",
  2128. "urls": ["http://211.23.114.106:8505/http/61.221.81.94:8088/hls/73/815/ch50.m3u8","https://flv3948069e.live.126.net/live/sytv_9dd30b5c8e846938c26dde70be773545.flv","http://sytv.xtvants.fun/mytv.php?id=gs&token=free&user=free", "http://sytv.xtvants.fun/mytv.php?id=gs&token=qq3036107507&user=fmys", "rtmp://45.92.126.226/channel/60c31796961593122ebaf908?sign=epgg4bkSF4hx%2BZ5WNsuYKsEplghWqWFa%2FRw3tGNF7vys%2FTXdBAnc%2BYbrUpogDq3MZnOL", "rtmp://45.88.148.178/channel/60b4e50239e1b02e8b910c3e?sign=epgg4bkSF4hx%2BZ5WNsuYKsEplghWqWFa%2FRw3tGNF7vys%2FTXdBAnc%2BYbrUpogDq3MZnOL"]
  2129. }, {
  2130. "name": "CHC高清電影",
  2131. "urls": ["http://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226463/index.m3u8", "http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226463/index.m3u8", "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226463/index.m3u8"]
  2132. }, {
  2133. "name": "CHC动作電影",
  2134. "urls": ["http://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/index.m3u8", "http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/index.m3u8"]
  2135. }, {
  2136. "name": "CHC家庭影院",
  2137. "urls": ["http://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226462/index.m3u8", "http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226462/index.m3u8"]
  2138. }, {
  2139. "name": "超级电影",
  2140. "urls": ["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225717/index.m3u8", "http://39.134.66.66/PLTV/88888888/224/3221225644/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225766/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225623/index.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226233/1.m3u8"]
  2141. }, {
  2142. "name": "超级电视剧",
  2143. "urls": ["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225716/index.m3u8", "http://39.134.66.66/PLTV/88888888/224/3221225637/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225765/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225625/index.m3u8","http://111.13.42.45/PLTV/88888888/224/3221226253/1.m3u8"]
  2144. }, {
  2145. "name": "黑莓电影",
  2146. "urls": ["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225718/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225764/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225769/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225743/index.m3u8", "http://ott.js.chinamobile.com/PLTV/3/224/3221225567/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225769/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225764/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225718/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225927/1.m3u8"]
  2147. }, {
  2148. "name": "卫视电影",
  2149. "urls": ["http://211.23.114.106:8553/http/116.50.42.19:8081/hls/62/804/ch07.m3u8","rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910cc6?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://50.7.61.147:30080/Entry/starmovie", "http://sytv.xtvants.fun/mytv.php?id=wsdy&token=free&user=free"]
  2150. }, {
  2151. "name": "美亚电影",
  2152. "urls": ["http://v3948069e.live.126.net/live/hodtv4003.flv","http://iptv5.phoves.com.cn/mytv/mitv.php?id=2"]
  2153. }, {
  2154. "name": "好莱坞",
  2155. "urls": ["http://211.23.114.106:8554/http/116.50.42.19:8081/hls/74/816/ch55.m3u8","rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910c92?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2156. }, {
  2157. "name": "龙华洋片",
  2158. "urls": ["http://211.23.114.106:8556/http/116.50.42.19:8066/hls/210/10014/cstv14.m3u8","rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d40?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2159. }, {
  2160. "name": "邵氏电影",
  2161. "urls": ["http://106.53.212.251/dl/tv.php?id=213"]
  2162. }, {
  2163. "name": "龙华电影",
  2164. "urls": ["rtmp://45.88.148.114/channel/60b4e50239e1b02e8b910d4c?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn03"]
  2165. }, {
  2166. "name": "东森电影",
  2167. "urls": ["http://host496323.us.ooqr.com/pltv/gz.php?id=dsdy","rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d8a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2168. }, {
  2169. "name": "东森洋片",
  2170. "urls": ["http://host496323.us.ooqr.com/pltv/gz.php?id=dsyp","rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d8c?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2171. }, {
  2172. "name": "纬来电影",
  2173. "urls": ["http://211.23.114.106:8555/http/116.50.42.19:8081/hls/69/811/ch35.m3u8","rtmp://104.149.130.142/channel/60b4e50239e1b02e8b910c8c?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2174. }, {
  2175. "name": "HBO",
  2176. "urls": ["http://211.23.114.106:8511/http/116.50.42.19:8081/hls/71/813/ch41.m3u8","rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910cce?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "rtmp://45.88.148.122/channel/60b4e50239e1b02e8b910caa?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "rtmp://104.149.130.142/channel/60b4e50239e1b02e8b910ccc?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "rtmp://104.149.188.82/channel/6162d414295d84395baff8bd?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "https://gratismkctv.net/film/hbo.m3u8", "rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910cce", "rtmp://45.92.126.226/channel/60c2f6ca961593122ebaf8dc", "http://50.7.61.148:30080/Entry/hbo"]
  2177. }, {
  2178. "name": "AXN",
  2179. "urls": ["http://211.23.114.106:8558/http/116.50.42.19:8081/hls/71/813/ch43.m3u8","rtmp://45.92.126.114/channel/61322915c6f62a25d2da21de?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "rtmp://45.88.148.114/channel/61322a00c6f62a25d2da21e4?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "rtmp://104.149.188.82/channel/6162d0c6295d84395baff01b?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://50.7.61.148:30080/Entry/axn", "http://50.7.61.148:30080/Entry/axn"]
  2180. }, {
  2181. "name": "FOX MOVIES",
  2182. "urls": ["http://211.23.114.106:8560/http/116.50.42.19:8081/hls/62/804/ch08.m3u8","rtmp://104.149.130.142/channel/60b4e50239e1b02e8b910ca0?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "rtmp://45.88.148.114/channel/61322ac7c6f62a25d2da21ea?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910ca8", "rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910ca8?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "rtmp://104.149.186.246/channel/6162c3f2295d84395bafd642?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "rtmp://104.149.184.98/channel/6162c327295d84395bafd4da?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2183. }, {
  2184. "name": "CINEMAX",
  2185. "urls": ["http://211.23.114.106:8559/http/116.50.42.19:8081/hls/71/813/ch42.m3u8","rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910cac?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://211.23.114.106:8516/http/61.221.81.94:8088/hls/70/812/ch39.m3u8", "rtmp://104.149.191.182/channel/6162d63d295d84395baffed0?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "https://feed.play.mv/live/10005200/isU48qPZqV/master.m3u8"]
  2186. }, {
  2187. "name": "国家地理",
  2188. "urls": ["rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910ca6","http://211.23.114.106:8509/http/61.221.81.94:8088/hls/61/803/ch01.m3u8", "rtmp://45.88.148.122/channel/60b4e50239e1b02e8b910d70?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910d1e?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://50.7.161.82:8278/streams/d/Natgeowild/playlist.m3u8"]
  2189. }, {
  2190. "name": "法国时尚",
  2191. "urls": ["http://lb.streaming.sk/fashiontv/stream/chunklist.m3u8","rtmp://45.88.148.122/channel/60b4e50239e1b02e8b910c5c?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "rtmp://45.88.148.114/channel/61004184f0618408855f3758?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2192. }, {
  2193. "name": "M20TV",
  2194. "urls": ["http://m2otv-lh.akamaihd.net/i/m2oTv_1@186074/index_600_av-b.m3u8"]
  2195. }, {
  2196. "name": "大爱一台",
  2197. "urls": ["https://pulltv1.wanfudaluye.com/live/tv1.m3u8","rtmp://45.88.148.114/channel/60b4e50239e1b02e8b910c7a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2198. }, {
  2199. "name": "大爱二台",
  2200. "urls": ["https://pulltv2.wanfudaluye.com/live/tv2.m3u8","rtmp://45.88.148.122/channel/60c3441b961593122ebaf99a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2201. }, {
  2202. "name": "大爱海外",
  2203. "urls": ["https://pulltv3.wanfudaluye.com/live/tv3.m3u8"]
  2204. }, {
  2205. "name": "三立台湾台",
  2206. "urls": ["http://211.23.114.106:8521/http/60.251.39.91:8081/hls/65/807/ch20.m3u8","https://setlive-lh.akamaihd.net/i/settaiwan_1@301196/index_1080_av-b.m3u8?sd=10&amp;rebase=on", "https://setlive-lh.akamaihd.net/i/settaiwan_1@301196/index_1080_av-b.m3u8?sd=10&rebase=on", "https://setlive-lh.akamaihd.net/i/settaiwan_1@301196/index_1080_av-b.m3u8", "http://50.7.61.148:30080/Entry/settw-","rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910c78?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2207. }, {
  2208. "name": "三立都会台",
  2209. "urls": ["http://211.23.114.106:8522/http/60.251.39.91:8081/hls/65/807/ch19.m3u8", "https://setlive-lh.akamaihd.net/i/setmetro_1@132201/index_1080_av-b.m3u8?sd=10&amp;rebase=on", "https://setlive-lh.akamaihd.net/i/setmetro_1@132201/index_1080_av-b.m3u8?sd=10&rebase=on", "https://setlive-lh.akamaihd.net/i/setmetro_1@132201/index_1080_av-b.m3u8","rtmp://45.92.126.226/channel/60c53f4a961593122ebafa48?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2210. }, {
  2211. "name": "卫视中文台",
  2212. "urls": ["http://211.23.114.106:8514/http/60.251.39.91:8081/hls/62/804/ch05.m3u8","http://50.7.61.148:30080/Entry/starchinese", "http://50.7.61.148:30080/Entry/starchinese"]
  2213. }, {
  2214. "name": "龍華日韓台",
  2215. "urls": ["http://211.23.114.106:8535/http/59.120.8.187:8066/hls/210/10011/cstv11.m3u8","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn11", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn11"]
  2216. }, {
  2217. "name": "龍華戲劇台",
  2218. "urls": ["http://211.23.114.106:8534/http/59.120.8.187:8066/hls/210/10010/cstv10.m3u8","rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d18?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "rtmp://45.88.148.114/channel/60b4e50239e1b02e8b910cc0?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn18", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn18"]
  2219. }, {
  2220. "name": "龍華偶像台",
  2221. "urls": ["http://211.23.114.106:8579/http/59.120.8.187:8066/hls/210/10012/cstv12.m3u8","rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d48?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn12", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn12"]
  2222. }, {
  2223. "name": "龍華動畫台",
  2224. "urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn01", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn01"]
  2225. }, {
  2226. "name": "龍華經典台",
  2227. "urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn21", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn21"]
  2228. }, {
  2229. "name": "愛爾達綜合台",
  2230. "urls": ["http://93.190.139.36:8278/streams/d/eltazonghe/playlist.m3u8"]
  2231. }, {
  2232. "name": "MoMo綜合台",
  2233. "urls": ["rtmp://59.124.75.138/sat/tv761", "rtmp://9wv7.mine.nu/sat/tv761", "rtmp://45.88.148.178/channel/60b4e50239e1b02e8b910cc8?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://58.99.33.16:1935/liveedge17/live_075_3.stream/chunklist.m3u8"]
  2234. }, {
  2235. "name": "海豚綜合",
  2236. "urls": ["http://58.99.33.16:1935/liveedge17/live_077_3.stream/chunklist.m3u8"]
  2237. }, {
  2238. "name": "美麗人生",
  2239. "urls": ["http://58.99.33.16:1935/liveedge17/live_070_3.stream/chunklist.m3u8"]
  2240. }, {"name":"東風衛視","urls":["http://211.23.114.106:8578/http/60.251.39.91:8081/hls/68/810/ch31.m3u8"]},{
  2241. "name": "東森新聞",
  2242. "urls": ["http://211.23.114.106:8540/http/60.251.39.91:8081/hls/63/805/ch10.m3u8","rtmp://45.88.148.178/channel/6100144cf0618408855f36e1?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2243. }, {
  2244. "name": "東森綜合",
  2245. "urls": ["http://211.23.114.106:8524/http/60.251.39.91:8081/hls/63/805/ch12.m3u8","rtmp://45.88.148.122/channel/60b4e50239e1b02e8b910d86?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2246. }, {
  2247. "name": "東森超視",
  2248. "urls": ["rtmp://9wv7.mine.nu/sat/tv521","http://211.23.114.106:8525/http/60.251.39.91:8081/hls/64/806/ch14.m3u8","rtmp://104.149.130.142/channel/60b4e50239e1b02e8b910d8e?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2249. }, {
  2250. "name": "東森呦呦",
  2251. "urls": ["http://211.23.114.106:8515/http/61.221.81.94:8088/hls/63/805/ch09.m3u8","rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d84?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2252. }, {
  2253. "name": "東森戲劇",
  2254. "urls": ["http://211.23.114.106:8530/http/60.251.39.91:8081/hls/64/806/ch13.m3u8","rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d88", "rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d88?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2255. }, {
  2256. "name": "東森財經",
  2257. "urls": ["rtmp://9wv7.mine.nu/sat/tv571","rtmp://59.124.75.138/sat/tv571","http://211.23.114.106:8546/http/116.50.42.19:8081/hls/63/805/ch11.m3u8","rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910c84?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2258. }, {
  2259. "name": "JET綜合台",
  2260. "urls": ["rtmp://45.88.148.178/channel/60b4e50239e1b02e8b910c74?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "rtmp://45.88.148.178/channel/60b4e50239e1b02e8b910c74", "http://50.7.61.147:30080/Entry/jet"]
  2261. }, {
  2262. "name": "緯來戲劇",
  2263. "urls": ["http://211.23.114.106:8533/http/60.251.39.91:8081/hls/69/811/ch33.m3u8","rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910c9a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2264. }, {
  2265. "name": "緯來日本",
  2266. "urls": ["rtmp://59.124.75.138/sat/tv771", "rtmp://9wv7.mine.nu/sat/tv771","http://211.23.114.106:8537/http/60.251.39.91:8081/hls/69/811/ch34.m3u8", "rtmp://45.92.126.114/channel/60c312ed961593122ebaf8f3?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://50.7.61.147:30080/Entry/vljp"]
  2267. }, {
  2268. "name": "緯來綜合",
  2269. "urls": ["http://211.23.114.106:8518/http/61.221.81.94:8088/hls/68/810/ch32.m3u8","rtmp://104.149.131.118/channel/60c312b7961593122ebaf8f1?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2270. }, {
  2271. "name": "緯來育樂",
  2272. "urls": ["rtmp://9wv7.mine.nu/sat/tv701", "rtmp://45.92.126.226/channel/60c31357961593122ebaf8f8?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://211.23.114.106:8562/http/116.50.42.19:8081/hls/68/810/ch30.m3u8", "rtmp://59.124.75.138/sat/tv701"]
  2273. }, {
  2274. "name": "緯來精采",
  2275. "urls": ["rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d2e?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2276. }, {
  2277. "name": "緯來體育",
  2278. "urls": ["http://211.23.114.106:8563/http/59.120.8.187:8081/hls/67/809/ch28.m3u8","rtmp://104.149.131.118/channel/60c3138a961593122ebaf8fa?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2279. }, {
  2280. "name": "八大第一",
  2281. "urls": ["http://211.23.114.106:8536/http/61.221.81.94:8088/hls/66/808/ch22.m3u8","rtmp://104.149.131.118/channel/60c31d07961593122ebaf92d?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2282. }, {
  2283. "name": "八大綜合",
  2284. "urls": ["http://211.23.114.106:8520/http/61.221.81.94:8088/hls/66/808/ch21.m3u8","rtmp://45.83.118.242/channel/60c31c5a961593122ebaf92b?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv039"]
  2285. }, {
  2286. "name": "八大戲劇",
  2287. "urls": ["http://211.23.114.106:8531/http/60.251.39.91:8081/hls/66/808/ch23.m3u8","rtmp://45.83.118.242/channel/60c31d53961593122ebaf92f?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2288. }, {
  2289. "name": "八大娛樂",
  2290. "urls": ["rtmp://45.88.148.122/channel/60c31db1961593122ebaf931?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]
  2291. }, {
  2292. "name": "八大精彩",
  2293. "urls": ["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv034"]
  2294. }, {"name":"TVBS","urls":["http://211.23.114.106:8545/http/116.50.42.19:8081/hls/64/806/ch15.m3u8"]},{
  2295. "name": "TVBS新聞台",
  2296. "urls": ["rtmp://9wv7.mine.nu/sat/tv551","rtmp://59.124.75.138/sat/tv551","http://211.23.114.106:8546/http/116.50.42.19:8081/hls/64/806/ch16.m3u8"]
  2297. }, {
  2298. "name": "TVBS歡樂台",
  2299. "urls": ["rtmp://9wv7.mine.nu/sat/tv421", "rtmp://59.124.75.138/sat/tv421", "rtmp://59.124.75.138:1935/sat/tv421","http://211.23.114.106:8532/http/60.251.39.91:8081/hls/65/807/ch17.m3u8","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv068"]
  2300. }, {"name":"WAKUWAKUJAPAN","urls":["http://211.23.114.106:8538/http/60.251.39.91:8081/hls/61/803/ch03.m3u8"]},{"name":"年代新聞","urls":["http://211.23.114.106:8517/http/60.251.39.91:8081/hls/67/809/ch27.m3u8"]},
  2301. {"name":"中天新聞","urls":["http://211.23.114.106:8541/http/60.251.39.91:8081/hls/78/80/ch63max.m3u8","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv009"]},
  2302. {"name":"民視新聞","urls":["http://211.23.114.106:8542/http/60.251.39.91:8081/hls/73/815/ch51.m3u8"]},
  2303. {"name":"三立新聞","urls":["http://211.23.114.106:8543/http/60.251.39.91:8081/hls/65/807/ch18.m3u8"]},
  2304. {"name":"寰宇新聞","urls":["http://211.23.114.106:8547/http/116.50.42.19:8081/hls/76/818/ch62.m3u8","http://58.99.33.16:1935/liveedge17/live_163_3.stream/chunklist.m3u8", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn15", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn15"]},
  2305. {"name":"壹新聞","urls":["http://211.23.114.106:8548/http/116.50.42.19:8081/hls/66/808/ch24.m3u8","http://50.7.61.147:30080/Entry/etv"]},
  2306. {"name":"CNN新聞","urls":["http://211.23.114.106:8549/http/116.50.42.19:8081/hls/68/810/ch29.m3u8"]},
  2307. {"name":"CNBC新聞","urls":["http://211.23.114.106:8550/http/116.50.42.19:8078/hls/24/80/cnbc90.m3u8"]},
  2308. {"name":"Bloomberg","urls":["http://211.23.114.106:8551/http/116.50.42.19:8078/hls/43/80/bloomber.m3u8"]},
  2309. {"name":"NHK新聞","urls":["http://211.23.114.106:8552/http/116.50.42.19:8081/hls/62/804/ch06.m3u8"]}]
  2310. }, {
  2311. "group": "日韩",
  2312. "channels": [{
  2313. "name": "韓國娛樂台KMTV",
  2314. "urls": ["rtmp://45.88.148.114/channel/60c2d183961593122ebaf8ae?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH", "http://93.190.139.36:8278/streams/d/chcaction/playlist.m3u8", "http://93.190.139.36:8278/streams/d/chcaction/playlist.m3u8"]
  2315. }, {
  2316. "name": "阿里郎",
  2317. "urls": ["http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8", "http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8", "http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/chunklist_b3256000_sleng.m3u8","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv079"]
  2318. }, {
  2319. "name": "KBC광주방송",
  2320. "urls": ["http://119.200.131.11:1935/KBCTV/tv/playlist.m3u8"]
  2321. }, {
  2322. "name": "SBS",
  2323. "urls": ["http://119.200.131.11:1935/KBCTV/tv/playlist.m3u8","http://1.245.74.5:1935/live/tv/.m3u8"]
  2324. }, {
  2325. "name": "KBS",
  2326. "urls": ["http://luotuo.ycchenrong.cn/dl/youku.php?id=8034767"]
  2327. }, {
  2328. "name": "MBC",
  2329. "urls": ["http://vod.mpmbc.co.kr:1935/live/encoder-tv/playlist.m3u8","http://www.pickcom.co.kr:1935/sjp/live07/chunklist_w2107750490.m3u8","https://5c3639aa99149.streamlock.net/live_TV/TV/playlist.m3u8"]
  2330. }, {
  2331. "name": "MTN",
  2332. "urls": ["http://183.110.27.87/mtnlive/_definst_/720/chunklist.m3u8"]
  2333. },{
  2334. "name": "YTN",
  2335. "urls": ["http://slive.sciencetv.kr:1935/science/yslive_20140419_1/playlist.m3u8"]
  2336. }, {
  2337. "name": "KCTV",
  2338. "urls": ["http://119.77.96.184:1935/chn21/chn21/chunklist_w252131137.m3u8"]
  2339. }, {
  2340. "name": "TBS",
  2341. "urls": ["http://58.234.158.60:1935/catvlive/myStream/playlist.m3u8"]
  2342. }, {
  2343. "name": "SBSCJB",
  2344. "urls": ["http://1.222.207.80:1935/live/cjbtv/chunklist_w1357270949.m3u8"]
  2345. }, {
  2346. "name": "EBS第一頻道",
  2347. "urls": ["http://ebsonairios.ebs.co.kr/groundwavetablet500k/tablet500k/groundwavetablet500k.m3u8","http://ebsonairios.ebs.co.kr/plus1tablet500k/tablet500k/plus1tablet500k.index.m3u8"]
  2348. }, {
  2349. "name": "EBS第二頻道",
  2350. "urls": ["http://ebsonairios.ebs.co.kr/ebs2tablet500k/tablet500k/ebs2tablet500k.index.m3u8","http://ebsonair.ebs.co.kr:1935/ebs2familypc/familypc1m/playlist.m3u8","http://ebsonairios.ebs.co.kr/plus2tablet500k/tablet500k/plus2tablet500k.index.m3u8"]
  2351. }, {
  2352. "name": "EBSE頻道",
  2353. "urls": ["http://ebsonairios.ebs.co.kr/plus3tablet500k/tablet500k/plus3tablet500k.index.m3u8"]
  2354. }, {
  2355. "name": "阿里郎WORLD",
  2356. "urls": ["http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8","http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch/master.m3u8"]
  2357. }, {
  2358. "name": "KBSWorld",
  2359. "urls": ["https://livecdn.fptplay.net/sdb/kbs_hls.smil/chunklist_b2500000.m3u8"]
  2360. }, {
  2361. "name": "SexyK-Pop",
  2362. "urls": ["https://srv1.zcast.com.br/kpoptv/kpoptv/.m3u8"]
  2363. }, {
  2364. "name": "NHK",
  2365. "urls": ["https://nhkwlive-ojp.akamaized.net/hls/live/2003459/nhkwlive-ojp-en/index_4M.m3u8","https://nhkw-zh-hlscomp.akamaized.net/8thz5iufork8wjip/playlist.m3u8"]
  2366. }, {
  2367. "name": "Animax HD",
  2368. "urls": ["https://livecdn.fptplay.net/hda3/animaxport_hls.smil/chunklist.m3u8"]
  2369. }, {
  2370. "name": "Atx",
  2371. "urls": ["https://sub2.neetball.net/live/neet.m3u8"]
  2372. }, {
  2373. "name": "ウェザーニュース",
  2374. "urls": ["https://movie.mcas.jp/mcas/smil:wn1.smil/master.m3u8","http://movie.mcas.jp/mcas/wn1_2/master.m3u8"]
  2375. }, {
  2376. "name": "Gunma TV",
  2377. "urls": ["https://movie.mcas.jp/switcher/smil:mcas8.smil/master.m3u8"]
  2378. }]
  2379. }, {
  2380. "group": "明星",
  2381. "channels": [{
  2382. "name": "周星馳",
  2383. "urls": ["http://117.148.179.153/PLTV/88888888/224/3221231562/index.m3u8","https://hw.flv.huya.com/src/1394575534-1394575534-5989656310331736064-2789274524-10057-A-0-1-imgplus.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1394575534-1394575534-5989656310331736064-2789274524-10057-A-0-1.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1199563481163-1199563481163-5444324506032144384-2399127085782-10057-A-0-1.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1199561277724-1199561277724-5434860807588413440-2399122678904-10057-A-0-1.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1449698986-1449698986-6226409733914361856-2847687634-10057-A-0-1.m3u8", "http://121.51.94.31/tx.hls.huya.com/src/1394575534-1394575534-5989656310331736064-2789274524-10057-A-0-1-imgplus.m3u8", "http://112.74.200.9:88/tv000000/m3u8.php?/migu/623338112", "http://dyscdnali1.douyucdn.cn/live/122402rK7MO9bXSq.flv?uuid=", "http://tx2play1.douyucdn.cn/live/122402rK7MO9bXSq.xs?uuid=", "http://api.phoves.com.cn/iptv/huya.php?id=11342412", "http://api.phoves.com.cn/iptv/huya.php?id=19105261"]
  2384. }, {
  2385. "name": "林正英",
  2386. "urls": ["http://121.51.94.31/tx.hls.huya.com/src/1394575543-1394575543-5989656348986441728-2789274542-10057-A-0-1.m3u8","https://hw.flv.huya.com/src/1394575543-1394575543-5989656348986441728-2789274542-10057-A-0-1.m3u8","https://hw.flv.huya.com/src/1394575543-1394575543-5989656348986441728-2789274542-10057-A-0-1.m3u8", "http://api.phoves.com.cn/iptv/huya.php?id=11342421", "http://117.148.179.165/PLTV/88888888/224/3221231742/index.m3u8", "https://3954-quic.liveplay.myqcloud.com/live/3954_363783415.flv"]
  2387. }, {
  2388. "name": "成龍",
  2389. "urls": ["http://117.148.179.163/PLTV/88888888/224/3221231687/index.m3u8","https://hw.flv.huya.com/src/1394565191-1394565191-5989611887484993536-2789253838-10057-A-0-1-imgplus.m3u8", "http://121.51.94.31/tx.hls.huya.com/src/1394565191-1394565191-5989611887484993536-2789253838-10057-A-0-1.m3u8", "http://112.74.200.9:88/tv000000/m3u8.php?/migu/707671890", "http://api.phoves.com.cn/iptv/huya.php?id=11342386"]
  2390. }, {
  2391. "name": "張國榮",
  2392. "urls": ["http://117.148.179.177/PLTV/88888888/224/3221231790/index.m3u8", "http://112.74.200.9:88/tv000000/m3u8.php?/migu/707689526", "http://api.phoves.com.cn/iptv/huya.php?id=11602034"]
  2393. }, {
  2394. "name": "吳京",
  2395. "urls": ["http://117.148.179.183/PLTV/88888888/224/3221231564/index.m3u8","https://hw.flv.huya.com/src/1524434090-1524434090-6547394561457520640-3048991636-10057-A-0-1.m3u8" , "http://121.51.94.31/tx.hls.huya.com/src/1524434090-1524434090-6547394561457520640-3048991636-10057-A-0-1.m3u8", "http://112.74.200.9:88/tv000000/m3u8.php?/migu/625681368", "http://api.phoves.com.cn/iptv/huya.php?id=11602045"]
  2396. }, {
  2397. "name": "劉德華",
  2398. "urls": ["http://117.148.179.154/PLTV/88888888/224/3221231757/index.m3u8","https://hw.flv.huya.com/src/1394575547-1394575547-5989656366166310912-2789274550-10057-A-0-1.m3u8" , "http://112.74.200.9:88/tv000000/m3u8.php?/migu/659315648", "http://api.phoves.com.cn/iptv/huya.php?id=11342424"]
  2399. }, {
  2400. "name": "古天樂",
  2401. "urls": ["http://117.148.179.176/PLTV/88888888/224/3221231645/index.m3u8", "http://api.phoves.com.cn/iptv/huya.php?id=10871113"]
  2402. }, {
  2403. "name": "徐崢",
  2404. "urls": ["http://121.51.94.31/tx.hls.huya.com/src/1524434085-1524434085-6547394539982684160-3048991626-10057-A-0-1.m3u8","https://hw.flv.huya.com/src/1524434085-1524434085-6547394539982684160-3048991626-10057-A-0-1.m3u8", "http://api.phoves.com.cn/iptv/huya.php?id=11602043"]
  2405. }, {
  2406. "name": "沈腾",
  2407. "urls": ["http://121.51.94.31/tx.hls.huya.com/src/1524418085-1524418085-6547325820505948160-3048959626-10057-A-0-1-imgplus.m3u8","https://hw.flv.huya.com/src/1524418085-1524418085-6547325820505948160-3048959626-10057-A-0-1-imgplus.m3u8"]
  2408. },
  2409. {"name":"甄子丹","urls":["https://hw.flv.huya.com/src/1423787820-1423787820-6115122123343134720-2847699096-10057-A-0-1-imgplus.m3u8"]},
  2410. {"name":"洪金宝","urls":["https://hw.flv.huya.com/src/1394575551-1394575551-5989656383346180096-2789274558-10057-A-0-1-imgplus.m3u8","https://hw.flv.huya.com/src/1449698705-1449698705-6226408527028551680-3049003156-10057-A-0-1.m3u8"]},
  2411. {"name":"五福星","urls":["https://hw.flv.huya.com/src/1356780980-1356780980-5827329936934830080-2713685416-10057-A-0-1.m3u8"]},
  2412. {"name":"李小龙","urls":["https://hw.flv.huya.com/src/1449588725-1449588725-6225936166525337600-3048959678-10057-A-0-1.m3u8"]},
  2413. {"name":"李连杰","urls":["https://hw.flv.huya.com/src/1394565196-1394565196-5989611908959830016-2789253848-10057-A-0-1-imgplus.m3u8"]},
  2414. {"name":"女神系列","urls":["https://hw.flv.huya.com/src/1388451591-1388451591-5963354175424167936-2777026638-10057-A-0-1-imgplus.m3u8"]},
  2415. {"name":"张柏芝","urls":["https://hw.flv.huya.com/src/1524434111-1524434111-6547394651651833856-3048991678-10057-A-0-1.m3u8"]},
  2416. {"name":"北有谢","urls":["https://hw.flv.huya.com/src/1445653465-1445653465-6209034353524080640-2847699238-10057-A-0-1.m3u8"]},
  2417. {"name":"刘涛","urls":["https://hw.flv.huya.com/src/1524418105-1524418105-6547325906405294080-3048959666-10057-A-0-1.m3u8"]},
  2418. {"name":"大咖自黑","urls":["https://hw.flv.huya.com/src/1449572975-1449572975-6225868520790425600-2789274544-10057-A-0-1.m3u8"]},
  2419. {"name":"极限挑战","urls":["https://hw.flv.huya.com/src/1423782086-1423782086-6115097496000659456-2847687628-10057-A-0-1-imgplus.m3u8"]},
  2420. {"name":"【黑帮大片】","urls":["https://hw.flv.huya.com/src/1388472589-1388472589-5963444361147449344-2777068634-10057-A-0-1-imgplus.m3u8"]},
  2421. {
  2422. "name": "金庸頻道",
  2423. "urls": ["http://117.148.179.132/PLTV/88888888/224/3221231477/index.m3u8","https://hw.flv.huya.com/src/1524418105-1524418105-6547325906405294080-3048959666-10057-A-0-1.m3u8"]
  2424. }, {
  2425. "name": "喜劇聯盟",
  2426. "urls": ["http://117.148.179.154/PLTV/88888888/224/3221231621/index.m3u8","https://hw.flv.huya.com/src/1445653465-1445653465-6209034353524080640-2847699238-10057-A-0-1.m3u8","https://hw.flv.huya.com/src/1388451591-1388451591-5963354175424167936-2777026638-10057-A-0-1-imgplus.m3u8"]
  2427. }, {
  2428. "name": "高分影院",
  2429. "urls": ["http://117.148.179.182/PLTV/88888888/224/3221231699/index.m3u8"]
  2430. }, {
  2431. "name": "周潤發",
  2432. "urls": ["http://117.148.179.177/PLTV/88888888/224/3221231709/index.m3u8","https://hw.flv.huya.com/src/1394565192-1394565192-5989611891779960832-2789253840-10057-A-0-1-imgplus.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1394565192-1394565192-5989611891779960832-2789253840-10057-A-0-1-imgplus.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1199561240999-1199561240999-5434703074914467840-2399122605454-10057-A-0-1.m3u8", "http://121.51.249.99/txdirect.hls.huya.com/src/1524434089-1524434089-6547394557162553344-3048991634-10057-A-0-1.m3u8", "http://112.74.200.9:88/tv000000/m3u8.php?/migu/639526984", "http://api.phoves.com.cn/iptv/huya.php?id=11342387"]
  2433. }, {
  2434. "name": "郭富城",
  2435. "urls": ["http://117.148.179.152/PLTV/88888888/224/3221231688/index.m3u8"]
  2436. }, {
  2437. "name": "楊冪",
  2438. "urls": ["http://117.148.179.183/PLTV/88888888/224/3221231556/index.m3u8"]
  2439. }, {
  2440. "name": "劉亦菲",
  2441. "urls": ["http://117.148.179.165/PLTV/88888888/224/3221231787/index.m3u8"]
  2442. }, {
  2443. "name": "懷舊老片",
  2444. "urls": ["http://117.148.179.146/PLTV/88888888/224/3221231513/index.m3u8"]
  2445. }, {
  2446. "name": "午夜失眠劇場",
  2447. "urls": ["http://117.148.179.141/PLTV/88888888/224/3221231516/index.m3u8"]
  2448. }, {
  2449. "name": "雲上電影院",
  2450. "urls": ["http://117.148.179.176/PLTV/88888888/224/3221231565/index.m3u8"]
  2451. }, {
  2452. "name": "每日科幻電影",
  2453. "urls": ["http://117.148.179.160/PLTV/88888888/224/3221231568/index.m3u8"]
  2454. }, {
  2455. "name": "殭屍劇場",
  2456. "urls": ["http://117.148.179.165/PLTV/88888888/224/3221231742/index.m3u8", "https://3954-quic.liveplay.myqcloud.com/live/3954_363783415.flv"]
  2457. }, {
  2458. "name": "TVB劇場",
  2459. "urls": ["http://117.148.179.157/PLTV/88888888/224/3221231733/index.m3u8"]
  2460. }, {
  2461. "name": "新片放映廳",
  2462. "urls": ["http://117.148.179.160/PLTV/88888888/224/3221231640/index.m3u8"]
  2463. }, {
  2464. "name": "盜墓",
  2465. "urls": ["http://117.148.179.164/PLTV/88888888/224/3221231652/index.m3u8"]
  2466. }, {
  2467. "name": "試膽大會",
  2468. "urls": ["http://117.148.179.166/PLTV/88888888/224/3221231672/index.m3u8"]
  2469. }, {
  2470. "name": "高能燒腦時刻",
  2471. "urls": ["http://117.148.179.169/PLTV/88888888/224/3221231504/index.m3u8"]
  2472. }, {
  2473. "name": "4K劇場",
  2474. "urls": ["http://117.148.179.161/PLTV/88888888/224/3221231624/index.m3u8"]
  2475. }, {
  2476. "name": "愛情公寓",
  2477. "urls": ["http://117.148.179.160/PLTV/88888888/224/3221231583/index.m3u8"]
  2478. }, {
  2479. "name": "軍旅劇場",
  2480. "urls": ["http://117.148.179.145/PLTV/88888888/224/3221231585/index.m3u8"]
  2481. }, {
  2482. "name": "SNH48劇場公演",
  2483. "urls": ["http://117.148.179.139/PLTV/88888888/224/3221231622/index.m3u8"]
  2484. }, {
  2485. "name": "少林劇場",
  2486. "urls": ["http://117.148.179.160/PLTV/88888888/224/3221231628/index.m3u8"]
  2487. }, {
  2488. "name": "神探狄仁傑",
  2489. "urls": ["http://117.148.179.139/PLTV/88888888/224/3221231634/index.m3u8"]
  2490. }, {
  2491. "name": "黃金劇場",
  2492. "urls": ["http://117.148.179.183/PLTV/88888888/224/3221231637/index.m3u8"]
  2493. }, {
  2494. "name": "追劇少女",
  2495. "urls": ["http://117.148.179.179/PLTV/88888888/224/3221231643/index.m3u8"]
  2496. }, {
  2497. "name": "古龍作品集",
  2498. "urls": ["http://117.148.179.160/PLTV/88888888/224/3221231657/index.m3u8"]
  2499. }, {
  2500. "name": "經典賀歲片",
  2501. "urls": ["http://117.148.179.159/PLTV/88888888/224/3221231679/index.m3u8"]
  2502. }, {
  2503. "name": "每日薦影",
  2504. "urls": ["http://117.148.179.162/PLTV/88888888/224/3221231727/index.m3u8"]
  2505. }, {
  2506. "name": "武俠劇場",
  2507. "urls": ["http://117.148.179.160/PLTV/88888888/224/3221231763/index.m3u8"]
  2508. }, {
  2509. "name": "KK_经典好剧",
  2510. "urls": ["http://hpull.kktv8.com/livekktv/153793844/playlist.m3u8"]
  2511. }, {
  2512. "name": "KK_科幻怪兽",
  2513. "urls": ["http://hpull.kktv8.com/livekktv/143960119/playlist.m3u8"]
  2514. }, {
  2515. "name": "KK_喜剧电影",
  2516. "urls": ["http://hpull.kktv8.com/livekktv/99592190/playlist.m3u8"]
  2517. }, {
  2518. "name": "KK_女神影院",
  2519. "urls": ["http://hpull.kktv8.com/livekktv/99350550/playlist.m3u8"]
  2520. }, {
  2521. "name": "斗鱼电影1",
  2522. "urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=925724"]
  2523. }, {
  2524. "name": "斗鱼电影2",
  2525. "urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=122402"]
  2526. }, {
  2527. "name": "斗鱼电影3",
  2528. "urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=85894"]
  2529. }, {
  2530. "name": "斗鱼电影4",
  2531. "urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=310926"]
  2532. }, {
  2533. "name": "斗鱼电影5",
  2534. "urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=263824"]
  2535. }, {
  2536. "name": "斗鱼电影6",
  2537. "urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=747764"]
  2538. }, {
  2539. "name": "斗鱼动漫",
  2540. "urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=206858"]
  2541. }, {
  2542. "name": "斗鱼4K",
  2543. "urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=9249162"]
  2544. }, {
  2545. "name": "国语动漫",
  2546. "urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=6449849"]
  2547. }, {
  2548. "name": "鬼吹灯",
  2549. "urls": ["http://148.70.143.24/cms/yslb/yunshitv/wangyouzhibo/douyu.php?tvplay=7701735"]
  2550. }, {
  2551. "name": "BesTv影院1",
  2552. "urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226757/45949783.smil"]
  2553. }, {
  2554. "name": "Bestv影院2",
  2555. "urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226816/48629572.smil"]
  2556. }, {
  2557. "name": "Bestv影院3",
  2558. "urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226748/45950069.smil"]
  2559. }, {
  2560. "name": "Bestv影院4",
  2561. "urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226797/47878049.smil"]
  2562. }, {
  2563. "name": "Bestv电视剧1",
  2564. "urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226761/45973212.smil"]
  2565. }, {
  2566. "name": "Bestv电视剧2",
  2567. "urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226022/10000100000000060000000002296864_0.smil"]
  2568. }, {
  2569. "name": "Bestv电视剧3",
  2570. "urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226752/45973624.smil"]
  2571. }, {
  2572. "name": "Bestv动画1",
  2573. "urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226756/45973923.smil"]
  2574. }, {
  2575. "name": "Bestv动画2",
  2576. "urls": ["rtsp://183.252.166.199/PLTV/88888888/224/3221226917/57526342.smil"]
  2577. }, {
  2578. "name": "埋堆堆01",
  2579. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561226091-1199561226091-5434639045542019072-2399122575638-10057-A-0-1.m3u8"]
  2580. }, {
  2581. "name": "埋堆堆03",
  2582. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561219773-1199561219773-5434611909938642944-2399122563002-10057-A-0-1.m3u8"]
  2583. }, {
  2584. "name": "埋堆堆04",
  2585. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563459241-1199563459241-5444230351759081472-2399127041938-10057-A-0-1.m3u8"]
  2586. }, {
  2587. "name": "埋堆堆05",
  2588. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563478941-1199563478941-5444314962614812672-2399127081338-10057-A-0-1.m3u8"]
  2589. }, {
  2590. "name": "埋堆堆06",
  2591. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561223711-1199561223711-5434628823519854592-2399122570878-10057-A-0-1.m3u8"]
  2592. }, {
  2593. "name": "埋堆堆07",
  2594. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199564000752-1199564000752-5446556123794505728-2399128124960-10057-A-0-1.m3u8"]
  2595. }, {
  2596. "name": "埋堆堆08",
  2597. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563995848-1199563995848-5446535061274886144-2399128115152-10057-A-0-1.m3u8"]
  2598. }, {
  2599. "name": "埋堆堆09",
  2600. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563493628-1199563493628-5444378042799489024-2399127110712-10057-A-0-1.m3u8"]
  2601. }, {
  2602. "name": "埋堆堆10",
  2603. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563478721-1199563478721-5444314017722007552-2399127080898-10057-A-0-1.m3u8"]
  2604. }, {
  2605. "name": "埋堆堆11",
  2606. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561463578-1199561463578-5435659044440244224-2399123050612-10057-A-0-1.m3u8"]
  2607. }, {
  2608. "name": "埋堆堆12",
  2609. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561245453-1199561245453-5434722204698804224-2399122614362-10057-A-0-1.m3u8"]
  2610. }, {
  2611. "name": "埋堆堆13",
  2612. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199564003640-1199564003640-5446568527660056576-2399128130736-10057-A-0-1.m3u8"]
  2613. }, {
  2614. "name": "埋堆堆14",
  2615. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561153241-1199561153241-5434326157174505472-2399122429938-10057-A-0-1.m3u8"]
  2616. }, {
  2617. "name": "埋堆堆17",
  2618. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561179116-1199561179116-5434437289453289472-2399122481688-10057-A-0-1.m3u8"]
  2619. }, {
  2620. "name": "埋堆堆18",
  2621. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561185543-1199561185543-5434464893208100864-2399122494542-10057-A-0-1.m3u8"]
  2622. }, {
  2623. "name": "埋堆堆19",
  2624. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563478867-1199563478867-5444314644787232768-2399127081190-10057-A-0-1.m3u8"]
  2625. }, {
  2626. "name": "埋堆堆20",
  2627. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199564060588-1199564060588-5446813117457629184-2399128244632-10057-A-0-1.m3u8"]
  2628. }, {
  2629. "name": "埋堆堆21",
  2630. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563481280-1199563481280-5444325008543318016-2399127086016-10057-A-0-1.m3u8"]
  2631. }, {
  2632. "name": "埋堆堆22",
  2633. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561185548-1199561185548-5434464914682937344-2399122494552-10057-A-0-1.m3u8"]
  2634. }, {
  2635. "name": "埋堆堆23",
  2636. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563492830-1199563492830-5444374615415586816-2399127109116-10057-A-0-1.m3u8"]
  2637. }, {
  2638. "name": "埋堆堆24",
  2639. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563484986-1199563484986-5444340925692116992-2399127093428-10057-A-0-1.m3u8"]
  2640. }, {
  2641. "name": "埋堆堆25",
  2642. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561217760-1199561217760-5434603264169476096-2399122558976-10057-A-0-1.m3u8"]
  2643. }, {
  2644. "name": "埋堆堆26",
  2645. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563486009-1199563486009-5444345319443660800-2399127095474-10057-A-0-1.m3u8"]
  2646. }, {
  2647. "name": "埋堆堆27",
  2648. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563491091-1199563491091-5444367146467459072-2399127105638-10057-A-0-1.m3u8"]
  2649. }, {
  2650. "name": "埋堆堆28",
  2651. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563478540-1199563478540-5444313240332926976-2399127080536-10057-A-0-1.m3u8"]
  2652. }, {
  2653. "name": "埋堆堆29",
  2654. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561235975-1199561235975-5434681496998772736-2399122595406-10057-A-0-1.m3u8"]
  2655. }, {
  2656. "name": "埋堆堆30",
  2657. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561240999-1199561240999-5434703074914467840-2399122605454-10057-A-0-1.m3u8"]
  2658. }, {
  2659. "name": "埋堆堆31",
  2660. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563461114-1199563461114-5444238396232826880-2399127045684-10057-A-0-1.m3u8"]
  2661. }, {
  2662. "name": "埋堆堆32",
  2663. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563489752-1199563489752-5444361395506249728-2399127102960-10057-A-0-1.m3u8"]
  2664. }, {
  2665. "name": "埋堆堆33",
  2666. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561181108-1199561181108-5434445845028143104-2399122485672-10057-A-0-1.m3u8"]
  2667. }, {
  2668. "name": "埋堆堆34",
  2669. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561277675-1199561277675-5434860597135015936-2399122678806-10057-A-0-1.m3u8"]
  2670. }, {
  2671. "name": "埋堆堆35",
  2672. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561176240-1199561176240-5434424937127346176-2399122475936-10057-A-0-1.m3u8"]
  2673. }, {
  2674. "name": "埋堆堆37",
  2675. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561277694-1199561277694-5434860678739394560-2399122678844-10057-A-0-1.m3u8"]
  2676. }, {
  2677. "name": "埋堆堆38",
  2678. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561179151-1199561179151-5434437439777144832-2399122481758-10057-A-0-1.m3u8"]
  2679. }, {
  2680. "name": "埋堆堆39",
  2681. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563483195-1199563483195-5444333233405689856-2399127089846-10057-A-0-1.m3u8"]
  2682. }, {
  2683. "name": "埋堆堆40",
  2684. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563452505-1199563452505-5444201420859375616-2399127028466-10057-A-0-1.m3u8"]
  2685. }, {
  2686. "name": "埋堆堆41",
  2687. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563479483-1199563479483-5444317290487087104-2399127082422-10057-A-0-1.m3u8"]
  2688. }, {
  2689. "name": "埋堆堆42",
  2690. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561278783-1199561278783-5434865355958779904-2399122681022-10057-A-0-1.m3u8"]
  2691. }, {
  2692. "name": "埋堆堆43",
  2693. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561277724-1199561277724-5434860807588413440-2399122678904-10057-A-0-1.m3u8"]
  2694. }, {
  2695. "name": "埋堆堆44",
  2696. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563491137-1199563491137-5444367344035954688-2399127105730-10057-A-0-1.m3u8"]
  2697. }, {
  2698. "name": "埋堆堆46",
  2699. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561223732-1199561223732-5434628913714167808-2399122570920-10057-A-0-1.m3u8"]
  2700. }, {
  2701. "name": "埋堆堆48",
  2702. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563489431-1199563489431-5444360016821747712-2399127102318-10057-A-0-1.m3u8"]
  2703. }, {
  2704. "name": "埋堆堆49",
  2705. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561277677-1199561277677-5434860605724950528-2399122678810-10057-A-0-1.m3u8"]
  2706. }, {
  2707. "name": "埋堆堆50",
  2708. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561240090-1199561240090-5434699170789195776-2399122603636-10057-A-0-1.m3u8"]
  2709. }, {
  2710. "name": "埋堆堆51",
  2711. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561178473-1199561178473-5434434527789318144-2399122480402-10057-A-0-1.m3u8"]
  2712. }, {
  2713. "name": "埋堆堆53",
  2714. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199564067003-1199564067003-5446840669672833024-2399128257462-10057-A-0-1.m3u8"]
  2715. }, {
  2716. "name": "埋堆堆54",
  2717. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563551865-1199563551865-5444628168809906176-2399127227186-10057-A-0-1.m3u8"]
  2718. }, {
  2719. "name": "埋堆堆56",
  2720. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561152145-1199561152145-5434321449890349056-2399122427746-10057-A-0-1.m3u8"]
  2721. }, {
  2722. "name": "埋堆堆57",
  2723. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563452337-1199563452337-5444200699304869888-2399127028130-10057-A-0-1.m3u8"]
  2724. }, {
  2725. "name": "埋堆堆58",
  2726. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561176260-1199561176260-5434425023026692096-2399122475976-10057-A-0-1.m3u8"]
  2727. }, {
  2728. "name": "埋堆堆59",
  2729. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561462555-1199561462555-5435654650688700416-2399123048566-10057-A-0-1.m3u8"]
  2730. }, {
  2731. "name": "埋堆堆60",
  2732. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563479466-1199563479466-5444317217472643072-2399127082388-10057-A-0-1.m3u8"]
  2733. }, {
  2734. "name": "埋堆堆61",
  2735. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561153167-1199561153167-5434325839346925568-2399122429790-10057-A-0-1.m3u8"]
  2736. }, {
  2737. "name": "埋堆堆63",
  2738. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561182641-1199561182641-5434452429213007872-2399122488738-10057-A-0-1.m3u8"]
  2739. }, {
  2740. "name": "埋堆堆64",
  2741. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561177177-1199561177177-5434428961511702528-2399122477810-10057-A-0-1.m3u8"]
  2742. }, {
  2743. "name": "埋堆堆65",
  2744. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563564801-1199563564801-5444683728506847232-2399127253058-10057-A-0-1.m3u8"]
  2745. }, {
  2746. "name": "埋堆堆66",
  2747. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199563488528-1199563488528-5444356138466279424-2399127100512-10057-A-0-1.m3u8"]
  2748. }, {
  2749. "name": "埋堆堆67",
  2750. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561181026-1199561181026-5434445492840824832-2399122485508-10057-A-0-1.m3u8"]
  2751. }, {
  2752. "name": "埋堆堆68",
  2753. "urls": ["http://121.12.115.162/txdirect.hls.huya.com/src/1199561158071-1199561158071-5434346901866545152-2399122439598-10057-A-0-1.m3u8"]
  2754. }]
  2755. }, {
  2756. "group": "NewTV",
  2757. "channels": [{"name":"超级电影NewTV","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225717/index.m3u8"]},
  2758. {"name":"超级电视剧","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225716/index.m3u8"]},
  2759. {"name":"超级综艺","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225714/index.m3u8"]},
  2760. {"name":"明星大片","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225664/index.m3u8"]},
  2761. {"name":"欢乐剧场","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225742/index.m3u8"]},
  2762. {"name":"海外剧场","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225671/index.m3u8"]},
  2763. {"name": "愛情喜劇","urls": ["http://183.207.248.71:80/cntv/live1/n-aiqingxj/n-aiqingxj","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225669/index.m3u8","http://112.15.230.34/PLTV/88888888/224/3221229731/index.m3u8","http://117.148.179.45/PLTV/88888888/224/3221229014/index.m3u8"]}, {
  2764. "name": "潮媽辣婆",
  2765. "urls": ["http://183.207.248.71:80/cntv/live1/n-cmlapo/n-cmlapo","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225685/index.m3u8","http://117.148.179.43/PLTV/88888888/224/3221229725/index.m3u8","http://117.148.179.16/PLTV/88888888/224/3221229031/index.m3u8"]
  2766. }, {
  2767. "name": "動作電影",
  2768. "urls": ["http://183.207.248.71:80/cntv/live1/n-dongzuody/n-dongzuody","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225661/index.m3u8","http://117.148.179.15/PLTV/88888888/224/3221229034/index.m3u8","http://117.148.179.44/PLTV/88888888/224/3221229672/index.m3u8"]
  2769. }, {"name":"惊悚悬疑","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225665/index.m3u8","http://117.148.179.43/PLTV/88888888/224/3221229701/index.m3u8","http://117.148.179.51/PLTV/88888888/224/3221229001/index.m3u8"]},{
  2770. "name": "古裝劇場",
  2771. "urls": ["http://183.207.248.71:80/cntv/live1/n-guzhuangjc/n-guzhuangjc","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225663/index.m3u8","http://112.15.230.59/PLTV/88888888/224/3221229710/index.m3u8","http://117.148.179.51/PLTV/88888888/224/3221229011/index.m3u8"]
  2772. }, {"name":"怡伴健康","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225673/index.m3u8","http://117.148.179.32/PLTV/88888888/224/3221229016/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229692/index.m3u8"]},{
  2773. "name": "黑莓電競之夜",
  2774. "urls": ["http://183.207.248.71:80/cntv/live1/wmyx/wmyx"]
  2775. }, {
  2776. "name": "黑莓電影",
  2777. "urls": ["http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-Supermovie/HD-8000k-1080P-Supermovie"]
  2778. }, {
  2779. "name": "黑莓動畫",
  2780. "urls": ["http://183.207.248.71:80/cntv/live1/donghuawg/donghuawg"]
  2781. }, {
  2782. "name": "家庭劇場",
  2783. "urls": ["http://183.207.248.71:80/cntv/live1/n-jiatingjc/n-jiatingjc","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225677/index.m3u8","http://117.148.179.52/PLTV/88888888/224/3221229007/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229695/index.m3u8"]
  2784. }, {
  2785. "name": "金牌綜藝",
  2786. "urls": ["http://183.207.248.71:80/cntv/live1/n-saishijx/n-saishijx","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225666/index.m3u8","http://117.148.179.40/PLTV/88888888/224/3221229704/index.m3u8","http://117.148.179.35/PLTV/88888888/224/3221229002/index.m3u8"]
  2787. }, {
  2788. "name": "精品大劇",
  2789. "urls": ["http://183.207.248.71:80/cntv/live1/n-jdaju/n-jdaju","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225670/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229713/index.m3u8","http://117.148.179.49/PLTV/88888888/224/3221229017/index.m3u8"]
  2790. }, {"name":"炫舞未来","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225719/index.m3u8","http://117.148.179.45/PLTV/88888888/224/3221229155/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229669/index.m3u8"]},{
  2791. "name": "精品體育",
  2792. "urls": ["http://183.207.248.71:80/cntv/live1/n-jtiyu/n-jtiyu","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225715/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229719/index.m3u8","http://117.148.179.47/PLTV/88888888/224/3221229026/index.m3u8"]
  2793. }, {
  2794. "name": "精品綜合",
  2795. "urls": ["http://183.207.248.71:80/cntv/live1/n-mingxingdp/n-mingxingdp","http://117.148.179.40/PLTV/88888888/224/3221229005/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229660/index.m3u8"]
  2796. }, {"name":"精品纪录","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225672/index.m3u8","http://117.148.179.43/PLTV/88888888/224/3221229707/index.m3u8","http://117.148.179.21/PLTV/88888888/224/3221229013/index.m3u8"]},{
  2797. "name": "軍旅劇場",
  2798. "urls": ["http://183.207.248.71:80/cntv/live1/n-junlvjc/n-junlvjc","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225676/index.m3u8","http://117.148.179.52/PLTV/88888888/224/3221229004/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229698/index.m3u8"]
  2799. }, {
  2800. "name": "軍事評論",
  2801. "urls": ["http://183.207.248.71:80/cntv/live1/n-junshipl/n-junshipl","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225668/index.m3u8","http://117.148.179.43/PLTV/88888888/224/3221229716/index.m3u8","http://117.148.179.51/PLTV/88888888/224/3221229008/index.m3u8"]
  2802. }, {
  2803. "name": "農業致富",
  2804. "urls": ["http://183.207.248.71:80/cntv/live1/n-nongyezf/n-nongyezf","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225683/index.m3u8","http://117.148.179.45/PLTV/88888888/224/3221229029/index.m3u8","http://117.148.179.24/PLTV/88888888/224/3221229666/index.m3u8"]
  2805. }, {
  2806. "name": "熱播精選",
  2807. "urls": ["http://183.207.248.71:80/cntv/live1/n-xiqumd/n-xiqumd","http://117.148.179.15/PLTV/88888888/224/3221229062/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229654/index.m3u8"]
  2808. }, {"name":"武搏世界","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225680/index.m3u8","http://112.15.230.38/PLTV/88888888/224/3221229722/index.m3u8","http://117.148.179.16/PLTV/88888888/224/3221229041/index.m3u8"]},{
  2809. "name": "中國功夫",
  2810. "urls": ["http://183.207.248.71:80/cntv/live1/n-gzkongfu/n-gzkongfu","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225681/index.m3u8","http://117.148.179.47/PLTV/88888888/224/3221229019/index.m3u8","http://117.148.179.37/PLTV/88888888/224/3221229663/index.m3u8"]
  2811. }]
  2812. }, {
  2813. "group": "iHOT",
  2814. "channels": [{"name":"求索科学iHOT","urls":["http://39.134.134.85/000000001000/6000000002000032344/1.m3u8"]},
  2815. {"name":"求索纪录","urls":["http://39.134.134.85/000000001000/6000000002000032052/1.m3u8"]},
  2816. {"name":"求索生活","urls":["http://39.134.134.85/000000001000/6000000002000003382/1.m3u8"]},
  2817. {"name":"求索动物","urls":["http://39.134.134.85/000000001000/6000000002000010046/1.m3u8"]},
  2818. {"name":"爱院线","urls":["http://39.134.134.85/000000001000/6000000006000030630/1.m3u8"]},
  2819. {"name":"爱科幻","urls":["http://39.134.134.85/000000001000/6000000006000020630/1.m3u8"]},
  2820. {"name":"爱喜剧","urls":["http://39.134.134.85/000000001000/6000000006000010630/1.m3u8"]},
  2821. {"name":"爱都市","urls":["http://39.134.134.85/000000001000/6000000006000080630/1.m3u8"]},
  2822. {"name":"爱家庭","urls":["http://39.134.134.85/000000001000/6000000006000090630/1.m3u8"]},
  2823. {"name":"爱青春","urls":["http://39.134.134.85/000000001000/6000000006000100630/1.m3u8"]},
  2824. {"name":"爱江湖","urls":["http://39.134.134.85/000000001000/6000000006000110630/1.m3u8"]},
  2825. {"name":"爱浪漫","urls":["http://39.134.134.85/000000001000/6000000006000040630/1.m3u8"]},
  2826. {"name":"爱悬疑","urls":["http://39.134.134.85/000000001000/6000000006000050630/1.m3u8","http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230098/index.m3u8"]},
  2827. {"name":"爱玩具","urls":["http://39.134.134.85/000000001000/6000000006000220630/1.m3u8"]},
  2828. {"name":"爱电竞","urls":["http://39.134.134.85/000000001000/6000000006000230630/1.m3u8"]},
  2829. {"name":"爱赛车","urls":["http://39.134.134.85/000000001000/6000000006000240630/1.m3u8","http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230032/index.m3u8"]},
  2830. {"name":"爱旅行","urls":["http://39.134.134.85/000000001000/6000000006000250630/1.m3u8","http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230052/index.m3u8"]},
  2831. {"name":"爱怀旧","urls":["http://39.134.134.85/000000001000/6000000006000260630/1.m3u8"]},
  2832. {"name":"爱奇谈","urls":["http://39.134.134.85/000000001000/6000000006000270630/1.m3u8"]},
  2833. {"name":"爱动漫","urls":["http://39.134.134.85/000000001000/6000000006000280630/1.m3u8"]},
  2834. {"name":"爱体育","urls":["http://39.134.134.85/000000001000/6000000006000290630/1.m3u8","http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230034/index.m3u8"]},
  2835. {"name":"爱探索","urls":["http://39.134.134.85/000000001000/6000000006000300630/1.m3u8","http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230112/index.m3u8"]},
  2836. {"name":"爱经典","urls":["http://39.134.134.85/000000001000/6000000006000060630/1.m3u8","http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230101/index.m3u8"]},
  2837. {"name":"爱谍战","urls":["http://39.134.134.85/000000001000/6000000006000070630/1.m3u8","http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230092/index.m3u8"]},
  2838. {"name":"爱美食","urls":["http://39.134.134.85/000000001000/6000000006000120630/1.m3u8","http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230115/index.m3u8"]},
  2839. {"name":"爱娱乐","urls":["http://39.134.134.85/000000001000/6000000006000130630/1.m3u8"]},
  2840. {"name":"爱时尚","urls":["http://39.134.134.85/000000001000/6000000006000140630/1.m3u8","http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230109/index.m3u8"]},
  2841. {"name":"爱历史","urls":["http://39.134.134.85/000000001000/6000000006000150630/1.m3u8","http://117.148.179.50/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230100/index.m3u8"]},
  2842. {"name":"爱科学","urls":["http://39.134.134.85/000000001000/6000000006000160630/1.m3u8"]},
  2843. {"name":"爱军武","urls":["http://39.134.134.85/000000001000/6000000006000170630/1.m3u8"]},
  2844. {"name":"爱幼教","urls":["http://39.134.134.85/000000001000/6000000006000180630/1.m3u8"]},
  2845. {"name":"爱猎奇","urls":["http://39.134.134.85/000000001000/6000000006000190630/1.m3u8"]},
  2846. {"name":"爱解密","urls":["http://39.134.134.85/000000001000/6000000006000200630/1.m3u8"]},
  2847. {"name":"爱世界","urls":["http://39.134.134.85/000000001000/6000000006000210630/1.m3u8"]}]
  2848. }, {
  2849. "group": "CIBN",
  2850. "channels": [{"name":"综合CIBN","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226420/index.m3u8"]},
  2851. {"name":"经典剧场","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226402/index.m3u8","http://117.148.179.176/PLTV/88888888/224/3221231595/index.m3u8"]},
  2852. {"name":"古装剧场","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226400/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231625/index.m3u8"]},
  2853. {"name":"骄阳剧场","urls":["http://117.148.179.165/PLTV/88888888/224/3221231745/index.m3u8","http://211.94.219.178:18080/PLTV/68/224/3221226423/index.m3u8"]},
  2854. {"name":"微电影","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226441/index.m3u8","http://117.148.179.157/PLTV/88888888/224/3221231586/index.m3u8"]},
  2855. {"name":"纪录片","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226437/index.m3u8","http://117.148.179.154/PLTV/88888888/224/3221231594/index.m3u8"]},
  2856. {"name":"流金岁月","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226425/index.m3u8","http://117.148.179.158/PLTV/88888888/224/3221231664/index.m3u8"]},
  2857. {"name":"时尚生活","urls":["http://117.148.179.183/PLTV/88888888/224/3221231489/index.m3u8"]},
  2858. {"name":"风尚运动","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226429/index.m3u8"]},
  2859. {"name":"真人秀","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226416/index.m3u8"]},
  2860. {"name":"动画乐园","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226406/index.m3u8"]},
  2861. {"name":"SiTV全纪实","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226580/index.m3u8"]},
  2862. {"name":"SiTV极速汽车","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226574/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226583/index.m3u8"]},
  2863. {"name":"SiTV游戏风云","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226579/index.m3u8"]},
  2864. {"name":"SiTV都市剧场","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226581/index.m3u8"]}]
  2865. }, {
  2866. "group": "风景区",
  2867. "channels": [{"name":"全国风景总览","urls":["https://gcalic.v.myalicdn.com/gc/wgw05_1/index.m3u8?contentid=2820180516001"]},
  2868. {"name":"北京-南宫温泉休闲度假区","urls":["http://gcalic.v.myalicdn.com/gc/tyhjntyz_1/index.m3u8?contentid=2820180516001"]},
  2869. {"name":"北京-水立方","urls":["http://gcalic.v.myalicdn.com/gc/gccntv241-slf01_1/index.m3u8?contentid=2820180516001"]},
  2870. {"name":"北京-黄花城水长城01","urls":["https://gcalic.v.myalicdn.com/gc/wgw01_1/index.m3u8?contentid=2820180516001","https://gcalic.v.myalicdn.com/gc/wgw02_1/index.m3u8?contentid=2820180516001","https://gcalic.v.myalicdn.com/gc/wgw03_1/index.m3u8?contentid=2820180516001","https://gcalic.v.myalicdn.com/gc/wgw04_1/index.m3u8?contentid=2820180516001"]},
  2871. {"name":"北京-八达岭长城南七楼","urls":["http://gcalic.v.myalicdn.com/gc/bgws7_1/index.m3u8?contentid=2820180516001"]},
  2872. {"name":"北京-中央电视塔东","urls":["http://gcalic.v.myalicdn.com/gc/ztd_1/index.m3u8?contentid=2820180516001"]},
  2873. {"name":"天津-天津之眼","urls":["https://gcalic.v.myalicdn.com/gc/tjhh01_1/index.m3u8?contentid=2820180516001"]},
  2874. {"name":"天津-天津海河","urls":["https://gcalic.v.myalicdn.com/gc/tjhh02_1/index.m3u8?contentid=2820180516001"]},
  2875. {"name":"山西-悬空寺全景","urls":["https://gcalic.v.myalicdn.com/gc/hsxksqj_1/index.m3u8?contentid=2820180516001"]},
  2876. {"name":"辽宁-沈阳金廊","urls":["https://gcalic.v.myalicdn.com/gc/zsslsjjfsd_1/index.m3u8?contentid=2820180516001"]},
  2877. {"name":"黑龙江-雪乡梦幻家园","urls":["https://gcalic.v.myalicdn.com/gc/mdjxxmhjyxj_1/index.m3u8?contentid=2820180516001"]},
  2878. {"name":"江苏-无锡鼋头渚长春桥","urls":["https://gcksc.v.kcdnvip.com/gc/dlst02_1/index.m3u8?BR=md®ion=beijing"]},
  2879. {"name":"江苏-无锡鼋头渚赏樱阁","urls":["https://gcalic.v.myalicdn.com/gc/pshdxg01_1/index.m3u8?contentid=2820180516001"]},
  2880. {"name":"江苏-南京牛首山","urls":["https://gcalic.v.myalicdn.com/gc/nss01_1/index.m3u8?contentid=2820180516001"]},
  2881. {"name":"江苏-南京玄武湖公园","urls":["https://gcalic.v.myalicdn.com/gc/xwh01_1/index.m3u8?contentid=2820180516001"]},
  2882. {"name":"江苏-徐州云龙湖观景台西","urls":["https://gcalic.v.myalicdn.com/gc/ylh04_1/index.m3u8?contentid=2820180516001"]},
  2883. {"name":"江苏-徐州云龙湖观景台南","urls":["https://gcalic.v.myalicdn.com/gc/ylh03_1/index.m3u8?contentid=2820180516001"]},
  2884. {"name":"江苏-兴化千垛景区","urls":["https://mlivecncc.v.wscdns.com/mlive/mlive_djy02_1/index.m3u8?contentid=2820180516001"]},
  2885. {"name":"浙江-云栖小镇","urls":["https://gcalic.v.myalicdn.com/gc/hnttpgsz_1/index.m3u8?contentid=2820180516001"]},
  2886. {"name":"浙江-千岛湖","urls":["https://gcalic.v.myalicdn.com/gc/caqdh_1/index.m3u8?contentid=2820180516001"]},
  2887. {"name":"浙江-普陀山","urls":["https://gcalic.v.myalicdn.com/gc/pts01_1/index.m3u8?contentid=2820180516001"]},
  2888. {"name":"浙江-舟山东极岛","urls":["https://gcalic.v.myalicdn.com/gc/djd01_1/index.m3u8?contentid=2820180516001"]},
  2889. {"name":"浙江-丽水仙都风景区","urls":["https://gcalic.v.myalicdn.com/gc/xdfjq01_1/index.m3u8?contentid=2820180516001"]},
  2890. {"name":"浙江-乌镇蓝印花布","urls":["https://gcalic.v.myalicdn.com/gc/zjwzlyhb_1/index.m3u8?contentid=2820180516001"]},
  2891. {"name":"浙江-乌镇全景","urls":["https://gcalic.v.myalicdn.com/gc/zjwzblt_1/index.m3u8?contentid=2820180516001"]},
  2892. {"name":"浙江-乌镇西市河","urls":["https://gcalic.v.myalicdn.com/gc/zjwzbblh_1/index.m3u8?contentid=2820180516001"]},
  2893. {"name":"浙江-乌镇龙形田","urls":["https://gcalic.v.myalicdn.com/gc/zjwzlxt_1/index.m3u8?contentid=2820180516001"]},
  2894. {"name":"安徽-西递牌坊","urls":["https://gcalic.v.myalicdn.com/gc/yxxdpf_1/index.m3u8?contentid=2820180516001"]},
  2895. {"name":"安徽-宏村月沼","urls":["https://gcalic.v.myalicdn.com/gc/yxhcyz_1/index.m3u8?contentid=2820180516001"]},
  2896. {"name":"安徽-西递半山亭","urls":["https://gcalic.v.myalicdn.com/gc/yxxdbst_1/index.m3u8?contentid=2820180516001"]},
  2897. {"name":"安徽-黟县芦村远眺","urls":["https://gcalic.v.myalicdn.com/gc/yxlcyt_1/index.m3u8?contentid=2820180516001"]},
  2898. {"name":"安徽-宏村南湖","urls":["https://gcalic.v.myalicdn.com/gc/yxhcnh_1/index.m3u8?contentid=2820180516001"]},
  2899. {"name":"安徽-黄山","urls":["https://gcalic.v.myalicdn.com/gc/ahhs01_1/index.m3u8?contentid=2820180516001"]},
  2900. {"name":"安徽-黄山始信新道","urls":["https://gcalic.v.myalicdn.com/gc/hsyg_1/index.m3u8?contentid=2820180516001"]},
  2901. {"name":"安徽-黄山卧云峰","urls":["https://gcalic.v.myalicdn.com/gc/hswlf_1/index.m3u8?contentid=2820180516001"]},
  2902. {"name":"安徽-黄山梦笔生花","urls":["https://gcalic.v.myalicdn.com/gc/hsmbsh_1/index.m3u8?contentid=2820180516001"]},
  2903. {"name":"安徽-黄山光明顶","urls":["https://gcalic.v.myalicdn.com/gc/hsgmd_1/index.m3u8?contentid=2820180516001"]},
  2904. {"name":"安徽-黄山飞来石","urls":["https://gcalic.v.myalicdn.com/gc/hsptgy_1/index.m3u8?contentid=2820180516001"]},
  2905. {"name":"安徽-黄山平天矼","urls":["https://gcalic.v.myalicdn.com/gc/hsptgz_1/index.m3u8?contentid=2820180516001"]},
  2906. {"name":"安徽-黄山排云亭","urls":["https://gcalic.v.myalicdn.com/gc/hspyt_1/index.m3u8?contentid=2820180516001"]},
  2907. {"name":"安徽-九华山拜经台","urls":["https://gcalic.v.myalicdn.com/gc/jhs02_1/index.m3u8?contentid=2820180516001"]},
  2908. {"name":"安徽-九华山","urls":["https://gcalic.v.myalicdn.com/gc/jhs05_1/index.m3u8?contentid=2820180516001"]},
  2909. {"name":"安徽-九华山花台","urls":["https://gcalic.v.myalicdn.com/gc/jhs01_1/index.m3u8?contentid=2820180516001"]},
  2910. {"name":"福建-厦门鼓浪屿","urls":["https://gcalic.v.myalicdn.com/gc/gly01_1/index.m3u8?contentid=2820180516001"]},
  2911. {"name":"福建-武夷山玉女峰","urls":["https://gcalic.v.myalicdn.com/gc/wysynf_1/index.m3u8?contentid=2820180516001"]},
  2912. {"name":"福建-宁德太姥山景区","urls":["https://gcalic.v.myalicdn.com/gc/tms01_1/index.m3u8?contentid=2820180516001"]},
  2913. {"name":"福建-漳州六鳌翡翠湾","urls":["https://gcalic.v.myalicdn.com/gc/fcw01_1/index.m3u8?contentid=2820180516001"]},
  2914. {"name":"福建-醉美沙滩翡翠湾","urls":["https://gcalic.v.myalicdn.com/gc/fcw03_1/index.m3u8?contentid=2820180516001"]},
  2915. {"name":"江西-婺源江岭2号观景台","urls":["https://gcalic.v.myalicdn.com/gc/wygjt2_1/index.m3u8?contentid=2820180516001"]},
  2916. {"name":"江西-婺源江岭1号观景台","urls":["https://gcalic.v.myalicdn.com/gc/wygjt1_1/index.m3u8?contentid=2820180516001"]},
  2917. {"name":"江西-龙虎山-中间水泡","urls":["https://gcalic.v.myalicdn.com/gc/lhszjsp_1/index.m3u8?contentid=2820180516001"]},
  2918. {"name":"山东-泰山","urls":["https://gcalic.v.myalicdn.com/gc/taishan04_1/index.m3u8?contentid=2820180516001"]},
  2919. {"name":"山东-泰山主峰","urls":["https://gcalic.v.myalicdn.com/gc/taishan01_1/index.m3u8?contentid=2820180516001"]},
  2920. {"name":"山东-瞻鲁台","urls":["https://gcalic.v.myalicdn.com/gc/hkts06_1/index.m3u8?contentid=2820180516001"]},
  2921. {"name":"山东-泰山十八盘","urls":["https://gcalic.v.myalicdn.com/gc/taishan05_1/index.m3u8?contentid=2820180516001"]},
  2922. {"name":"山东-玉皇顶西","urls":["https://gcalic.v.myalicdn.com/gc/hkts11_1/index.m3u8?contentid=2820180516001"]},
  2923. {"name":"山东-玉皇顶东","urls":["https://gcalic.v.myalicdn.com/gc/hkts10_1/index.m3u8?contentid=2820180516001"]},
  2924. {"name":"山东-太平岭","urls":["https://gcalic.v.myalicdn.com/gc/hkts09_1/index.m3u8?contentid=2820180516001"]},
  2925. {"name":"山东-扇子崖","urls":["https://gcalic.v.myalicdn.com/gc/hkts08_1/index.m3u8?contentid=2820180516001"]},
  2926. {"name":"山东-南天门","urls":["https://gcalic.v.myalicdn.com/gc/hkts07_1/index.m3u8?contentid=2820180516001"]},
  2927. {"name":"山东-开山","urls":["https://gcalic.v.myalicdn.com/gc/hkts05_1/index.m3u8?contentid=2820180516001"]},
  2928. {"name":"山东-经石峪","urls":["https://gcalic.v.myalicdn.com/gc/hkts04_1/index.m3u8?contentid=2820180516001"]},
  2929. {"name":"山东-碧霞祠","urls":["https://gcalic.v.myalicdn.com/gc/hkts03_1/index.m3u8?contentid=2820180516001"]},
  2930. {"name":"山东-白云亭悬崖","urls":["https://gcalic.v.myalicdn.com/gc/hkts02_1/index.m3u8?contentid=2820180516001"]},
  2931. {"name":"山东-拱北日出","urls":["https://gcalic.v.myalicdn.com/gc/hkts01_1/index.m3u8?contentid=2820180516001"]},
  2932. {"name":"山东-泰山天街","urls":["https://gcalic.v.myalicdn.com/gc/taishan07_1/index.m3u8?contentid=2820180516001"]},
  2933. {"name":"山东-泰山玉皇顶","urls":["https://gcalic.v.myalicdn.com/gc/taishan06_1/index.m3u8?contentid=2820180516001"]},
  2934. {"name":"山东-泰山大观峰","urls":["https://gcalic.v.myalicdn.com/gc/taishan03_1/index.m3u8?contentid=2820180516001"]},
  2935. {"name":"河南-郑东新区千玺广场","urls":["https://gcalic.v.myalicdn.com/gc/zdxq01_1/index.m3u8?contentid=2820180516001"]},
  2936. {"name":"河南-少林寺广场","urls":["https://gcalic.v.myalicdn.com/gc/zsslsgc_1/index.m3u8?contentid=2820180516001"]},
  2937. {"name":"河南-云台山小寨沟","urls":["https://gcalic.v.myalicdn.com/gc/ytsxzg_1/index.m3u8?contentid=2820180516001"]},
  2938. {"name":"河南-云台山百家岩","urls":["https://gcalic.v.myalicdn.com/gc/ytsbjy_1/index.m3u8?contentid=2820180516001"]},
  2939. {"name":"河南-云台山红石峡","urls":["https://gcalic.v.myalicdn.com/gc/ytshsx_1/index.m3u8?contentid=2820180516001"]},
  2940. {"name":"河南-云台山茱萸峰","urls":["https://gcalic.v.myalicdn.com/gc/ytszyf_1/index.m3u8?contentid=2820180516001"]},
  2941. {"name":"河南-八里沟桃花湾瀑布","urls":["https://gcalic.v.myalicdn.com/gc/blg05_1/index.m3u8?contentid=2820180516001"]},
  2942. {"name":"河南-八里沟天界山玻璃栈道","urls":["https://gcalic.v.myalicdn.com/gc/blg03_1/index.m3u8?contentid=2820180516001"]},
  2943. {"name":"湖北-武汉黄鹤楼","urls":["https://gcalic.v.myalicdn.com/gc/qdls02_1/index.m3u8?contentid=2820180516001"]},
  2944. {"name":"湖北-龙王庙","urls":["https://gcalic.v.myalicdn.com/gc/hnttbdjd_1/index.m3u8?contentid=2820180516001"]},
  2945. {"name":"湖北-武汉长江大桥","urls":["https://gcalic.v.myalicdn.com/gc/qdls04_1/index.m3u8?contentid=2820180516001"]},
  2946. {"name":"湖北-金丝猴01","urls":["https://gcalic.v.myalicdn.com/gc/jshhd01_1/index.m3u8?contentid=2820180516001"]},
  2947. {"name":"湖南-天门山天门洞","urls":["https://gcalic.v.myalicdn.com/gc/tmstmd01_1/index.m3u8?contentid=2820180516001"]},
  2948. {"name":"湖南-天门山天空步道","urls":["https://gcalic.v.myalicdn.com/gc/tms02_1/index.m3u8?contentid=2820180516001"]},
  2949. {"name":"湖南-天门山西线玻璃栈道","urls":["https://gcalic.v.myalicdn.com/gc/tms05_1/index.m3u8?contentid=2820180516001"]},
  2950. {"name":"湖南-天门山云梦仙顶","urls":["https://gcalic.v.myalicdn.com/gc/tms04_1/index.m3u8?contentid=2820180516001"]},
  2951. {"name":"湖南-十八洞村","urls":["https://gcalic.v.myalicdn.com/gc/sbd01_1/index.m3u8?contentid=2820180516001"]},
  2952. {"name":"湖南-凤凰古城南华山","urls":["https://gcalic.v.myalicdn.com/gc/fhgcdnhs_1/index.m3u8?contentid=2820180516001"]},
  2953. {"name":"湖南-凤凰古城东关门","urls":["https://gcalic.v.myalicdn.com/gc/fhgcdgm_1/index.m3u8?contentid=2820180516001"]},
  2954. {"name":"湖南-张家界水绕四门","urls":["https://gcalic.v.myalicdn.com/gc/zjjsrsm_1/index.m3u8?contentid=2820180516001"]},
  2955. {"name":"湖南-张家界将军列队","urls":["https://gcalic.v.myalicdn.com/gc/zjjjjdl_1/index.m3u8?contentid=2820180516001"]},
  2956. {"name":"湖南-阿凡达悬浮山","urls":["https://gcalic.v.myalicdn.com/gc/zjjafdxfs_1/index.m3u8?contentid=2820180516001"]},
  2957. {"name":"湖南-张家界迷魂台","urls":["https://gcalic.v.myalicdn.com/gc/zjjmht_1/index.m3u8?contentid=2820180516001"]},
  2958. {"name":"湖南-宝峰湖","urls":["https://gcalic.v.myalicdn.com/gc/zjjbfh_1/index.m3u8?contentid=2820180516001"]},
  2959. {"name":"广东-东莞中心广场","urls":["https://gcalic.v.myalicdn.com/gc/zsslstpt_1/index.m3u8?contentid=2820180516001"]},
  2960. {"name":"广东-深圳世界之窗","urls":["https://gcalic.v.myalicdn.com/gc/sjzc01_1/index.m3u8?contentid=2820180516001"]},
  2961. {"name":"广东-丹霞山丹梯铁锁","urls":["https://gcalic.v.myalicdn.com/gc/dxsdtts_1/index.m3u8?contentid=2820180516001"]},
  2962. {"name":"都江堰青青","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao20_1/index.m3u8"]},
  2963. {"name":"都江堰妃妃","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao13_1/index.m3u8"]},
  2964. {"name":"都江堰娅祥","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao15_1/index.m3u8"]},
  2965. {"name":"都江堰瑞瑞","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao11_1/index.m3u8"]},
  2966. {"name":"都江堰英英","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao16_1/index.m3u8"]},
  2967. {"name":"都江堰壹壹玖玖","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao14_1/index.m3u8"]},
  2968. {"name":"都江堰水秀","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao12_1/index.m3u8"]},
  2969. {"name":"都江堰神树萍①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao25_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao26_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao22_1/index.m3u8"]},
  2970. {"name":"怡然②","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao18_1/index.m3u8"]},
  2971. {"name":"基地幼年园①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao03_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao04_1/index.m3u8"]},
  2972. {"name":"基地母子园①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao07_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao08_1/index.m3u8"]},
  2973. {"name":"基地幼儿园①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao05_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao06_1/index.m3u8"]},
  2974. {"name":"基地成年园①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao01_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao02_1/index.m3u8"]},
  2975. {"name":"基地别墅","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao09_1/index.m3u8","http://gccnchwc.v.cdn20.com/gc/xiongmao09_1.flv","http://gcalic.v.myalicdn.com/gc/xiongmao10_1/index.m3u8"]},
  2976. {"name":"核桃坪","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao19_1/index.m3u8"]},
  2977. {"name":"卧龙臭水","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao17_1/index.m3u8"]},
  2978. {"name":"大丰麋鹿","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao23_1/index.m3u8"]},
  2979. {"name":"白马雪山","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao24_1/index.m3u8"]},
  2980. {"name":"成都高清","urls":["http://gcalic.v.myalicdn.com/gc/ipanda_1td/index.m3u8"]},
  2981. {"name":"都江堰高清","urls":["http://gcalic.v.myalicdn.com/gc/ipanda1000_1td/index.m3u8"]}]
  2982. },
  2983. {"group": "斗鱼","channels": [{"name":"牛叔说电影","urls":["http://epg.112114.xyz/douyu/2758565"]},
  2984. {"name":"小片说电影","urls":["http://epg.112114.xyz/douyu/4258555"]},
  2985. {"name":"侃片大师兄","urls":["http://epg.112114.xyz/douyu/9338839"]},
  2986. {"name":"特辑影院","urls":["http://epg.112114.xyz/douyu/3637778"]},
  2987. {"name":"女神金","urls":["http://epg.112114.xyz/douyu/747764"]},
  2988. {"name":"周末恐怖","urls":["http://epg.112114.xyz/douyu/3637726"]},
  2989. {"name":"周末经典","urls":["http://epg.112114.xyz/douyu/3637765"]},
  2990. {"name":"林正英僵尸","urls":["http://epg.112114.xyz/douyu/218859"]},
  2991. {"name":"小鸽陪看","urls":["http://epg.112114.xyz/douyu/3928"]},
  2992. {"name":"欧美恐怖","urls":["http://epg.112114.xyz/douyu/96577"]},
  2993. {"name":"动漫","urls":["http://epg.112114.xyz/douyu/206858"]},
  2994. {"name":"恐怖电影","urls":["http://epg.112114.xyz/douyu/310926"]},
  2995. {"name":"香港赌片","urls":["http://epg.112114.xyz/douyu/315457"]},
  2996. {"name":"米娅陪看","urls":["http://epg.112114.xyz/douyu/6537888"]},
  2997. {"name":"黎黎来了","urls":["http://epg.112114.xyz/douyu/7116591"]},
  2998. {"name":"漫威科幻","urls":["http://epg.112114.xyz/douyu/6140589"]},
  2999. {"name":"欧美科幻","urls":["http://epg.112114.xyz/douyu/9651304"]},
  3000. {"name":"经典喜剧","urls":["http://epg.112114.xyz/douyu/9650887"]},
  3001. {"name":"国产大片","urls":["http://epg.112114.xyz/douyu/8986148"]},
  3002. {"name":"刘德华","urls":["http://epg.112114.xyz/douyu/2516864"]},
  3003. {"name":"神乐华语","urls":["http://epg.112114.xyz/douyu/85894"]},
  3004. {"name":"神乐经典","urls":["http://epg.112114.xyz/douyu/122402"]},
  3005. {"name":"神乐欧美","urls":["http://epg.112114.xyz/douyu/20415"]},
  3006. {"name":"神乐粤语","urls":["http://epg.112114.xyz/douyu/6566671"]},
  3007. {"name":"贝爷MAX","urls":["http://epg.112114.xyz/douyu/4332"]},
  3008. {"name":"贝爷影厅","urls":["http://epg.112114.xyz/douyu/252802","http://epg.112114.xyz/douyu/36337","http://epg.112114.xyz/douyu/925724"]},
  3009. {"name":"甜牛奶","urls":["http://epg.112114.xyz/douyu/7494871"]},
  3010. {"name":"兔兔陪看","urls":["http://epg.112114.xyz/douyu/1504768"]},
  3011. {"name":"贝贝看片","urls":["http://epg.112114.xyz/douyu/431460"]},
  3012. {"name":"小栗子","urls":["http://epg.112114.xyz/douyu/7254536"]},
  3013. {"name":"斗小饼Q","urls":["http://epg.112114.xyz/douyu/1735337"]},
  3014. {"name":"晴宝","urls":["http://epg.112114.xyz/douyu/5870248"]},
  3015. {"name":"瑶瑶","urls":["http://epg.112114.xyz/douyu/2935323"]}
  3016. ]},
  3017. {"group": "教育网源","channels": [{"name":"CCTV-1高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv1hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv1.m3u8"]},
  3018. {"name":"CCTV-2高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv2hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv2.m3u8"]},
  3019. {"name":"CCTV-3高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv3hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv3.m3u8"]},
  3020. {"name":"CCTV-4高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv4hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv4.m3u8"]},
  3021. {"name":"CCTV-5高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv5hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv5.m3u8"]},
  3022. {"name":"CCTV-5+高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv5phd.m3u8"]},
  3023. {"name":"CCTV-6高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv6hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv6.m3u8"]},
  3024. {"name":"CCTV-7高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv7hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv7.m3u8"]},
  3025. {"name":"CCTV-8高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv8hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv8.m3u8"]},
  3026. {"name":"CCTV-9高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv9hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv9.m3u8"]},
  3027. {"name":"CCTV-10高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv10hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv10.m3u8"]},
  3028. {"name":"CCTV-11戏曲","urls":["http://live.scuec.edu.cn:8080/hls/cctv11.m3u8"]},
  3029. {"name":"CCTV-12高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv12hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv12.m3u8"]},
  3030. {"name":"CCTV-13高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv13hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv13.m3u8"]},
  3031. {"name":"CCTV-15音乐","urls":["http://live.scuec.edu.cn:8080/hls/cctv15.m3u8"]},
  3032. {"name":"CCTV-14高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv14hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv14.m3u8"]},
  3033. {"name":"CCTV-17高清","urls":["http://live.scuec.edu.cn:8080/hls/cctv17hd.m3u8","http://live.scuec.edu.cn:8080/hls/cctv17.m3u8"]},
  3034. {"name":"CHC高清电影","urls":["http://live.scuec.edu.cn:8080/hls/chchd.m3u8"]},
  3035. {"name":"CHC家庭影院","urls":["http://live.scuec.edu.cn:8080/hls/chctv.m3u8"]},
  3036. {"name":"CHC动作电影","urls":["http://live.scuec.edu.cn:8080/hls/chcatv.m3u8"]},
  3037. {"name":"凤凰资讯高清","urls":["http://live.scuec.edu.cn:8080/hls/fhzxhd.m3u8"]},
  3038. {"name":"凤凰中文高清","urls":["http://live.scuec.edu.cn:8080/hls/fhzwhd.m3u8"]},
  3039. {"name":"凤凰中文","urls":["http://live.scuec.edu.cn:8080/hls/fhzw.m3u8"]},
  3040. {"name":"凤凰资讯","urls":["http://live.scuec.edu.cn:8080/hls/fhzx.m3u8"]},
  3041. {"name":"凤凰电影","urls":["http://live.scuec.edu.cn:8080/hls/fhdy.m3u8"]},
  3042. {"name":"Discovery","urls":["http://live.scuec.edu.cn:8080/hls/discovery.m3u8"]},
  3043. {"name":"国家地理","urls":["http://live.scuec.edu.cn:8080/hls/natlgeo.m3u8"]},
  3044. {"name":"Channel V","urls":["http://live.scuec.edu.cn:8080/hls/channelv.m3u8"]},
  3045. {"name":"星空卫视","urls":["http://live.scuec.edu.cn:8080/hls/startv.m3u8"]},
  3046. {"name":"Star Sports","urls":["http://live.scuec.edu.cn:8080/hls/starsports.m3u8"]},
  3047. {"name":"湖南卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/hunanhd.m3u8","http://live.scuec.edu.cn:8080/hls/hunantv.m3u8"]},
  3048. {"name":"浙江卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/zjhd.m3u8","http://live.scuec.edu.cn:8080/hls/zjtv.m3u8"]},
  3049. {"name":"江苏卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/jshd.m3u8","http://live.scuec.edu.cn:8080/hls/jstv.m3u8"]},
  3050. {"name":"东方卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/dfhd.m3u8","http://live.scuec.edu.cn:8080/hls/dftv.m3u8"]},
  3051. {"name":"安徽卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/ahhd.m3u8","http://live.scuec.edu.cn:8080/hls/ahtv.m3u8"]},
  3052. {"name":"黑龙江卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/hljhd.m3u8","http://live.scuec.edu.cn:8080/hls/hljtv.m3u8"]},
  3053. {"name":"辽宁卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/lnhd.m3u8","http://live.scuec.edu.cn:8080/hls/lntv.m3u8"]},
  3054. {"name":"深圳卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/szhd.m3u8","http://live.scuec.edu.cn:8080/hls/sztv.m3u8"]},
  3055. {"name":"广东卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/gdhd.m3u8","http://live.scuec.edu.cn:8080/hls/gdtv.m3u8"]},
  3056. {"name":"天津卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/tjhd.m3u8","http://live.scuec.edu.cn:8080/hls/tjtv.m3u8"]},
  3057. {"name":"湖北卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/hbhd.m3u8","http://live.scuec.edu.cn:8080/hls/hbtv.m3u8"]},
  3058. {"name":"山东卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/sdhd.m3u8","http://live.scuec.edu.cn:8080/hls/sdtv.m3u8"]},
  3059. {"name":"重庆卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/cqhd.m3u8","http://live.scuec.edu.cn:8080/hls/cqtv.m3u8"]},
  3060. {"name":"福建东南卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/dnhd.m3u8","http://live.scuec.edu.cn:8080/hls/dntv.m3u8"]},
  3061. {"name":"四川卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/schd.m3u8","http://live.scuec.edu.cn:8080/hls/sctv.m3u8"]},
  3062. {"name":"河北卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/hebhd.m3u8","http://live.scuec.edu.cn:8080/hls/hebtv.m3u8"]},
  3063. {"name":"江西卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/jxhd.m3u8"]},
  3064. {"name":"河南卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/hnhd.m3u8","http://live.scuec.edu.cn:8080/hls/hntv.m3u8"]},
  3065. {"name":"广西卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/gxhd.m3u8","http://live.scuec.edu.cn:8080/hls/gxtv.m3u8"]},
  3066. {"name":"吉林卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/jlhd.m3u8"]},
  3067. {"name":"中国教育电视台1高清","urls":["http://live.scuec.edu.cn:8080/hls/cetv1hd.m3u8"]},
  3068. {"name":"海南卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/lyhd.m3u8","http://live.scuec.edu.cn:8080/hls/lytv.m3u8"]},
  3069. {"name":"贵州卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/gzhd.m3u8","http://live.scuec.edu.cn:8080/hls/gztv.m3u8"]},
  3070. {"name":"陕西卫视","urls":["http://live.scuec.edu.cn:8080/hls/sxtv.m3u8"]},
  3071. {"name":"吉林卫视","urls":["http://live.scuec.edu.cn:8080/hls/jltv.m3u8"]},
  3072. {"name":"xi藏卫视","urls":["http://live.scuec.edu.cn:8080/hls/xztv.m3u8"]},
  3073. {"name":"内蒙古卫视","urls":["http://live.scuec.edu.cn:8080/hls/nmtv.m3u8"]},
  3074. {"name":"青海卫视","urls":["http://live.scuec.edu.cn:8080/hls/qhtv.m3u8"]},
  3075. {"name":"山西卫视","urls":["http://live.scuec.edu.cn:8080/hls/sxrtv.m3u8"]},
  3076. {"name":"新疆卫视","urls":["http://live.scuec.edu.cn:8080/hls/xjtv.m3u8"]},
  3077. {"name":"云南卫视","urls":["http://live.scuec.edu.cn:8080/hls/yntv.m3u8"]},
  3078. {"name":"江西卫视","urls":["http://live.scuec.edu.cn:8080/hls/jxtv.m3u8"]},
  3079. {"name":"厦门卫视","urls":["http://live.scuec.edu.cn:8080/hls/xmtv.m3u8"]},
  3080. {"name":"宁夏卫视","urls":["http://live.scuec.edu.cn:8080/hls/nxtv.m3u8"]},
  3081. {"name":"甘肃卫视","urls":["http://live.scuec.edu.cn:8080/hls/gstv.m3u8"]},
  3082. {"name":"兵团卫视","urls":["http://live.scuec.edu.cn:8080/hls/bttv.m3u8"]},
  3083. {"name":"延边卫视","urls":["http://live.scuec.edu.cn:8080/hls/ybtv.m3u8"]},
  3084. {"name":"三沙卫视","urls":["http://live.scuec.edu.cn:8080/hls/sstv.m3u8"]},
  3085. {"name":"金鹰卡通","urls":["http://live.scuec.edu.cn:8080/hls/jykttv.m3u8"]},
  3086. {"name":"优漫卡通","urls":["http://live.scuec.edu.cn:8080/hls/ymkttv.m3u8"]},
  3087. {"name":"新动漫","urls":["http://live.scuec.edu.cn:8080/hls/xdmtv.m3u8"]},
  3088. {"name":"探案剧场","urls":["http://live.scuec.edu.cn:8080/hls/tajctv.m3u8"]},
  3089. {"name":"卡通剧场高清","urls":["http://live.scuec.edu.cn:8080/hls/ktjchd.m3u8"]},
  3090. {"name":"大众影视高清","urls":["http://live.scuec.edu.cn:8080/hls/dzyshd.m3u8"]},
  3091. {"name":"家庭影院高清","urls":["http://live.scuec.edu.cn:8080/hls/jtyyhd.m3u8"]},
  3092. {"name":"家庭剧场高清","urls":["http://live.scuec.edu.cn:8080/hls/jtjchd.m3u8"]},
  3093. {"name":"CGTN纪实高清","urls":["http://live.scuec.edu.cn:8080/hls/cgtndochd.m3u8"]},
  3094. {"name":"足球频道","urls":["http://live.scuec.edu.cn:8080/hls/zqhd.m3u8"]},
  3095. {"name":"CGTN","urls":["http://live.scuec.edu.cn:8080/hls/cctv16.m3u8"]},
  3096. {"name":"文化精品","urls":["http://live.scuec.edu.cn:8080/hls/whjptv.m3u8"]},
  3097. {"name":"老故事","urls":["http://live.scuec.edu.cn:8080/hls/lgstv.m3u8"]},
  3098. {"name":"纪实人文高清","urls":["http://live.scuec.edu.cn:8080/hls/docuchina.m3u8"]},
  3099. {"name":"金鹰纪实高清","urls":["http://live.scuec.edu.cn:8080/hls/gedocu.m3u8"]},
  3100. {"name":"北京卫视","urls":["http://live.scuec.edu.cn:8080/hls/btv1.m3u8"]},
  3101. {"name":"北京文艺","urls":["http://live.scuec.edu.cn:8080/hls/btv2.m3u8"]},
  3102. {"name":"北京科教","urls":["http://live.scuec.edu.cn:8080/hls/btv3.m3u8"]},
  3103. {"name":"北京影视","urls":["http://live.scuec.edu.cn:8080/hls/btv4.m3u8"]},
  3104. {"name":"北京财经","urls":["http://live.scuec.edu.cn:8080/hls/btv5.m3u8"]},
  3105. {"name":"北京生活","urls":["http://live.scuec.edu.cn:8080/hls/btv7.m3u8"]},
  3106. {"name":"北京青年","urls":["http://live.scuec.edu.cn:8080/hls/btv8.m3u8"]},
  3107. {"name":"北京新闻","urls":["http://live.scuec.edu.cn:8080/hls/btv9.m3u8"]},
  3108. {"name":"北京卡酷少儿","urls":["http://live.scuec.edu.cn:8080/hls/btv10.m3u8"]},
  3109. {"name":"北京冬奥纪实","urls":["http://live.scuec.edu.cn:8080/hls/btv11.m3u8"]},
  3110. {"name":"北京卫视高清","urls":["http://live.scuec.edu.cn:8080/hls/btv1hd.m3u8"]},
  3111. {"name":"北京文艺高清","urls":["http://live.scuec.edu.cn:8080/hls/btv2hd.m3u8"]},
  3112. {"name":"Kaku少儿高清","urls":["http://live.scuec.edu.cn:8080/hls/btv10hd.m3u8"]},
  3113. {"name":"北京冬奥纪实高清","urls":["http://live.scuec.edu.cn:8080/hls/btv11hd.m3u8"]},
  3114. {"name":"北京影视高清","urls":["http://live.scuec.edu.cn:8080/hls/btv4hd.m3u8"]},
  3115. {"name":"北京新闻高清","urls":["http://live.scuec.edu.cn:8080/hls/btv9hd.m3u8"]},
  3116. {"name":"辽宁影视剧","urls":["http://live.scuec.edu.cn:8080/hls/lnysjtv.m3u8"]},
  3117. {"name":"辽宁体育","urls":["http://live.scuec.edu.cn:8080/hls/lntytv.m3u8"]},
  3118. {"name":"中国教育电视台1","urls":["http://live.scuec.edu.cn:8080/hls/cetv1.m3u8"]},
  3119. {"name":"中国教育电视台3","urls":["http://live.scuec.edu.cn:8080/hls/cetv3.m3u8"]},
  3120. {"name":"中国教育电视台4","urls":["http://live.scuec.edu.cn:8080/hls/cetv4.m3u8"]},
  3121. {"name":"山东教育电视台","urls":["http://live.scuec.edu.cn:8080/hls/sdetv.m3u8"]}
  3122. ]},
  3123. {"group": "临时源","channels": [{"name":"中视","urls":["http://211.23.114.106:8502/http/61.221.81.94:8088/hls/72/814/ch47.m3u8"]},
  3124. {"name":"华视","urls":["http://211.23.114.106:8503/http/61.221.81.94:8088/hls/72/814/ch48.m3u8"]},
  3125. {"name":"民视","urls":["http://211.23.114.106:8504/http/61.221.81.94:8088/hls/73/815/ch49.m3u8"]},
  3126. {"name":"公视","urls":["http://211.23.114.106:8505/http/61.221.81.94:8088/hls/73/815/ch50.m3u8"]},
  3127. {"name":"卫视电影台","urls":["http://211.23.114.106:8553/http/116.50.42.19:8081/hls/62/804/ch07.m3u8"]},
  3128. {"name":"好莱坞电影","urls":["http://211.23.114.106:8554/http/116.50.42.19:8081/hls/74/816/ch55.m3u8"]},
  3129. {"name":"纬来电影台","urls":["http://211.23.114.106:8555/http/116.50.42.19:8081/hls/69/811/ch35.m3u8"]},
  3130. {"name":"龙华电影台","urls":["http://211.23.114.106:8556/http/116.50.42.19:8066/hls/210/10014/cstv14.m3u8"]},
  3131. {"name":"HBO HD","urls":["http://211.23.114.106:8511/http/116.50.42.19:8081/hls/71/813/ch41.m3u8"]},
  3132. {"name":"AXN电影","urls":["http://211.23.114.106:8558/http/116.50.42.19:8081/hls/71/813/ch43.m3u8"]},
  3133. {"name":"Cinemax","urls":["http://211.23.114.106:8559/http/116.50.42.19:8081/hls/71/813/ch42.m3u8"]},
  3134. {"name":"FOXmovies","urls":["http://211.23.114.106:8560/http/116.50.42.19:8081/hls/62/804/ch08.m3u8"]},
  3135. {"name":"FOX频道","urls":["http://211.23.114.106:8561/http/116.50.42.19:8081/hls/61/803/ch02.m3u8"]},
  3136. {"name":"国家地理","urls":["http://211.23.114.106:8509/http/61.221.81.94:8088/hls/61/803/ch01.m3u8"]},
  3137. {"name":"Discovery","urls":["http://211.23.114.106:8510/http/61.221.81.94:8088/hls/71/813/ch44.m3u8"]},
  3138. {"name":"旅游生活","urls":["http://211.23.114.106:8570/http/61.221.81.94:8088/hls/70/812/ch38.m3u8"]},
  3139. {"name":"动物星球","urls":["http://211.23.114.106:8512/http/61.221.81.94:8088/hls/70/812/ch37.m3u8"]},
  3140. {"name":"八大综合","urls":["http://211.23.114.106:8520/http/61.221.81.94:8088/hls/66/808/ch21.m3u8"]},
  3141. {"name":"亚洲旅游","urls":["http://211.23.114.106:8513/http/61.221.81.94:8088/hls/76/818/ch61.m3u8"]},
  3142. {"name":"迪士尼","urls":["http://211.23.114.106:8581/http/61.221.81.94:8088/hls/70/812/ch40.m3u8"]},
  3143. {"name":"东森呦呦","urls":["http://211.23.114.106:8515/http/61.221.81.94:8088/hls/63/805/ch09.m3u8"]},
  3144. {"name":"ANIMAX","urls":["http://211.23.114.106:8516/http/61.221.81.94:8088/hls/70/812/ch39.m3u8"]},
  3145. {"name":"龙华卡通","urls":["http://211.23.114.106:8528/http/59.120.8.187:8066/hls/210/10013/cstv13.m3u8"]},
  3146. {"name":"纬来综合","urls":["http://211.23.114.106:8518/http/61.221.81.94:8088/hls/68/810/ch32.m3u8"]},
  3147. {"name":"八大第一","urls":["http://211.23.114.106:8536/http/61.221.81.94:8088/hls/66/808/ch22.m3u8"]},
  3148. {"name":"八大综合","urls":["http://211.23.114.106:8520/http/61.221.81.94:8088/hls/66/808/ch21.m3u8"]},
  3149. {"name":"三立台湾","urls":["http://211.23.114.106:8521/http/60.251.39.91:8081/hls/65/807/ch20.m3u8"]},
  3150. {"name":"三立都会","urls":["http://211.23.114.106:8522/http/60.251.39.91:8081/hls/65/807/ch19.m3u8"]},
  3151. {"name":"卫视中文","urls":["http://211.23.114.106:8514/http/60.251.39.91:8081/hls/62/804/ch05.m3u8"]},
  3152. {"name":"东森综合","urls":["http://211.23.114.106:8524/http/60.251.39.91:8081/hls/63/805/ch12.m3u8"]},
  3153. {"name":"东森超视","urls":["http://211.23.114.106:8525/http/60.251.39.91:8081/hls/64/806/ch14.m3u8"]},
  3154. {"name":"中天综合","urls":["http://211.23.114.106:8526/http/60.251.39.91:8081/hls/67/809/ch25.m3u8"]},
  3155. {"name":"中天娱乐","urls":["http://211.23.114.106:8527/http/60.251.39.91:8081/hls/67/809/ch26.m3u8"]},
  3156. {"name":"东风卫视","urls":["http://211.23.114.106:8578/http/60.251.39.91:8081/hls/68/810/ch31.m3u8"]},
  3157. {"name":"MuchTV","urls":["http://211.23.114.106:8529/http/60.251.39.91:8081/hls/72/814/ch45.m3u8"]},
  3158. {"name":"东森戏剧","urls":["http://211.23.114.106:8530/http/60.251.39.91:8081/hls/64/806/ch13.m3u8"]},
  3159. {"name":"八大戏剧","urls":["http://211.23.114.106:8531/http/60.251.39.91:8081/hls/66/808/ch23.m3u8"]},
  3160. {"name":"TVBS欢乐","urls":["http://211.23.114.106:8532/http/60.251.39.91:8081/hls/65/807/ch17.m3u8"]},
  3161. {"name":"纬来戏剧","urls":["http://211.23.114.106:8533/http/60.251.39.91:8081/hls/69/811/ch33.m3u8"]},
  3162. {"name":"龙华戏剧","urls":["http://211.23.114.106:8534/http/59.120.8.187:8066/hls/210/10010/cstv10.m3u8"]},
  3163. {"name":"龙华日韩","urls":["http://211.23.114.106:8535/http/59.120.8.187:8066/hls/210/10011/cstv11.m3u8"]},
  3164. {"name":"龙华偶像","urls":["http://211.23.114.106:8579/http/59.120.8.187:8066/hls/210/10012/cstv12.m3u8"]},
  3165. {"name":"纬来日本","urls":["http://211.23.114.106:8537/http/60.251.39.91:8081/hls/69/811/ch34.m3u8"]},
  3166. {"name":"WAKUWAKU JAPAN","urls":["http://211.23.114.106:8538/http/60.251.39.91:8081/hls/61/803/ch03.m3u8"]},
  3167. {"name":"年代新闻","urls":["http://211.23.114.106:8517/http/60.251.39.91:8081/hls/67/809/ch27.m3u8"]},
  3168. {"name":"东森新闻","urls":["http://211.23.114.106:8540/http/60.251.39.91:8081/hls/63/805/ch10.m3u8"]},
  3169. {"name":"中天新闻","urls":["http://211.23.114.106:8541/http/60.251.39.91:8081/hls/78/80/ch63max.m3u8"]},
  3170. {"name":"民视新闻","urls":["http://211.23.114.106:8542/http/60.251.39.91:8081/hls/73/815/ch51.m3u8"]},
  3171. {"name":"三立新闻","urls":["http://211.23.114.106:8543/http/60.251.39.91:8081/hls/65/807/ch18.m3u8"]},
  3172. {"name":"TVBS新闻","urls":["http://211.23.114.106:8546/http/116.50.42.19:8081/hls/64/806/ch16.m3u8"]},
  3173. {"name":"TVBS HD","urls":["http://211.23.114.106:8545/http/116.50.42.19:8081/hls/64/806/ch15.m3u8"]},
  3174. {"name":"东森财经","urls":["http://211.23.114.106:8546/http/116.50.42.19:8081/hls/63/805/ch11.m3u8"]},
  3175. {"name":"寰宇新闻","urls":["http://211.23.114.106:8547/http/116.50.42.19:8081/hls/76/818/ch62.m3u8"]},
  3176. {"name":"壹新闻台","urls":["http://211.23.114.106:8548/http/116.50.42.19:8081/hls/66/808/ch24.m3u8"]},
  3177. {"name":"CNN新闻","urls":["http://211.23.114.106:8549/http/116.50.42.19:8081/hls/68/810/ch29.m3u8"]},
  3178. {"name":"CNBC新闻","urls":["http://211.23.114.106:8550/http/116.50.42.19:8078/hls/24/80/cnbc90.m3u8"]},
  3179. {"name":"Bloomberg","urls":["http://211.23.114.106:8551/http/116.50.42.19:8078/hls/43/80/bloomber.m3u8"]},
  3180. {"name":"NHK新闻","urls":["http://211.23.114.106:8552/http/116.50.42.19:8081/hls/62/804/ch06.m3u8"]},
  3181. {"name":"纬来育乐","urls":["http://211.23.114.106:8562/http/116.50.42.19:8081/hls/68/810/ch30.m3u8"]},
  3182. {"name":"人间卫视","urls":["http://211.23.114.106:8506/http/61.221.81.94:8088/hls/69/811/ch36.m3u8"]},
  3183. {"name":"大爱","urls":["http://211.23.114.106:8507/http/61.221.81.94:8088/hls/73/815/ch52.m3u8"]},
  3184. {"name":"好消息","urls":["http://211.23.114.106:8508/http/61.221.81.94:8088/hls/74/816/ch53.m3u8"]},
  3185. {"name":"纬来体育","urls":["http://211.23.114.106:8563/http/59.120.8.187:8081/hls/67/809/ch28.m3u8"]},
  3186. {"name":"博斯运动1","urls":["http://211.23.114.106:8564/http/59.120.8.187:8066/hls/210/10018/cstv18.m3u8"]},
  3187. {"name":"博斯运动2","urls":["http://211.23.114.106:8565/http/59.120.8.187:8081/hls/61/803/ch04.m3u8"]},
  3188. {"name":"ELEVEN SPORTS 1","urls":["http://211.23.114.106:8566/http/59.120.8.187:8078/hls/25/80/esport.m3u8"]},
  3189. {"name":"ELEVEN SPORTS 2","urls":["http://211.23.114.106:8567/http/59.120.8.187:8078/hls/26/80/esport2.m3u8"]}
  3190. ]}],
  3191. "parses": [
  3192. {
  3193. "name": "4433解析",
  3194. "url": "https://vip.parwix.com:4433/player/?url="
  3195. },
  3196. {
  3197. "name": "韭菜解析",
  3198. "url": "http://42.192.201.37:6621/jiucai.php?guanwang=anyi.wchulian.com.cn&url="
  3199. },
  3200. {
  3201. "name": "ok解析",
  3202. "url": "https://okjx.cc/?url="
  3203. },
  3204. {
  3205. "name": "555解析",
  3206. "url": "https://jhpc.manduhu.com/player/?url="
  3207. },
  3208. {
  3209. "name": "2090解析",
  3210. "url": "https://m2090.com/?url="
  3211. },
  3212. {
  3213. "name": "猪蹄解析1",
  3214. "url": "https://api.iztyy.com/jiexi/?url="
  3215. },
  3216. {
  3217. "name": "猪蹄解析2",
  3218. "url": "https://jx.iztyy.com/svip/?url="
  3219. },
  3220. {
  3221. "name": "猪蹄解析3",
  3222. "url": "https://jx.iztyy.com/Bei/?url="
  3223. },
  3224. {
  3225. "name": "parwix解析",
  3226. "url": "https://jx.parwix.com:4433/player/?url="
  3227. },
  3228. {
  3229. "name": "17k云",
  3230. "url": "http://17kyun.com/api.php?url="
  3231. },
  3232. {
  3233. "name": "全能VIP",
  3234. "url": "https://jx.cxk8.com?v="
  3235. },
  3236. {
  3237. "name": "纯净解析",
  3238. "url": "https://z1.m1907.cn/?jx="
  3239. }
  3240. ],
  3241. "flags": [
  3242. "youku",
  3243. "qq",
  3244. "iqiyi",
  3245. "qiyi",
  3246. "letv",
  3247. "sohu",
  3248. "tudou",
  3249. "pptv",
  3250. "mgtv",
  3251. "wasu"
  3252. ],
  3253. "ijk": [
  3254. {
  3255. "group": "软解码",
  3256. "options": [
  3257. {
  3258. "category": 4,
  3259. "name": "opensles",
  3260. "value": "0"
  3261. },
  3262. {
  3263. "category": 4,
  3264. "name": "overlay-format",
  3265. "value": "842225234"
  3266. },
  3267. {
  3268. "category": 4,
  3269. "name": "framedrop",
  3270. "value": "1"
  3271. },
  3272. {
  3273. "category": 4,
  3274. "name": "soundtouch",
  3275. "value": "1"
  3276. },
  3277. {
  3278. "category": 4,
  3279. "name": "start-on-prepared",
  3280. "value": "1"
  3281. },
  3282. {
  3283. "category": 1,
  3284. "name": "http-detect-range-support",
  3285. "value": "0"
  3286. },
  3287. {
  3288. "category": 1,
  3289. "name": "fflags",
  3290. "value": "fastseek"
  3291. },
  3292. {
  3293. "category": 2,
  3294. "name": "skip_loop_filter",
  3295. "value": "48"
  3296. },
  3297. {
  3298. "category": 4,
  3299. "name": "reconnect",
  3300. "value": "1"
  3301. },
  3302. {
  3303. "category": 4,
  3304. "name": "max-buffer-size",
  3305. "value": "5242880"
  3306. },
  3307. {
  3308. "category": 4,
  3309. "name": "enable-accurate-seek",
  3310. "value": "0"
  3311. },
  3312. {
  3313. "category": 4,
  3314. "name": "mediacodec",
  3315. "value": "0"
  3316. },
  3317. {
  3318. "category": 4,
  3319. "name": "mediacodec-auto-rotate",
  3320. "value": "0"
  3321. },
  3322. {
  3323. "category": 4,
  3324. "name": "mediacodec-handle-resolution-change",
  3325. "value": "0"
  3326. },
  3327. {
  3328. "category": 4,
  3329. "name": "mediacodec-hevc",
  3330. "value": "0"
  3331. }
  3332. ]
  3333. },
  3334. {
  3335. "group": "硬解码",
  3336. "options": [
  3337. {
  3338. "category": 4,
  3339. "name": "opensles",
  3340. "value": "0"
  3341. },
  3342. {
  3343. "category": 4,
  3344. "name": "overlay-format",
  3345. "value": "842225234"
  3346. },
  3347. {
  3348. "category": 4,
  3349. "name": "framedrop",
  3350. "value": "1"
  3351. },
  3352. {
  3353. "category": 4,
  3354. "name": "soundtouch",
  3355. "value": "1"
  3356. },
  3357. {
  3358. "category": 4,
  3359. "name": "start-on-prepared",
  3360. "value": "1"
  3361. },
  3362. {
  3363. "category": 1,
  3364. "name": "http-detect-range-support",
  3365. "value": "0"
  3366. },
  3367. {
  3368. "category": 1,
  3369. "name": "fflags",
  3370. "value": "fastseek"
  3371. },
  3372. {
  3373. "category": 2,
  3374. "name": "skip_loop_filter",
  3375. "value": "48"
  3376. },
  3377. {
  3378. "category": 4,
  3379. "name": "reconnect",
  3380. "value": "1"
  3381. },
  3382. {
  3383. "category": 4,
  3384. "name": "max-buffer-size",
  3385. "value": "5242880"
  3386. },
  3387. {
  3388. "category": 4,
  3389. "name": "enable-accurate-seek",
  3390. "value": "0"
  3391. },
  3392. {
  3393. "category": 4,
  3394. "name": "mediacodec",
  3395. "value": "1"
  3396. },
  3397. {
  3398. "category": 4,
  3399. "name": "mediacodec-auto-rotate",
  3400. "value": "1"
  3401. },
  3402. {
  3403. "category": 4,
  3404. "name": "mediacodec-handle-resolution-change",
  3405. "value": "1"
  3406. },
  3407. {
  3408. "category": 4,
  3409. "name": "mediacodec-hevc",
  3410. "value": "1"
  3411. }
  3412. ]
  3413. }
  3414. ],
  3415. "ads": [
  3416. "mimg.0c1q0l.cn",
  3417. "www.googletagmanager.com",
  3418. "www.google-analytics.com",
  3419. "mc.usihnbcq.cn",
  3420. "mg.g1mm3d.cn",
  3421. "mscs.svaeuzh.cn",
  3422. "cnzz.hhttm.top",
  3423. "tp.vinuxhome.com",
  3424. "cnzz.mmstat.com",
  3425. "www.baihuillq.com",
  3426. "s23.cnzz.com",
  3427. "z3.cnzz.com",
  3428. "c.cnzz.com",
  3429. "stj.v1vo.top",
  3430. "z12.cnzz.com",
  3431. "img.mosflower.cn",
  3432. "tips.gamevvip.com",
  3433. "ehwe.yhdtns.com",
  3434. "xdn.cqqc3.com",
  3435. "www.jixunkyy.cn",
  3436. "sp.chemacid.cn",
  3437. "hm.baidu.com",
  3438. "s9.cnzz.com",
  3439. "z6.cnzz.com",
  3440. "um.cavuc.com",
  3441. "mav.mavuz.com",
  3442. "wofwk.aoidf3.com",
  3443. "z5.cnzz.com",
  3444. "xc.hubeijieshikj.cn",
  3445. "tj.tianwenhu.com",
  3446. "xg.gars57.cn",
  3447. "k.jinxiuzhilv.com",
  3448. "cdn.bootcss.com",
  3449. "ppl.xunzhuo123.com",
  3450. "xomk.jiangjunmh.top",
  3451. "img.xunzhuo123.com",
  3452. "z1.cnzz.com",
  3453. "s13.cnzz.com",
  3454. "xg.huataisangao.cn",
  3455. "z7.cnzz.com",
  3456. "xg.huataisangao.cn",
  3457. "z2.cnzz.com",
  3458. "s96.cnzz.com",
  3459. "q11.cnzz.com",
  3460. "thy.dacedsfa.cn",
  3461. "xg.whsbpw.cn",
  3462. "s19.cnzz.com",
  3463. "z8.cnzz.com",
  3464. "s4.cnzz.com",
  3465. "f5w.as12df.top",
  3466. "ae01.alicdn.com",
  3467. "www.92424.cn",
  3468. "k.wudejia.com",
  3469. "vivovip.mmszxc.top",
  3470. "qiu.xixiqiu.com",
  3471. "cdnjs.hnfenxun.com",
  3472. "whateveridontcare.netlify.app",
  3473. "netcut.cn",
  3474. "news.norlinked.com",
  3475. "m.finipe.cn",
  3476. "cms.qdwght.com"
  3477. ]
  3478. }