maotv.txt 335 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417
  1. {
  2. //"spider":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/spider5.jar",
  3. "spider":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/spriederdd.jar",
  4. //"spider":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/customspider.jar",
  5. //"spider":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/customspider2.jar",
  6. "sites": [ { "key": "csp_77","name": "77(SP)", "type": 3, "api": "csp_Kunyu77", "searchable": 1, "quickSearch": 1, "filterable": 1 },
  7. { "key": "csp_Cokemv", "name": "焦炭(SP)", "type": 3,
  8. "api": "csp_Cokemv",
  9. "searchable": 1,
  10. "quickSearch": 1,
  11. "filterable": 1
  12. },
  13. {
  14. "key": "csp_CZSPP",
  15. "name": "厂长(SP)",
  16. "type": 3,
  17. "api": "csp_CZSPP",
  18. "searchable": 1,
  19. "quickSearch": 1,
  20. "filterable": 0
  21. },
  22. {
  23. "key": "csp_Fantuan",
  24. "name": "饭团(SP)",
  25. "type": 3,
  26. "api": "csp_Fantuan",
  27. "searchable": 1,
  28. "quickSearch": 1,
  29. "filterable": 1
  30. },
  31. {
  32. "key": "csp_Buka",
  33. "name": "不卡(SP)",
  34. "type": 3,
  35. "api": "csp_Buka",
  36. "searchable": 1,
  37. "quickSearch": 1,
  38. "filterable": 1
  39. },
  40. {
  41. "key": "csp_GitCafe",
  42. "name": "小纸条",
  43. "type": 3,
  44. "api": "csp_GitCafe",
  45. "searchable": 1,
  46. "quickSearch": 1,
  47. "filterable": 0
  48. },
  49. {
  50. "key": "csp_AliPanSou",
  51. "name": "阿里盘搜",
  52. "type": 3,
  53. "api": "csp_AliPanSou",
  54. "searchable": 1,
  55. "quickSearch": 1,
  56. "filterable": 0
  57. },
  58. //{"key": "ikan_spider","name": "爱看(SP)","type": 3,"api": "csp_IKan","searchable": 1,"quickSearch": 1, //"filterable": 1},
  59. //{"key": "mjxq_spider","name": "美剧星球(SP)","type": 3,"api": "csp_MjxqApp","searchable": 1,"quickSearch": //1,"filterable": 1},
  60. {
  61. "key": "csp_xpath_qiyou",
  62. "name": "奇优电影(XP)",
  63. "type": 3,
  64. "api": "csp_XPath",
  65. "searchable": 1,
  66. "quickSearch": 1,
  67. "filterable": 1,
  68. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/qiyou.json"
  69. },
  70. {
  71. "key": "csp_xpath_cokemv",
  72. "name": "Cokemv(XPMac)",
  73. "type": 3,
  74. "api": "csp_XPathMacFilter",
  75. "searchable": 1,
  76. "quickSearch": 1,
  77. "filterable": 1,
  78. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/cokemv.json"
  79. },
  80. {
  81. "key": "csp_xpath_huya",
  82. "name": "虎牙直播(XP)",
  83. "type": 3,
  84. "api": "csp_XPathMacFilter",
  85. "searchable": 1,
  86. "quickSearch": 1,
  87. "filterable": 1,
  88. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/huya.json"
  89. },
  90. {
  91. "key": "csp_xpath_kuqi",
  92. "name": "酷奇MV(XP)",
  93. "type": 3,
  94. "api": "csp_XPathMacFilter",
  95. "searchable": 1,
  96. "quickSearch": 1,
  97. "filterable": 1,
  98. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/kuqimv.json"
  99. },
  100. {"key":"csp_xpath_qcys","name":"奇粹影视(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/ikuwoo.json"},
  101. {
  102. "key": "六度",
  103. "name": "六度(XPM)",
  104. "type": 3,
  105. "api": "csp_XPathMacFilter",
  106. "searchable": 1,
  107. "quickSearch": 1,
  108. "filterable": 1,
  109. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/6dtv.json"
  110. },
  111. {
  112. "key": "csp_xpath_unss",
  113. "name": "九洲影视(XPMF)",
  114. "type": 3,
  115. "api": "csp_XPathMacFilter",
  116. "searchable": 1,
  117. "quickSearch": 1,
  118. "filterable": 1,
  119. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E4%B9%9D%E5%B7%9E.json"
  120. },
  121. {
  122. "key": "csp_appys_xiaogui_躺平影视",
  123. "name": "躺平影视(m)",
  124. "type": 3,
  125. "api": "csp_AppYsV2",
  126. "searchable": 1,
  127. "quickSearch": 1,
  128. "filterable": 1,
  129. "ext": "http://www.lltpys.com/api.php/app/"
  130. },
  131. {
  132. "key": "csp_appysv2_钟特影视",
  133. "name": "钟特影视(v1)",
  134. "type": 3,
  135. "api": "csp_AppYsV2",
  136. "searchable": 1,
  137. "quickSearch": 1,
  138. "filterable": 1,
  139. "ext": "https://app.zteys.com/api.php/v1.vod"
  140. },
  141. {
  142. "key": "csp_xpath_chen",
  143. "name": "尘落(优XP)",
  144. "type": 3,
  145. "api": "csp_XPathFilter",
  146. "searchable": 1,
  147. "quickSearch": 1,
  148. "filterable": 1,
  149. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/chenluo.json"
  150. },
  151. {"key":"csp_xpath_hmtv","name":"花猫TV(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/huamao.json"},{"key":"csp_xpath_hhys","name":"火火影视TV(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/huohuo.json"},
  152. {
  153. "key": "csp_AppYs_秒播",
  154. "name": "秒播",
  155. "type": 3,
  156. "api": "csp_AppYsV2",
  157. "searchable": 1,
  158. "quickSearch": 1,
  159. "filterable": 1,
  160. "ext": "http://mkk.gotka.top/api.php/v1.vod"
  161. },
  162. {
  163. "key": "csp_appysv2_DC影视",
  164. "name": "DC影视(优)",
  165. "type": 3,
  166. "api": "csp_AppYsV2",
  167. "searchable": 1,
  168. "quickSearch": 0,
  169. "filterable": 1,
  170. "ext": "http://chaorenbb.com/api.php/v1.vod"
  171. },
  172. {
  173. "key": "csp_appysv2_9e国语",
  174. "name": "9E国语",
  175. "type": 3,
  176. "api": "csp_AppYsV2",
  177. "searchable": 1,
  178. "quickSearch": 1,
  179. "filterable": 1,
  180. "ext": "http://vod.9e03.com/lvdou_api.php/v1.vod"
  181. },
  182. {
  183. "key": "csp_appysv2_金叶影院",
  184. "name": "金叶影院(M2)",
  185. "type": 3,
  186. "api": "csp_AppYsV2",
  187. "searchable": 1,
  188. "quickSearch": 1,
  189. "filterable": 1,
  190. "ext": "http://r.zjj.life:88/mv/api.php/Chengcheng/vod"
  191. },
  192. {
  193. "key": "csp_xpath_netf",
  194. "name": "网飞(XP)",
  195. "type": 3,
  196. "api": "csp_XPathFilter",
  197. "searchable": 1,
  198. "quickSearch": 1,
  199. "filterable": 1,
  200. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/netflix.json"
  201. },
  202. {
  203. "key": "csp_xpath_libv",
  204. "name": "libvio(XP)",
  205. "type": 3,
  206. "api": "csp_XPathFilter",
  207. "searchable": 1,
  208. "quickSearch": 1,
  209. "filterable": 1,
  210. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/libvio.json"
  211. },
  212. {
  213. "key": "csp_xpath_saohuo",
  214. "name": "骚火(XPath)",
  215. "type": 3,
  216. "api": "csp_XPath",
  217. "searchable": 1,
  218. "quickSearch": 1,
  219. "filterable": 0,
  220. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/%E9%AA%9A%E7%81%AB.json"
  221. },
  222. {
  223. "key": "csp_xpath_lezhutv",
  224. "name": "乐猪(XPath)",
  225. "type": 3,
  226. "api": "csp_XPath",
  227. "searchable": 1,
  228. "quickSearch": 1,
  229. "filterable": 0,
  230. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/%E4%B9%90%E7%8C%AAtv.json"
  231. },
  232. {
  233. "key": "csp_xpath_ddg",
  234. "name": "达达龟(XP)",
  235. "type": 3,
  236. "api": "csp_XPathFilter",
  237. "searchable": 1,
  238. "quickSearch": 1,
  239. "filterable": 1,
  240. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/dadagui.json"
  241. },
  242. {
  243. "key": "csp_appys_看365",
  244. "name": "看365",
  245. "type": 3,
  246. "api": "csp_AppYsV2",
  247. "searchable": 1,
  248. "quickSearch": 0,
  249. "filterable": 1,
  250. "ext": "https://www.kan365.xyz/api.php/app/"
  251. },
  252. {
  253. "key": "csp_appysv2_看看",
  254. "name": "看看吧",
  255. "type": 3,
  256. "api": "csp_AppYsV2",
  257. "searchable": 1,
  258. "quickSearch": 0,
  259. "filterable": 1,
  260. "ext": "http://888.ccboke.top/ruifenglb_api.php/v1.vod"
  261. },
  262. {
  263. "key": "csp_appysv2_天空影视V2",
  264. "name": "天空影视V2(M2)",
  265. "type": 3,
  266. "api": "csp_AppYsV2",
  267. "searchable": 1,
  268. "quickSearch": 0,
  269. "filterable": 1,
  270. "ext": "https://www.tkys.tv/xgapp.php/v2/"
  271. },
  272. {"key":"csp_xpath_subb","name":"素白白TV(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/subaibai.json"},
  273. {
  274. "key": "csp_xpath_vipdy",
  275. "name": "VIP电影(XP)",
  276. "type": 3,
  277. "api": "csp_XPathMacFilter",
  278. "searchable": 1,
  279. "quickSearch": 1,
  280. "filterable": 1,
  281. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/vip1280.json"
  282. },
  283. {"key":"csp_xpath_juhu","name":"剧荒(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/juhuang.json"},
  284. {
  285. "key": "csp_xpath_huah",
  286. "name": "花和电影(XP)",
  287. "type": 3,
  288. "api": "csp_XPathMacFilter",
  289. "searchable": 1,
  290. "quickSearch": 1,
  291. "filterable": 1,
  292. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/huahe.json"
  293. },
  294. {
  295. "key": "csp_xpath_dsx",
  296. "name": "大师兄XP",
  297. "type": 3,
  298. "api": "csp_XPathMacFilter",
  299. "searchable": 1,
  300. "quickSearch": 1,
  301. "filterable": 1,
  302. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/dsxys.json"
  303. },
  304. {"key":"csp_xpath_mboy","name":"MBO影视(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/mbomovice.json"},
  305. {
  306. "key": "csp_xpath_zjdr",
  307. "name": "追剧达人(XP)",
  308. "type": 3,
  309. "api": "csp_XPathMacFilter",
  310. "searchable": 1,
  311. "quickSearch": 1,
  312. "filterable": 1,
  313. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/vipmv.json"
  314. },
  315. {"key":"csp_xpath_dxdx","name":"滴嘻滴嘻(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/dixidixi.json"},
  316. {
  317. "key": "csp_appysv2_独播社",
  318. "name": "独播社(优)",
  319. "type": 3,
  320. "api": "csp_AppYsV2",
  321. "searchable": 1,
  322. "quickSearch": 0,
  323. "filterable": 1,
  324. "ext": "http://35ys.cc/api.php/v1.vod"
  325. },
  326. {
  327. "key": "csp_xpath_zx",
  328. "name": "在线之家(XP)",
  329. "type": 3,
  330. "api": "csp_XPathFilter",
  331. "searchable": 1,
  332. "quickSearch": 1,
  333. "filterable": 1,
  334. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E5%9C%A8%E7%BA%BF%E4%B9%8B%E5%AE%B6.json"
  335. },
  336. {
  337. "key": "csp_appysv2_段友影视",
  338. "name": "段友影视(优)",
  339. "type": 3,
  340. "api": "csp_AppYsV2",
  341. "searchable": 1,
  342. "quickSearch": 0,
  343. "filterable": 1,
  344. "ext": "http://121.204.249.135:4433/ruifenglb_api.php/v1.vod"
  345. },
  346. {
  347. "key": "csp_appysv2_1080kk",
  348. "name": "1080kk(M2)",
  349. "type": 3,
  350. "api": "csp_AppYsV2",
  351. "searchable": 1,
  352. "quickSearch": 1,
  353. "filterable": 1,
  354. "ext": "http://123.250idc.com/mogai_api.php/v1.vod"
  355. },
  356. {
  357. "key": "csp_appysv2_飓风影院",
  358. "name": "飓风影院(M2)",
  359. "type": 3,
  360. "api": "csp_AppYsV2",
  361. "searchable": 1,
  362. "quickSearch": 1,
  363. "filterable": 1,
  364. "ext": "http://yidayy.top/lehailb_api.php/v1.vod"
  365. },
  366. {
  367. "key": "csp_appysv2_影视大全",
  368. "name": "影视大全(M2)",
  369. "type": 3,
  370. "api": "csp_AppYsV2",
  371. "searchable": 1,
  372. "quickSearch": 1,
  373. "filterable": 1,
  374. "ext": "https://app.okmedcos.com/ruifenglb_api.php/v1.vod"
  375. },
  376. {
  377. "key": "csp_xpath_zmdy",
  378. "name": "周末电影(XP)",
  379. "type": 3,
  380. "api": "csp_XPathFilter",
  381. "searchable": 1,
  382. "quickSearch": 1,
  383. "filterable": 1,
  384. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/zzzlike.json"
  385. },
  386. {
  387. "key": "csp_appysv2_暖光影视",
  388. "name": "暖光影视(优)",
  389. "type": 3,
  390. "api": "csp_AppYsV2",
  391. "searchable": 1,
  392. "quickSearch": 0,
  393. "filterable": 1,
  394. "ext": "https://app.bl210.com/api.php/v1.vod"
  395. },
  396. {"key":"csp_xpath_lmys","name":"来米影视(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/qdytv.json"},
  397. {
  398. "key": "csp_xpath_1080p",
  399. "name": "1080电影(XP)",
  400. "type": 3,
  401. "api": "csp_XPathFilter",
  402. "searchable": 1,
  403. "quickSearch": 1,
  404. "filterable": 1,
  405. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/1080.json"
  406. },
  407. {"key":"csp_DY1990","name":"90(SP)","type":3,"api":"csp_DY1990","searchable":1,"quickSearch":1,"filterable":0},
  408. {
  409. "key": "2345_spider",
  410. "name": "2345影院(官源)",
  411. "type": 3,
  412. "api": "csp_YS2345",
  413. "searchable": 1,
  414. "quickSearch": 1,
  415. "filterable": 1,
  416. "ext": "http://inews.gtimg.com/newsapp_ls/0/14743078626/0"
  417. },
  418. {
  419. "key": "sogou_spider",
  420. "name": "搜狗影院(官源)",
  421. "type": 3,
  422. "api": "csp_YSSogou",
  423. "searchable": 1,
  424. "quickSearch": 1,
  425. "filterable": 1,
  426. "ext": "http://inews.gtimg.com/newsapp_ls/0/14743078651/0"
  427. },
  428. {
  429. "key": "360_spider",
  430. "name": "360影院(官源)",
  431. "type": 3,
  432. "api": "csp_YS360",
  433. "searchable": 1,
  434. "quickSearch": 1,
  435. "filterable": 1,
  436. "ext": "http://inews.gtimg.com/newsapp_ls/0/14743078668/0"
  437. },
  438. {
  439. "key": "csp_xpath_ikan",
  440. "name": "爱看(XP)",
  441. "type": 3,
  442. "api": "csp_XPathFilter",
  443. "searchable": 1,
  444. "quickSearch": 1,
  445. "filterable": 1,
  446. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/ikan.json"
  447. },
  448. {
  449. "key": "csp_xpath_miao",
  450. "name": "喵喵(XP)",
  451. "type": 3,
  452. "api": "csp_XPathFilter",
  453. "searchable": 1,
  454. "quickSearch": 1,
  455. "filterable": 1,
  456. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/miaomiao.json"
  457. },
  458. {
  459. "key": "csp_xpath_dym8",
  460. "name": "电影迷8(XP)",
  461. "type": 3,
  462. "api": "csp_XPathFilter",
  463. "searchable": 1,
  464. "quickSearch": 1,
  465. "filterable": 1,
  466. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/dianyingmi8.json"
  467. },
  468. {
  469. "key": "csp_xpath_xqm",
  470. "name": "小强迷(优XP)",
  471. "type": 3,
  472. "api": "csp_XPathFilter",
  473. "searchable": 1,
  474. "quickSearch": 1,
  475. "filterable": 1,
  476. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/xiaoqiang.json"
  477. },
  478. {
  479. "key": "csp_xpath_tvby",
  480. "name": "TVB云播(XP)",
  481. "type": 3,
  482. "api": "csp_XPathFilter",
  483. "searchable": 1,
  484. "quickSearch": 1,
  485. "filterable": 1,
  486. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/tvb.json"
  487. },
  488. {
  489. "key": "csp_xpath_jubb",
  490. "name": "剧白白(XP)",
  491. "type": 3,
  492. "api": "csp_XPathFilter",
  493. "searchable": 1,
  494. "quickSearch": 1,
  495. "filterable": 1,
  496. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/jubaibai.json"
  497. },
  498. {
  499. "key": "csp_xpath_ddt",
  500. "name": "达达兔(XP)",
  501. "type": 3,
  502. "api": "csp_XPathFilter",
  503. "searchable": 1,
  504. "quickSearch": 1,
  505. "filterable": 1,
  506. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E8%BE%BE%E8%BE%BE%E5%85%94.json"
  507. },
  508. {
  509. "key": "csp_xpath_9egy",
  510. "name": "9E国语(XP)",
  511. "type": 3,
  512. "api": "csp_XPathFilter",
  513. "searchable": 1,
  514. "quickSearch": 1,
  515. "filterable": 1,
  516. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E4%B9%9D%E4%BA%BF%E5%9B%BD%E8%AF%AD.json"
  517. },
  518. {
  519. "key": "csp_xpath_zhangz",
  520. "name": "厂长资源(XP)",
  521. "type": 3,
  522. "api": "csp_XPathFilter",
  523. "searchable": 0,
  524. "quickSearch": 1,
  525. "filterable": 1,
  526. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E5%8E%82%E9%95%BF%E8%B5%84%E6%BA%90.json"
  527. },
  528. {
  529. "key": "csp_appysv2_日诚影视",
  530. "name": "日诚影视(M2)",
  531. "type": 3,
  532. "api": "csp_AppYsV2",
  533. "searchable": 1,
  534. "quickSearch": 1,
  535. "filterable": 1,
  536. "ext": "http://tv.rcz168.com/api.php/v1.vod"
  537. },
  538. {
  539. "key": "csp_xpath_wug",
  540. "name": "乌龟(XP)",
  541. "type": 3,
  542. "api": "csp_XPathFilter",
  543. "searchable": 1,
  544. "quickSearch": 1,
  545. "filterable": 1,
  546. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E4%B9%8C%E9%BE%9F%E5%BD%B1%E9%99%A2.json"
  547. },
  548. {
  549. "key": "csp_xpath_348",
  550. "name": "348电影(XP)",
  551. "type": 3,
  552. "api": "csp_XPathFilter",
  553. "searchable": 1,
  554. "quickSearch": 1,
  555. "filterable": 1,
  556. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/348z.json"
  557. },
  558. {
  559. "key": "csp_xpath_zj",
  560. "name": "追剧网(XP)",
  561. "type": 3,
  562. "api": "csp_XPathFilter",
  563. "searchable": 1,
  564. "quickSearch": 1,
  565. "filterable": 1,
  566. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E8%BF%BD%E5%89%A7%E7%BD%91.json"
  567. },
  568. {
  569. "key": "csp_xpath_jpys",
  570. "name": "极品影视(XP)",
  571. "type": 3,
  572. "api": "csp_XPathMacFilter",
  573. "searchable": 1,
  574. "quickSearch": 1,
  575. "filterable": 1,
  576. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/jpys.json"
  577. },
  578. {
  579. "key": "csp_xpath_pianba",
  580. "name": "片吧(XP)",
  581. "type": 3,
  582. "api": "csp_XPathFilter",
  583. "searchable": 1,
  584. "quickSearch": 1,
  585. "filterable": 1,
  586. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E7%89%87%E5%90%A7.json"
  587. },
  588. {
  589. "key": "csp_appysv2_天空影视",
  590. "name": "天空影视(M2)",
  591. "type": 3,
  592. "api": "csp_AppYsV2",
  593. "searchable": 1,
  594. "quickSearch": 0,
  595. "filterable": 1,
  596. "ext": "https://tkys.tv/xgapp.php/v1/"
  597. },
  598. {
  599. "key": "csp_appysv2_看看影视",
  600. "name": "看看影视(优)",
  601. "type": 3,
  602. "api": "csp_AppYsV2",
  603. "searchable": 1,
  604. "quickSearch": 1,
  605. "filterable": 1,
  606. "ext": "http://kk.ccboke.top/ruifenglb_api.php/v1.vod"
  607. },
  608. {
  609. "key": "嘛哩嘛哩",
  610. "name": "嘛哩嘛哩",
  611. "type": 1,
  612. "api": "https://malimali3.com/api.php/provide/vod/",
  613. "playUrl": "https://jx.parwix.com:4433/player/?url=",
  614. "searchable": 1,
  615. "quickSearch": 1,
  616. "filterable": 0,
  617. "categories": [
  618. "国产动漫",
  619. "日韩动漫",
  620. "欧美动漫",
  621. "港台动漫"
  622. ]
  623. },
  624. {
  625. "key": "csp_appysv2_懒猫影视",
  626. "name": "懒猫影视(M)",
  627. "type": 3,
  628. "api": "csp_AppYsV2",
  629. "searchable": 1,
  630. "quickSearch": 1,
  631. "filterable": 1,
  632. "ext": "https://lanmao.lanmaoymw.cn/api.php/v1.vod"
  633. },
  634. {
  635. "key": "csp_appysv2_影视猫",
  636. "name": "影视猫(M)",
  637. "type": 3,
  638. "api": "csp_AppYsV2",
  639. "searchable": 1,
  640. "quickSearch": 1,
  641. "filterable": 1,
  642. "ext": "https://vip.wscyun.com/api.php/v1.vod"
  643. },
  644. {
  645. "key": "csp_appys_U5影视",
  646. "name": "U5影视",
  647. "type": 3,
  648. "api": "csp_AppYsV2",
  649. "searchable": 1,
  650. "quickSearch": 0,
  651. "filterable": 1,
  652. "ext": "https://appx.uy07.com/api.php/v1.vod"
  653. },
  654. {
  655. "key": "csp_appys_海胆影视",
  656. "name": "海胆影视",
  657. "type": 3,
  658. "api": "csp_AppYsV2",
  659. "searchable": 1,
  660. "quickSearch": 0,
  661. "filterable": 1,
  662. "ext": "http://xf123.cc/api.php/app/"
  663. },
  664. {
  665. "key": "csp_appys_v1_美剧有范",
  666. "name": "美剧有范(m)",
  667. "type": 3,
  668. "api": "csp_AppYsV2",
  669. "searchable": 1,
  670. "quickSearch": 0,
  671. "filterable": 1,
  672. "ext": "http://ttzmz.net/api.php/v1.vod"
  673. },
  674. {
  675. "key": "csp_appysv2_迪迪影院V2",
  676. "name": "迪迪影院(M2)",
  677. "type": 3,
  678. "api": "csp_AppYsV2",
  679. "searchable": 1,
  680. "quickSearch": 0,
  681. "filterable": 1,
  682. "ext": "http://dd88.icu:6080/xgapp.php/v2/"
  683. },
  684. {
  685. "key": "csp_appysv2_手指影视",
  686. "name": "手指影视(M2)",
  687. "type": 3,
  688. "api": "csp_AppYsV2",
  689. "searchable": 1,
  690. "quickSearch": 0,
  691. "filterable": 1,
  692. "ext": "https://szys5678.com/mogai_api.php/v1.vod"
  693. },
  694. {
  695. "key": "csp_appysv2_爱酷影视",
  696. "name": "爱酷影视(优)",
  697. "type": 3,
  698. "api": "csp_AppYsV2",
  699. "searchable": 1,
  700. "quickSearch": 0,
  701. "filterable": 1,
  702. "ext": "https://www.zhanlangbu.com/ruifenglb_api.php/v1.vod"
  703. },
  704. {
  705. "key": "csp_appysv2_段友2影视",
  706. "name": "段友2影视(优)",
  707. "type": 3,
  708. "api": "csp_AppYsV2",
  709. "searchable": 1,
  710. "quickSearch": 0,
  711. "filterable": 1,
  712. "ext": "https://shangjihuoke.com/api.php/tv.vod"
  713. },
  714. {
  715. "key": "csp_appysv2_粉象视界",
  716. "name": "粉象视界(优)",
  717. "type": 3,
  718. "api": "csp_AppYsV2",
  719. "searchable": 1,
  720. "quickSearch": 0,
  721. "filterable": 1,
  722. "ext": "http://42.157.129.15:34444/lvdou_api.php/v1.vod"
  723. },
  724. {
  725. "key": "csp_appysv2_影视大全",
  726. "name": "影视大全(优)",
  727. "type": 3,
  728. "api": "csp_AppYsV2",
  729. "searchable": 1,
  730. "quickSearch": 0,
  731. "filterable": 1,
  732. "ext": "http://app.269w.com/api.php/v1.vod"
  733. },
  734. {
  735. "key": "天堂资源",
  736. "name": "天堂资源",
  737. "type": 1,
  738. "api": "http://vipmv.cc/api.php/provide/vod/",
  739. "searchable": 1,
  740. "quickSearch": 1,
  741. "filterable": 0
  742. },
  743. {"key":"csp_xpath_wnys","name":"万能影视(XP)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/wnvod.json"},
  744. {
  745. "key": "csp_appysv2_蒲公英",
  746. "name": "蒲公英视频",
  747. "type": 3,
  748. "api": "csp_AppYsV2",
  749. "searchable": 1,
  750. "quickSearch": 1,
  751. "filterable": 1,
  752. "ext": "http://www.pgy1.top/ruifenglb_api.php/v1.vod"
  753. },
  754. {
  755. "key": "csp_xpath_jpjl",
  756. "name": "极品极链(XP)",
  757. "type": 3,
  758. "api": "csp_XPathFilter",
  759. "searchable": 1,
  760. "quickSearch": 1,
  761. "filterable": 1,
  762. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E6%9E%81%E5%93%81%E6%9E%81%E9%93%BE.json"
  763. },
  764. {
  765. "key": "csp_xpath_lranc",
  766. "name": "天天影视(XP)",
  767. "type": 3,
  768. "api": "csp_XPathMacFilter",
  769. "searchable": 1,
  770. "quickSearch": 1,
  771. "filterable": 1,
  772. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/lranc.json"
  773. },
  774. {
  775. "key": "csp_xpath_pianku",
  776. "name": "片库(XP)",
  777. "type": 3,
  778. "api": "csp_XPathFilter",
  779. "searchable": 1,
  780. "quickSearch": 1,
  781. "filterable": 1,
  782. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/%E7%89%87%E5%BA%93.json"
  783. },
  784. {
  785. "key": "思古影院",
  786. "name": "思古影院",
  787. "type": 1,
  788. "api": "https://www.siguyy.net/api.php/provide/vod/",
  789. "searchable": 1,
  790. "quickSearch": 1,
  791. "filterable": 0
  792. },
  793. {
  794. "key": "ok影视",
  795. "name": "ok影视",
  796. "type": 3,
  797. "api": "csp_AppYsV2",
  798. "searchable": 1,
  799. "quickSearch": 1,
  800. "filterable": 1,
  801. "ext": "http://123.ok00.xyz/api.php/v1.vod"
  802. },
  803. {
  804. "key": "极酷影视",
  805. "name": "极酷影视",
  806. "type": 3,
  807. "api": "csp_AppYsV2",
  808. "searchable": 1,
  809. "quickSearch": 1,
  810. "filterable": 1,
  811. "ext": "https://jiku.vip/mogai_api.php/v1.vod"
  812. },
  813. {
  814. "key": "卧龙资源",
  815. "name": "卧龙资源",
  816. "type": 1,
  817. "api": "https://collect.wolongzyw.com/api.php/provide/vod/",
  818. "playUrl": "",
  819. "searchable": 1,
  820. "filterable": 1,
  821. "categories": [
  822. ]
  823. },
  824. {
  825. "key": "快播资源",
  826. "name": "快播资源",
  827. "type": 1,
  828. "api": "http://www.kuaibozy.com/api.php/provide/vod/",
  829. "searchable": 1,
  830. "quickSearch": 1,
  831. "filterable": 0
  832. },
  833. {
  834. "key": "海外电影",
  835. "name": "海外电影",
  836. "type": 1,
  837. "api": "https://www.200121.com/api.php/provide/vod",
  838. "searchable": 1,
  839. "quickSearch": 1,
  840. "filterable": 0
  841. },
  842. {
  843. "key": "快看客栈",
  844. "name": "快看客栈",
  845. "type": 1,
  846. "api": "https://www.vp1127.com/api.php/provide/vod/",
  847. "searchable": 1,
  848. "quickSearch": 1,
  849. "filterable": 0
  850. },
  851. {
  852. "key": "哇可可影视",
  853. "name": "哇可可影视",
  854. "type": 1,
  855. "api": "https://www.zwcoco.com/api.php/provide/vod/",
  856. "searchable": 1,
  857. "quickSearch": 1,
  858. "filterable": 0
  859. },
  860. {
  861. "key": "U酷采集",
  862. "name": "U酷",
  863. "type": 1,
  864. "api": "https://api.ukuapi.com/api.php/provide/vod/?ac=list",
  865. "playUrl": "https://api.ukubf.com/m3u8/?url=",
  866. "searchable": 1,
  867. "quickSearch": 1,
  868. "filterable": 0
  869. },
  870. {
  871. "key": "红牛采集",
  872. "name": "红牛",
  873. "type": 1,
  874. "api": "https://www.hongniuzy2.com/api.php/provide/vod/",
  875. "playUrl": "https://www.tutukiki.com/m3u8/?url=",
  876. "searchable": 1,
  877. "quickSearch": 1,
  878. "filterable": 0
  879. },
  880. {
  881. "key": "神速采集",
  882. "name": "神速",
  883. "type": 1,
  884. "api": "https://api.sszyapi.com/api.php/provide/vod/?ac=list",
  885. "playUrl": "https://player.sszyplayer.com/dplayer/?url=",
  886. "searchable": 1,
  887. "quickSearch": 1,
  888. "filterable": 0
  889. },
  890. {
  891. "key": "趣看视界",
  892. "name": "趣看视界",
  893. "type": 1,
  894. "api": "http://qkmp4.cn/api.php/provide/vod/",
  895. "searchable": 1,
  896. "quickSearch": 0,
  897. "filterable": 1
  898. },
  899. {
  900. "key": "M3U8TV",
  901. "name": "M3U8TV",
  902. "type": 0,
  903. "api": "http://www.zycaiji.net:7788/api.php/provide/vod/at/xml",
  904. "searchable": 1,
  905. "quickSearch": 1,
  906. "filterable": 0
  907. },
  908. {
  909. "key": "无名",
  910. "name": "无名",
  911. "type": 0,
  912. "api": "http://tv.aitesucai.xyz/api.php/provide/vod/at/xml/",
  913. "searchable": 1,
  914. "quickSearch": 1,
  915. "filterable": 0
  916. },
  917. {
  918. "key": "云海官采",
  919. "name": "云海官采",
  920. "type": 0,
  921. "api": "http://101.34.7.151:600/api.php/provide/vod/at/xml/",
  922. "searchable": 1,
  923. "quickSearch": 1,
  924. "filterable": 0
  925. },
  926. {
  927. "key": "麒麟资源",
  928. "name": "麒麟资源",
  929. "type": 0,
  930. "api": "http://www.qilinzyz.com/api.php/provide/vod/at/xml",
  931. "searchable": 1,
  932. "quickSearch": 1,
  933. "filterable": 0
  934. },
  935. {
  936. "key": "卧龙",
  937. "name": "卧龙资源",
  938. "type": 0,
  939. "api": "https://www.wolongzyw.com/api.php/provide/vod/at/xml",
  940. "searchable": 1,
  941. "quickSearch": 1,
  942. "filterable": 0
  943. },
  944. {
  945. "key": "乐活影视",
  946. "name": "乐活影视",
  947. "type": 0,
  948. "api": "https://lehootv.com/api.php/provide/vod/at/xml",
  949. "searchable": 1,
  950. "quickSearch": 1,
  951. "filterable": 0
  952. },
  953. {
  954. "key": "千寻影视",
  955. "name": "千寻影视",
  956. "type": 1,
  957. "api": "http://wy.dqyhg.cn/api.php/provide/vod/?ac=list",
  958. "searchable": 1,
  959. "quickSearch": 1,
  960. "filterable": 0,
  961. "categories": [
  962. "综艺",
  963. "动漫",
  964. "动作片",
  965. "喜剧片",
  966. "爱情片",
  967. "科幻片",
  968. "恐怖片",
  969. "剧情片",
  970. "战争片",
  971. "国产剧",
  972. "港台剧",
  973. "日韩剧",
  974. "欧美剧",
  975. "台湾剧",
  976. "蓝光大陆",
  977. "港台综艺"
  978. ]
  979. },
  980. {
  981. "key": "橘猫",
  982. "name": "橘猫",
  983. "type": 0,
  984. "api": "http://www.zitv.cc/api.php/provide/vod/at/xml/",
  985. "searchable": 1,
  986. "quickSearch": 1,
  987. "filterable": 0
  988. },
  989. {
  990. "key": "39影视",
  991. "name": "39影视",
  992. "type": 0,
  993. "api": "https://www.39kan.com/api.php/provide/vod/at/xml",
  994. "searchable": 1,
  995. "quickSearch": 1,
  996. "filterable": 0
  997. },
  998. {"key":"极速BT资源","name":"极速BT资源(切)","type":1,"api":"https://api.jisubt.com/videos","searchable":1,"quickSearch":1},
  999. {"key":"步步高资源","name":"步步高资源(切)","type":1,"api":"https://api.yparse.com/api/json","searchable":0,"quickSearch":0},
  1000. {"key":"松鼠资源","name":"松鼠资源(切)","type":1,"api":"https://m3u8.songshuzy.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1001. {"key":"OK资源","name":"OK资源(切)","type":1,"api":"https://www.okcj.site/api/provide/vod/","searchable":1,"quickSearch":1},
  1002. {"key":"猫眼资源","name":"猫眼资源(切)","type":1,"api":"http://maoyanapi.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1003. {"key":"FOX资源","name":"FOX资源(切)","type":1,"api":"https://api.foxzyapi.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1004. {"key":"量子资源","name":"量子资源(切)","type":1,"api":"http://cj.lziapi.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1005. {"key":"神速资源","name":"神速资源(切)","type":1,"api":"https://api.sszyapi.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1006. {"key":"番茄资源","name":"番茄资源(切)","type":1,"api":"http://api.fqzy.cc/api.php/provide/vod/","playUrl":"https://dp.fqplayer.com/dplayer/?url=","searchable":1,"quickSearch":1},
  1007. {"key":"卧龙资源","name":"卧龙资源(切)","type":1,"api":"https://collect.wolongzyw.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1008. {"key":"红牛资源","name":"红牛资源(切)","type":1,"api":"https://www.hongniuzy2.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1009. {"key":"北斗星资源","name":"北斗星资源(切)","type":1,"api":"https://m3u8.bdxzyapi.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1010. {"key":"樱花资源","name":"樱花资源(切)","type":1,"api":"https://m3u8.apiyhzy.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1011. {"key":"想看资源","name":"想看资源(切)","type":1,"api":"https://m3u8.xiangkanapi.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1012. {"key":"酷点资源","name":"酷点资源(切)","type":1,"api":"https://kudianzy.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1013. {"key":"速更资源","name":"速更资源(切)","type":1,"api":"https://sugengzy.cn/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1014. {"key":"闪电资源","name":"闪电资源(切)","type":1,"api":"http://sdzyapi.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1015. {"key":"飞速资源","name":"飞速资源(切)","type":1,"api":"https://www.feisuzy.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1016. {"key":"光速资源","name":"光速资源(切)","type":1,"api":"https://api.guangsuapi.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1017. {"key":"新浪资源","name":"新浪资源(切)","type":1,"api":"http://api.xinlangapi.com/xinlangapi.php/provide/vod/","searchable":1,"quickSearch":1},
  1018. {"key":"鱼乐资源","name":"鱼乐资源(切)","type":1,"api":"https://api.ylzy1.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1019. {"key":"韩剧资源","name":"韩剧资源(切)","type":1,"api":"http://www.hanjuzy.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
  1020. {"key":"快播资源","name":"快播资源(切)","type":1,"api":"http://www.kuaibozy.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1021. {"key":"八戒资源","name":"八戒资源(切)","type":1,"api":"http://cj.bajiecaiji.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
  1022. {"key":"百度资源","name":"百度资源(切)","type":1,"api":"https://api.apibdzy.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1023. {"key":"无尽资源2","name":"无尽资源2(切)","type":1,"api":"https://wuzy9.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1024. {"key":"无尽资源","name":"无尽资源(切)","type":1,"api":"https://wujinzy.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1025. {"key":"天空资源","name":"天空资源(切)","type":1,"api":"https://api.tiankongapi.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1026. {"key":"乐多资源","name":"乐多资源(切)","type":0,"api":"http://cj.leduocaiji.com/inc/api.php","playUrl":"json:https://api.leduotv.com/wp-api/getvodurl.php?vid=","searchable":1,"quickSearch":1},
  1027. {"key":"聚合资源","name":"聚合资源(切)","type":1,"api":"https://ziyuan.juhesys.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1028. {"key":"南国影源","name":"南国影源(切)","type":1,"api":"http://api.nguonphim.tv/api.php/provide/vod/","searchable":1,"quickSearch":1},
  1029. {
  1030. "key": "push_agent",
  1031. "name": "推送",
  1032. "type": 3,
  1033. "api": "csp_Ali",
  1034. "searchable": 1,
  1035. "quickSearch": 1,
  1036. "filterable": 0
  1037. },
  1038. {
  1039. "key": "精工厂",
  1040. "name": "精工厂",
  1041. "type": 0,
  1042. "api": "https://jgczyapi.com/home/cjapi/kld2/mc/vod/xml",
  1043. "searchable": 1,
  1044. "quickSearch": 1,
  1045. "filterable": 0
  1046. },
  1047. {
  1048. "key": "csp_xpath_xxj",
  1049. "name": "新香蕉(XP)",
  1050. "type": 3,
  1051. "api": "csp_XPathMacFilter",
  1052. "searchable": 1,
  1053. "quickSearch": 1,
  1054. "filterable": 1,
  1055. "ext": "https://yangyang1975.coding.net/p/free/d/mao/git/raw/master/xpath/2024xxj.json"
  1056. },
  1057. {
  1058. "key": "91md",
  1059. "name": "91md",
  1060. "type": 1,
  1061. "api": "https://91md.me/api.php/provide/vod/from/mdm3u8/",
  1062. "tag": "qb,tj,rm",
  1063. "categories": []
  1064. },{
  1065. "key": "影库资源",
  1066. "name": "影库资源",
  1067. "type": 1,
  1068. "api": "https://api.ykapi.net/api.php/provide/vod/from/ykm3u8/",
  1069. "tag": "qb,tj",
  1070. "categories": []
  1071. },
  1072. {
  1073. "key": "速播",
  1074. "name": "速播",
  1075. "type": 1,
  1076. "api": "https://api.suboapi.com/api.php/provide/vod/",
  1077. "searchable": 1,
  1078. "quickSearch": 1,
  1079. "filterable": 0
  1080. },
  1081. {
  1082. "key": "美少女",
  1083. "name": "美少女",
  1084. "type": 0,
  1085. "api": "https://www.msnii.com/api/xml.php",
  1086. "searchable": 1,
  1087. "quickSearch": 1,
  1088. "filterable": 1
  1089. },
  1090. {
  1091. "key": "饮水机2",
  1092. "name": "饮水机",
  1093. "type": 0,
  1094. "api": "https://www.xrbsp.com/api/xml.php",
  1095. "searchable": 1,
  1096. "quickSearch": 1,
  1097. "filterable": 1
  1098. },
  1099. {
  1100. "key": "老鸭1",
  1101. "name": "老鸭1",
  1102. "type": 1,
  1103. "api": "https://api.apilyzy.com/api.php/provide/vod/?ac=list",
  1104. "playUrl": "json:https://player.77lehuo.com/aliplayer/?url=",
  1105. "searchable": 1,
  1106. "quickSearch": 1,
  1107. "filterable": 0
  1108. },
  1109. {
  1110. "key": "老鸭2",
  1111. "name": "老鸭2",
  1112. "type": 1,
  1113. "api": "https://lbapi9.com/api.php/provide/vod/",
  1114. "playUrl": "json:https://player.77lehuo.com/aliplayer/?url=",
  1115. "searchable": 1,
  1116. "quickSearch": 1,
  1117. "filterable": 0
  1118. },
  1119. {
  1120. "key": "葡萄",
  1121. "name": "葡萄",
  1122. "type": 1,
  1123. "api": "https://api.putaozy.net/inc/apijson_vod.php",
  1124. "searchable": 0,
  1125. "quickSearch": 0,
  1126. "filterable": 0
  1127. },
  1128. {
  1129. "key": "奶插",
  1130. "name": "奶插",
  1131. "type": 1,
  1132. "api": "https://caiji.naichaapi.com/inc/apijson_vod.php",
  1133. "searchable": 1,
  1134. "quickSearch": 1,
  1135. "filterable": 1
  1136. },
  1137. {
  1138. "key": "点点",
  1139. "name": "点点",
  1140. "type": 0,
  1141. "api": "https://xx55zyapi.com/home/cjapi/ascf/mc/vod/xml",
  1142. "searchable": 1,
  1143. "quickSearch": 1,
  1144. "filterable": 0
  1145. },
  1146. {
  1147. "key": "小姐1",
  1148. "name": "小姐姐",
  1149. "type": 0,
  1150. "api": "https://xjjzyapi.com/home/cjapi/askl/mc/vod/xml/m3u8",
  1151. "searchable": 1,
  1152. "quickSearch": 1,
  1153. "filterable": 0
  1154. },
  1155. {
  1156. "key": "屌丝",
  1157. "name": "屌丝",
  1158. "type": 0,
  1159. "api": "https://sdszyapi.com/home/cjapi/asbb/sea/vod/xml",
  1160. "searchable": 1,
  1161. "quickSearch": 1,
  1162. "filterable": 0
  1163. },
  1164. {
  1165. "key": "色窝",
  1166. "name": "色窝",
  1167. "type": 1,
  1168. "api": "https://sewozyapi.com/api.php/provide/vod/",
  1169. "searchable": 1,
  1170. "quickSearch": 1,
  1171. "filterable": 0
  1172. },
  1173. {
  1174. "key": "佳丽",
  1175. "name": "佳丽",
  1176. "type": 1,
  1177. "api": "http://www.jializyzapi.com/api.php/provide/vod/",
  1178. "searchable": 1,
  1179. "quickSearch": 1,
  1180. "filterable": 0
  1181. },
  1182. {
  1183. "key": "小湿妹",
  1184. "name": "小湿妹",
  1185. "type": 0,
  1186. "api": "https://www.afasu.com/api/xml.php",
  1187. "searchable": 1,
  1188. "quickSearch": 1,
  1189. "filterable": 0
  1190. },
  1191. {
  1192. "key": "香奶儿",
  1193. "name": "香奶儿",
  1194. "type": 0,
  1195. "api": "https://www.gdlsp.com/api/xml.php",
  1196. "searchable": 1,
  1197. "quickSearch": 1,
  1198. "filterable": 1
  1199. },
  1200. {
  1201. "key": "鲍鱼",
  1202. "name": "鲍鱼",
  1203. "type": 0,
  1204. "api": "http://caiji26.com/home/cjapi/p0g8/mc/vod/xml",
  1205. "searchable": 1,
  1206. "quickSearch": 1,
  1207. "filterable": 0
  1208. },
  1209. {
  1210. "key": "咪咪",
  1211. "name": "咪咪",
  1212. "type": 0,
  1213. "api": "http://www.caiji25.com/home/cjapi/p0as/mc/vod/xml",
  1214. "searchable": 1,
  1215. "quickSearch": 1,
  1216. "filterable": 0
  1217. },
  1218. {
  1219. "key": "青青草",
  1220. "name": "青青草",
  1221. "type": 0,
  1222. "api": "https://www.caiji05.com/home/cjapi/cfda/mc/vod/xml",
  1223. "searchable": 1,
  1224. "quickSearch": 1,
  1225. "filterable": 0
  1226. },
  1227. {
  1228. "key": "酷伦",
  1229. "name": "酷伦",
  1230. "type": 1,
  1231. "api": "https://api.kudian70.com/api.php/provide/vod/",
  1232. "playUrl": "https://jx.kujiexi.net/m3u8.php?url=",
  1233. "searchable": 1,
  1234. "quickSearch": 1,
  1235. "filterable": 0
  1236. },
  1237. {
  1238. "key": "环亚",
  1239. "name": "环亚",
  1240. "type": 0,
  1241. "api": "http://wmcj8.com/inc/sapi.php",
  1242. "searchable": 1,
  1243. "quickSearch": 1,
  1244. "filterable": 0
  1245. },
  1246. {
  1247. "key": "花椒",
  1248. "name": "花椒",
  1249. "type": 1,
  1250. "api": "https://apihjzy.com/api.php/provide/vod/",
  1251. "searchable": 1,
  1252. "quickSearch": 1,
  1253. "filterable": 0
  1254. },
  1255. {
  1256. "key": "523",
  1257. "name": "523",
  1258. "type": 0,
  1259. "api": "https://caiji.523zyw.com/inc/seacmsapi.php",
  1260. "playUrl": "https://api.523zyw.com/?url=",
  1261. "searchable": 1,
  1262. "quickSearch": 1,
  1263. "filterable": 0
  1264. },
  1265. {
  1266. "key": "探探",
  1267. "name": "探探",
  1268. "type": 1,
  1269. "api": "https://apittzy.com/api.php/provide/vod/?ac=list",
  1270. "playUrl": "https://jiexi.ttbfp1.com/m3u8/?url=",
  1271. "searchable": 1,
  1272. "quickSearch": 1,
  1273. "filterable": 0
  1274. },
  1275. {
  1276. "key": "zmcj88",
  1277. "name": "字幕网资源",
  1278. "type": 0,
  1279. "api": "http://zmcj88.com/sapi?ac=videolist",
  1280. "searchable": 1,
  1281. "quickSearch": 1,
  1282. "filterable": 1
  1283. },
  1284. {
  1285. "key": "乐鱼",
  1286. "name": "乐鱼",
  1287. "type": 0,
  1288. "api": "https://www.leyuzyapi.com/inc/zyapimac.php",
  1289. "playUrl": "https://player.leyuzy.net/?url=",
  1290. "searchable": 1,
  1291. "quickSearch": 1,
  1292. "filterable": 0
  1293. },
  1294. {
  1295. "key": "酷豆",
  1296. "name": "酷豆",
  1297. "type": 1,
  1298. "api": "https://api.kdapi.info/api.php/provide/vod/",
  1299. "playUrl": "https://jx.kubohk.com/jx/?url=",
  1300. "searchable": 1,
  1301. "quickSearch": 1,
  1302. "filterable": 0
  1303. },
  1304. {
  1305. "key": "大MM",
  1306. "name": "大MM",
  1307. "type": 0,
  1308. "api": "https://www.dmmapi.com/home/cjapi/asd2c7/mc/vod/xml",
  1309. "searchable": 1,
  1310. "quickSearch": 1,
  1311. "filterable": 0
  1312. },
  1313. {
  1314. "key": "白嫖",
  1315. "name": "白嫖",
  1316. "type": 0,
  1317. "api": "https://www.kxgav.com/api/xml.php",
  1318. "searchable": 1,
  1319. "quickSearch": 1,
  1320. "filterable": 1
  1321. },
  1322. {
  1323. "key": "9号资源",
  1324. "name": "9号资源",
  1325. "type": 0,
  1326. "api": "http://fhapi9.com/api.php/provide/vod/at/xml/",
  1327. "searchable": 1,
  1328. "quickSearch": 1,
  1329. "filterable": 0
  1330. },
  1331. {
  1332. "key": "名优馆",
  1333. "name": "名优馆",
  1334. "type": 0,
  1335. "api": "http://mygzycj.com/sapi.php?ac=videolist",
  1336. "playUrl": "",
  1337. "categories": []
  1338. },
  1339. {
  1340. "key": "4000",
  1341. "name": "4000",
  1342. "type": 0,
  1343. "api": "http://4000zy.com/inc/api.php",
  1344. "playUrl": "",
  1345. "categories": []
  1346. },
  1347. {
  1348. "key": "哥哥妹妹",
  1349. "name": "哥哥妹妹",
  1350. "type": 0,
  1351. "api": "http://www.ggmmzy.com:9999/inc/xml",
  1352. "searchable": 0,
  1353. "quickSearch": 0,
  1354. "filterable": 0
  1355. },
  1356. {
  1357. "key": "*99资源",
  1358. "name": "*99资源",
  1359. "type": 1,
  1360. "api": "http://99zy.pw/api.php/provide/vod/"
  1361. },
  1362. {
  1363. "key": "*速度资源",
  1364. "name": "*速度资源",
  1365. "type": 0,
  1366. "api": "http://www.ggmmzy.com:9999/inc/xml"
  1367. },
  1368. {
  1369. "key": "*水蜜桃",
  1370. "name": "*水蜜桃",
  1371. "type": 1,
  1372. "api": "http://51smt4.xyz/api.php/provide/vod/"
  1373. },
  1374. {
  1375. "key": "*1024资源",
  1376. "name": "*1024资源",
  1377. "type": 0,
  1378. "api": "https://www.1024nf.com/api.php/provide/vod/at/xml"
  1379. },
  1380. {
  1381. "key": "*玖玖资源",
  1382. "name": "*玖玖资源",
  1383. "type": 0,
  1384. "api": "http://99zywcj.com/inc/sapi.php?ac=videolist"
  1385. },
  1386. {
  1387. "key": "*大地资源",
  1388. "name": "*大地资源",
  1389. "type": 0,
  1390. "api": "https://dadiapi.com/api.php/"
  1391. },
  1392. {
  1393. "key": "*乐播",
  1394. "name": "*乐播",
  1395. "type": 0,
  1396. "api": "https://lbapi9.com/api.php/provide/vod/at/xml"
  1397. },
  1398. {
  1399. "key": "*狼少年",
  1400. "name": "*狼少年",
  1401. "type": 0,
  1402. "api": "http://cjmygzy.com/inc/sapi.php?ac=videolist"
  1403. },
  1404. {
  1405. "key": "*富二代资源",
  1406. "name": "*富二代资源",
  1407. "type": 0,
  1408. "api": "http://f2dcj6.com/sapi/?ac=videolist"
  1409. },
  1410. {
  1411. "key": "*S猫资源",
  1412. "name": "*S猫资源",
  1413. "type": 0,
  1414. "api": "https://api.maozyapi.com/inc/api.php"
  1415. },
  1416. {
  1417. "key": "*九九资源吧",
  1418. "name": "*九九资源吧",
  1419. "type": 0,
  1420. "api": "http://99zyba.com/api.php/provide/vod/at/xml"
  1421. },
  1422. {
  1423. "key": "*速播资源",
  1424. "name": "*速播资源",
  1425. "type": 1,
  1426. "api": "http://api.suboapi.com/api.php/provide/vod/"
  1427. },
  1428. {
  1429. "key": "*抖阴视频",
  1430. "name": "*抖阴视频",
  1431. "type": 1,
  1432. "api": "https://www.888dav.com/api.php/provide/vod/"
  1433. },
  1434. { "key": "AVZY",
  1435. "name": "AVZY",
  1436. "type": 1,
  1437. "api": "http://m.7777688.com/inc/apijson.php",
  1438. "searchable": 0,
  1439. "quickSearch": 0,
  1440. "filterable": 0
  1441. },
  1442. {"key":"*523资源","name":"*523资源","type":1,"api":"https://caiji.523zyw.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
  1443. {"key":"*丝袜资源","name":"*丝袜资源","type":1,"api":"https://siwazyw.cc/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1444. {"key":"*芒果资源","name":"*芒果资源","type":1,"api":"https://mgzyz1.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1445. {"key":"*乐鱼资源","name":"*乐鱼资源","type":1,"api":"https://www.leyuzyapi.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
  1446. {"key":"*水蜜桃","name":"*水蜜桃","type":1,"api":"http://51smt4.xyz/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1447. {"key":"*秀色资源","name":"*秀色资源","type":1,"api":"https://api.xiuseapi.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1448. {"key":"*探探资源","name":"*探探资源","type":1,"api":"https://apittzy.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1449. {"key":"*色猫资源","name":"*色猫资源","type":1,"api":"https://api.maozyapi.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
  1450. {"key":"*草莓资源","name":"*草莓资源","type":1,"api":"https://caiji.caomeiapi.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
  1451. {"key":"*爱看资源","name":"*爱看资源","type":1,"api":"http://www.aikanzyz9.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
  1452. {"key":"*花魁资源","name":"*花魁资源","type":1,"api":"https://caiji.huakuiapi.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
  1453. {"key":"*葡萄资源","name":"*葡萄资源","type":1,"api":"https://api.putaozy.net/inc/apijson_vod.php","searchable":0,"quickSearch":0},
  1454. {"key":"*色窝资源","name":"*色窝资源","type":1,"api":"https://sewozyapi.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1455. {"key":"*淫窝资源","name":"*淫窝资源","type":1,"api":"https://api.yinwoapi.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1456. {"key":"*4000资源","name":"*4000资源","type":1,"api":"https://www.4000zy.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
  1457. {"key":"*大雕资源","name":"*大雕资源","type":1,"api":"http://www.caobi209.vip/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1458. {"key":"*色屌丝资源","name":"*色屌丝资源","type":0,"api":"http://sdszyapi.com/home/cjapi/asbb/mc10/vod/xml","searchable":0,"quickSearch":0},
  1459. {"key":"*小姐姐资源","name":"*小姐姐资源","type":0,"api":"https://xjjzyapi.com/home/cjapi/askl/mc10/vod/xml","searchable":0,"quickSearch":0},
  1460. {"key":"*52AVAV","name":"*52AVAV","type":0,"api":"https://52zyapi.com/home/cjapi/asda/mc10/vod/xml","searchable":0,"quickSearch":0},
  1461. {"key":"*水帘洞资源","name":"*水帘洞资源","type":1,"api":"https://www.sldcaiji.com/home/cjapi/s6da/mc10/vod/json","searchable":0,"quickSearch":0},
  1462. {"key":"*我要啪啪","name":"*我要啪啪","type":0,"api":"http://www.caiji21.com/home/cjapi/klkl/mc10/vod/xml","searchable":0,"quickSearch":0},
  1463. {"key":"*AV集中淫","name":"*AV集中淫","type":0,"api":"https://www.caiji22.com/home/cjapi/klp0/mc10/vod/xml","searchable":0,"quickSearch":0},
  1464. {"key":"*夜夜撸资源","name":"*夜夜撸资源","type":0,"api":"https://www.caiji23.com/home/cjapi/kls6/mc10/vod/xml","searchable":0,"quickSearch":0},
  1465. {"key":"*大屌丝资源","name":"*大屌丝资源","type":0,"api":"http://www.caiji24.com/home/cjapi/p0d2/mc10/vod/xml","searchable":0,"quickSearch":0},
  1466. {"key":"*咪咪资源","name":"*咪咪资源","type":0,"api":"http://www.caiji25.com/home/cjapi/p0as/mc10/vod/xml","searchable":0,"quickSearch":0},
  1467. {"key":"*鲍鱼AV","name":"*鲍鱼AV","type":0,"api":"http://caiji26.com/home/cjapi/p0g8/mc10/vod/xml","searchable":0,"quickSearch":0},
  1468. {"key":"*精工厂资源","name":"*精工厂资源","type":0,"api":"https://jgczyapi.com/home/cjapi/kld2/mc10/vod/xml","searchable":0,"quickSearch":0},
  1469. {"key":"*点点娱乐","name":"*点点娱乐","type":0,"api":"https://xx55zyapi.com/home/cjapi/ascf/mc10/vod/xml","searchable":0,"quickSearch":0},
  1470. {"key":"*淫人妻资源","name":"*淫人妻资源","type":1,"api":"http://www.yrqcaiji.com/home/cjapi/s6c7/mc10/vod/json","searchable":0,"quickSearch":0},
  1471. {"key":"*小处女资源","name":"*小处女资源","type":1,"api":"http://xcncaiji.com/home/cjapi/s6bb/mc10/vod/json","searchable":0,"quickSearch":0},
  1472. {"key":"*大MM资源","name":"*大MM资源","type":0,"api":"https://www.dmmapi.com/home/cjapi/asd2c7/mc10/vod/xml","searchable":0,"quickSearch":0},
  1473. {"key":"*黄瓜TV资源","name":"*黄瓜TV资源","type":0,"api":"https://www.caiji10.com/home/cjapi/cfs6/mc10/vod/xml","searchable":0,"quickSearch":0},
  1474. {"key":"*快播盒子资源","name":"*快播盒子资源","type":0,"api":"https://www.caiji09.com/home/cjapi/cfp0/mc10/vod/xml","searchable":0,"quickSearch":0},
  1475. {"key":"*大香蕉资源","name":"*大香蕉资源","type":0,"api":"https://www.caiji08.com/home/cjapi/cfkl/mc10/vod/xml","searchable":0,"quickSearch":0},
  1476. {"key":"*日本AV在线","name":"*日本AV在线","type":0,"api":"https://www.caiji07.com/home/cjapi/cfcf/mc10/vod/xml","searchable":0,"quickSearch":0},
  1477. {"key":"*久久热在线","name":"*久久热在线","type":0,"api":"https://www.caiji06.com/home/cjapi/cfbb/mc10/vod/xml","searchable":0,"quickSearch":0},
  1478. {"key":"*青青草视频","name":"*青青草视频","type":0,"api":"https://www.caiji05.com/home/cjapi/cfda/mc10/vod/xml","searchable":0,"quickSearch":0},
  1479. {"key":"*麻豆视频","name":"*麻豆视频","type":0,"api":"https://www.caiji04.com/home/cjapi/cfc7/mc10/vod/xml","searchable":0,"quickSearch":0},
  1480. {"key":"*一本道资源","name":"*一本道资源","type":0,"api":"https://www.caiji03.com/home/cjapi/cfg8/mc10/vod/xml","searchable":0,"quickSearch":0},
  1481. {"key":"*草榴视频","name":"*草榴视频","type":0,"api":"https://www.caiji02.com/home/cjapi/cfas/mc10/vod/xml","searchable":0,"quickSearch":0},
  1482. {"key":"*亚洲成人在线","name":"*亚洲成人在线","type":0,"api":"https://www.caiji01.com/home/cjapi/cfd2/mc10/vod/xml","searchable":0,"quickSearch":0},
  1483. {"key":"*天噜啦资源","name":"*天噜啦资源","type":0,"api":"http://www.987caiji.com/api/max.php","searchable":0,"quickSearch":0},
  1484. {"key":"*99资源","name":"*99资源","type":1,"api":"http://99zy.pw/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1485. {"key":"*010爱资源","name":"*010爱资源","type":0,"api":"http://www.010aizy.com/API/macs.php","searchable":0,"quickSearch":0},
  1486. {"key":"*痴汉队长","name":"*痴汉队长","type":1,"api":"https://javcaptain.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1487. {"key":"*抖阴视频","name":"*抖阴视频","type":1,"api":"https://www.888dav.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1488. {"key":"*麻豆视频2","name":"*麻豆视频2","type":1,"api":"https://madouse.la/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1489. {"key":"*91麻豆","name":"*91麻豆","type":1,"api":"https://91md.me/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1490. {"key":"*99资源吧","name":"*99资源吧","type":1,"api":"http://99zyba.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1491. {"key":"*爱操资源","name":"*爱操资源","type":1,"api":"https://aicaozy.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1492. {"key":"*浪潮资源","name":"*浪潮资源","type":1,"api":"http://langchaozy6.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1493. {"key":"*速播资源","name":"*速播资源","type":1,"api":"https://api.suboapi.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1494. {"key":"*酷豆资源","name":"*酷豆资源","type":1,"api":"https://kudouzy.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1495. {"key":"*酷豆2","name":"*酷豆2","type":1,"api":"https://api.kdapi.info/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1496. {"key":"*酷伦理","name":"*酷伦理","type":1,"api":"https://api.kudian70.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1497. {"key":"*影库资源","name":"*影库资源","type":1,"api":"https://api.ykapi.net/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1498. {"key":"*万影色","name":"*万影色","type":1,"api":"https://wanying4.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1499. {"key":"*银龙资源","name":"*银龙资源","type":1,"api":"https://yinlong.tv/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1500. {"key":"*奶茶资源","name":"*奶茶资源","type":1,"api":"https://caiji.naichaapi.com/inc/apijson_vod.php","searchable":0,"quickSearch":0},
  1501. {"key":"*爱播资源","name":"*爱播资源","type":1,"api":"https://cj.apiabzy.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1502. {"key":"*美少女资源","name":"*美少女资源","type":0,"api":"https://www.msnii.com/api/xml.php","searchable":0,"quickSearch":0},
  1503. {"key":"*淫水机资源","name":"*淫水机资源","type":0,"api":"https://www.xrbsp.com/api/xml.php","searchable":0,"quickSearch":0},
  1504. {"key":"*香奶儿资源","name":"*香奶儿资源","type":0,"api":"https://www.gdlsp.com/api/xml.php","searchable":0,"quickSearch":0},
  1505. {"key":"*白嫖资源","name":"*白嫖资源","type":0,"api":"https://www.kxgav.com/api/xml.php","searchable":0,"quickSearch":0},
  1506. {"key":"*小湿妹资源","name":"*小湿妹资源","type":0,"api":"https://www.afasu.com/api/xml.php","searchable":0,"quickSearch":0},
  1507. {"key":"*黄AV资源","name":"*黄AV资源","type":1,"api":"https://www.pgxdy.com/api/json.php","searchable":0,"quickSearch":0},
  1508. {"key":"*大地资源","name":"*大地资源","type":0,"api":"https://dadiapi.com/api.php","searchable":0,"quickSearch":0},
  1509. {"key":"*CK资源","name":"*CK资源","type":1,"api":"http://www.feifei67.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1510. {"key":"*老鸭资源","name":"*老鸭资源","type":1,"api":"https://api.apilyzy.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1511. {"key":"*花椒资源","name":"*花椒资源","type":1,"api":"https://apihjzy.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1512. {"key":"*辣椒资源","name":"*辣椒资源","type":1,"api":"https://apilj.com/api.php/provide/vod/at/json/","searchable":0,"quickSearch":0},
  1513. {"key":"*乐播资源","name":"*乐播资源","type":1,"api":"https://lbapi9.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1514. {"key":"*博天堂","name":"*博天堂","type":0,"api":"http://bttcj.com/inc/sapi.php","searchable":0,"quickSearch":0},
  1515. {"key":"*环亚资源","name":"*环亚资源","type":0,"api":"http://wmcj8.com/inc/sapi.php","searchable":0,"quickSearch":0},
  1516. {"key":"*JAV名优馆","name":"*JAV名优馆","type":0,"api":"http://mygzycj.com/api.php?ac=videolist","searchable":0,"quickSearch":0},
  1517. {"key":"*AVZY6888资源","name":"*AVZY6888资源","type":1,"api":"http://m.7777688.com/inc/apijson.php","searchable":0,"quickSearch":0},
  1518. {"key":"*色色资源","name":"*色色资源","type":0,"api":"http://secj8.com/inc/sapi.php?ac=videolist","searchable":0,"quickSearch":0},
  1519. {"key":"*玖玖资源","name":"*玖玖资源","type":0,"api":"http://99zywcj.com/inc/sapi.php?ac=videolist","searchable":0,"quickSearch":0},
  1520. {"key":"*久草资源","name":"*久草资源","type":0,"api":"http://jcspcj8.com/api?ac=videolist","searchable":0,"quickSearch":0},
  1521. {"key":"*狼少年","name":"*狼少年","type":0,"api":"http://cjmygzy.com/inc/sapi.php?ac=videolist","searchable":0,"quickSearch":0},
  1522. {"key":"*富二代资源","name":"*富二代资源","type":0,"api":"http://f2dcj6.com/sapi?ac=videolist","searchable":0,"quickSearch":0},
  1523. {"key":"*字幕网","name":"*字幕网","type":0,"api":"http://zmcj88.com/sapi?ac=videolist","searchable":0,"quickSearch":0},
  1524. {"key":"*利来资源","name":"*利来资源","type":0,"api":"http://llzxcj.com/inc/sck.php?ac=videolist","searchable":0,"quickSearch":0},
  1525. {"key":"*佳丽资源","name":"*佳丽资源","type":1,"api":"http://www.jializyzapi.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1526. {"key":"*番号资源","name":"*番号资源","type":1,"api":"http://fhapi9.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1527. {"key":"*鲨鱼资源","name":"*鲨鱼资源","type":1,"api":"https://shayuapi.com/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1528. {"key":"*速度资源","name":"*速度资源","type":0,"api":"http://www.ggmmzy.com:9999/inc/xml","searchable":0,"quickSearch":0},
  1529. {"key":"*KK写真资源","name":"*KK写真资源","type":1,"api":"https://kkzy.me/api.php/provide/vod/","searchable":0,"quickSearch":0},
  1530. {"key":"push_agent","name":"推送","type":3,"api":"csp_PushAgent","searchable":0,"quickSearch":0,"filterable":0}
  1531. ],
  1532. "lives": [ {
  1533. "group": "CCTV",
  1534. "channels": [{
  1535. "name": "CCTV-1",
  1536. "urls": [
  1537. "http://39.134.66.110/PLTV/88888888/224/3221225816/index.m3u8",
  1538. "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225918/index.m3u8",
  1539. "http://117.148.179.160/PLTV/88888888/224/3221231468/index.m3u8", "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"
  1540. ]
  1541. }, {
  1542. "name": "CCTV-2",
  1543. "urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225619/index.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",
  1544. "http://111.13.42.43/PLTV/88888888/224/3221226230/1.m3u8"]
  1545. }, {
  1546. "name": "CCTV-3","urls": ["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226021/index.m3u8", "http://111.63.117.13:6060/030000001000/CCTV-3/CCTV-3.m3u8"]},
  1547. {"name": "CCTV-4","urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225621/index.m3u8"]},
  1548. {"name": "CCTV-5","urls": ["http://111.63.117.13:6060/030000001000/CCTV-5/CCTV-5.m3u8", "http://39.134.66.110/PLTV/88888888/224/3221225818/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231702/index.m3u8"]},
  1549. {"name": "CCTV-5+","urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225649/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225761/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231459/index.m3u8"]},
  1550. {"name": "CCTV-6","urls": ["http://117.148.179.153/PLTV/88888888/224/3221231724/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221226027/index.m3u8"]},
  1551. {"name": "CCTV-7","urls": ["http://39.135.138.60:18890/PLTV/88888910/224/3221225624/index.m3u8", "http://39.134.66.110/PLTV/88888888/224/3221225671/index.m3u8", "http://117.148.179.160/PLTV/88888888/224/3221231633/index.m3u8" ]},
  1552. {"name": "CCTV-8","urls": ["http://39.134.24.24/PLTV/88888888/224/3221226029/index.m3u8", "http://117.148.179.55/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230737/index.m3u8"]},
  1553. {"name":"CCTV-9","urls":["http://39.134.115.163:8080/PLTV/88888910/224/3221225626/index.m3u8","http://117.148.179.162/PLTV/88888888/224/3221231697/index.m3u8","http://39.134.66.110/PLTV/88888888/224/3221225676/index.m3u8"]},
  1554. {"name": "CCTV-10","urls": ["http://39.134.66.110/PLTV/88888888/224/3221225677/index.m3u8"]},
  1555. {"name": "CCTV-11","urls": ["http://117.148.179.164/PLTV/88888888/224/3221231711/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225597/index.m3u8","http://111.13.42.8/PLTV/88888888/224/3221225869/1.m3u8"]},
  1556. {"name": "CCTV-12","urls": ["http://117.148.179.150/PLTV/88888888/224/3221231660/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225669/index.m3u8","http://111.13.42.43/PLTV/88888888/224/3221226228/1.m3u8"]},
  1557. {"name": "CCTV-13","urls": ["rtsp://183.252.176.54:554/PLTV/88888888/224/3221226104/10000100000000060000000002298296_0.smil","http://39.135.138.60:18890/PLTV/88888910/224/3221225638/index.m3u8", "http://39.134.115.163:8080/PLTV/88888910/224/3221225638/index.m3u8", "http://111.13.42.8/PLTV/88888888/224/3221226568/1.m3u8"]},
  1558. {"name": "CCTV-14","urls": ["http://117.148.179.182/PLTV/88888888/224/3221231648/index.m3u8","http://39.134.24.24/PLTV/88888888/224/3221225857/index.m3u8"]},
  1559. {"name": "CCTV-15","urls": ["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225601/index.m3u8"]},
  1560. {"name": "CCTV-16","urls": ["http://liveop.cctv.cn/hls/CCTV16HD/playlist.m3u8"]},
  1561. {"name": "CCTV-17","urls": ["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225765/index.m3u8","http://39.134.66.110/PLTV/88888888/224/3221225708/index.m3u8"]}]},
  1562. {"group": "卫视","channels": [
  1563. {"name": "湖南卫视","urls": ["http://39.134.115.163:8080/PLTV/88888910/224/3221225745/index.m3u8","http://39.134.66.2/PLTV/88888888/224/3221225506/index.m3u8"]},
  1564. {"name": "东南卫视","urls": ["http://39.135.55.105:6610/PLTV/88888888/224/3221227156/index.m3u8?servicetype=1"]},
  1565. {"name":"海峡卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227198/index.m3u8?servicetype=1"]},
  1566. {"name":"深圳卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225848/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227242/index.m3u8?servicetype=1"]},
  1567. {"name":"广东卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225824/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227164/index.m3u8?servicetype=1"]},
  1568. {"name":"广东南方卫视上星","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227214/index.m3u8?servicetype=1"]},
  1569. {"name":"江苏卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225847/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227160/index.m3u8?servicetype=1"]},
  1570. {"name":"东方卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225828/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226560/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226603/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227059/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226895/index.m3u8?servicetype=1"]},
  1571. {"name":"云南卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227181/index.m3u8?servicetype=1"]},
  1572. {"name":"北京卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225826/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225937/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227246/index.m3u8?servicetype=1"]},
  1573. {"name":"厦门卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226781/index.m3u8?servicetype=1"]},
  1574. {"name":"吉林卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227099/index.m3u8?servicetype=1"]},
  1575. {"name":"四川卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227182/index.m3u8?servicetype=1"]},
  1576. {"name":"天津卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225830/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225941/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227205/index.m3u8?servicetype=1"]},
  1577. {"name":"安徽卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225844/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227178/index.m3u8?servicetype=1"]},
  1578. {"name":"山东卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225843/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226928/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227236/index.m3u8?servicetype=1"]},
  1579. {"name":"江西卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225834/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227022/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227209/index.m3u8?servicetype=1"]},
  1580. {"name":"河北卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227063/index.m3u8?servicetype=1"]},
  1581. {"name":"河南卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227095/index.m3u8?servicetype=1"]},
  1582. {"name":"浙江卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225825/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225870/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225934/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227193/index.m3u8?servicetype=1"]},
  1583. {"name":"海南卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227216/index.m3u8?servicetype=1"]},
  1584. {"name":"湖北卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225840/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226863/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227111/index.m3u8?servicetype=1"]},
  1585. {"name":"贵州卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226827/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227201/index.m3u8?servicetype=1"]},
  1586. {"name":"辽宁卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225832/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227141/index.m3u8?servicetype=1"]},
  1587. {"name":"重庆卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225831/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225949/index.m3u8?servicetype=1"]},
  1588. {"name":"重庆卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227240/index.m3u8?servicetype=1"]},
  1589. {"name":"黑龙江卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225862/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225940/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227197/index.m3u8?servicetype=1"]},
  1590. {"name":"上海纪实人文","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225946/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227213/index.m3u8?servicetype=1"]},
  1591. {"name":"北京冬奥纪实","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225944/index.m3u8?servicetype=1"]},
  1592. {"name":"江西陶瓷","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227234/index.m3u8?servicetype=1"]},
  1593. {"name":"湖南快乐垂钓","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226940/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227028/index.m3u8?servicetype=1"]},
  1594. {"name":"湖南金鹰纪实","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226937/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226975/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227018/index.m3u8?servicetype=1"]},
  1595. {"name":"熊猫频道","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226715/index.m3u8?servicetype=1"]},
  1596. {"name":"SiTV全纪实","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227083/index.m3u8?servicetype=1"]},
  1597. {"name":"SiTV动漫秀场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227071/index.m3u8?servicetype=1"]},
  1598. {"name":"SiTV极速汽车","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227186/index.m3u8?servicetype=1"]},
  1599. {"name":"SiTV欢笑剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227145/index.m3u8?servicetype=1"]},
  1600. {"name":"SiTV游戏风云","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227075/index.m3u8?servicetype=1"]},
  1601. {"name":"SiTV生活时尚","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227091/index.m3u8?servicetype=1"]},
  1602. {"name":"SiTV都市剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227204/index.m3u8?servicetype=1"]},
  1603. {"name":"NewTV中国功夫","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225896/index.m3u8?servicetype=1"]},
  1604. {"name":"NewTV军事评论","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225890/index.m3u8?servicetype=1"]},
  1605. {"name":"NewTV军旅剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225887/index.m3u8?servicetype=1"]},
  1606. {"name":"NewTV动作电影","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225879/index.m3u8?servicetype=1"]},
  1607. {"name":"NewTV古装剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225880/index.m3u8?servicetype=1"]},
  1608. {"name":"NewTV家庭剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225882/index.m3u8?servicetype=1"]},
  1609. {"name":"NewTV怡伴健康","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225883/index.m3u8?servicetype=1"]},
  1610. {"name":"NewTV惊悚悬疑","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225885/index.m3u8?servicetype=1"]},
  1611. {"name":"NewTV明星大片","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225893/index.m3u8?servicetype=1"]},
  1612. {"name":"NewTV武搏世界","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225895/index.m3u8?servicetype=1"]},
  1613. {"name":"NewTV潮妈辣婆","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226107/index.m3u8?servicetype=1"]},
  1614. {"name":"NewTV爱情喜剧","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225877/index.m3u8?servicetype=1"]},
  1615. {"name":"NewTV精品体育","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225886/index.m3u8?servicetype=1"]},
  1616. {"name":"NewTV精品大剧","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225889/index.m3u8?servicetype=1"]},
  1617. {"name":"NewTV精品纪录","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225888/index.m3u8?servicetype=1"]},
  1618. {"name":"NewTV金牌综艺","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225884/index.m3u8?servicetype=1"]},
  1619. {"name":"哒啵赛事","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225894/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226676/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226680/index.m3u8?servicetype=1"]},
  1620. {"name":"上海哈哈炫动","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225872/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227177/index.m3u8?servicetype=1"]},
  1621. {"name":"北京卡酷少儿","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225871/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226963/index.m3u8?servicetype=1"]},
  1622. {"name":"广东嘉佳卡通","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227230/index.m3u8?servicetype=1"]},
  1623. {"name":"江苏优漫卡通","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225874/index.m3u8?servicetype=1"]},
  1624. {"name":"湖南金鹰卡通","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226959/index.m3u8?servicetype=1"]},
  1625. {"name":"黑莓动画","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225878/index.m3u8?servicetype=1"]},
  1626. {"name":"黑莓电影","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225891/index.m3u8?servicetype=1"]},
  1627. {"name":"百视通剧集1","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226692/index.m3u8?servicetype=1"]},
  1628. {"name":"百视通剧集2","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226754/index.m3u8?servicetype=1"]},
  1629. {"name":"百视通剧集3","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227045/index.m3u8?servicetype=1"]},
  1630. {"name":"百视通剧集4","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227134/index.m3u8?servicetype=1"]},
  1631. {"name":"百视通动画1","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226732/index.m3u8?servicetype=1"]},
  1632. {"name":"百视通动画2","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226736/index.m3u8?servicetype=1"]},
  1633. {"name":"百视通动画3","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226741/index.m3u8?servicetype=1"]},
  1634. {"name":"百视通动画4","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226743/index.m3u8?servicetype=1"]},
  1635. {"name":"百视通动画5","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227036/index.m3u8?servicetype=1"]},
  1636. {"name":"百视通电影1","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226708/index.m3u8?servicetype=1"]},
  1637. {"name":"百视通电影2","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226712/index.m3u8?servicetype=1"]},
  1638. {"name":"百视通电影3","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227130/index.m3u8?servicetype=1"]},
  1639. {"name":"百视通电影4 8M720","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227037/index.m3u8?servicetype=1"]},
  1640. {"name":"百视通电竞","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227033/index.m3u8?servicetype=1"]}]},
  1641. {"group": "港澳","channels": [
  1642. {"name": "凤凰中文","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"]},
  1643. {"name": "凤凰资讯","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"]},
  1644. {"name": "凤凰香港","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"]},
  1645. {"name": "凤凰电影台","urls": ["http://218.202.220.2:5000/nn_live.ts?id=NEWSASIA"]},
  1646. {"name": "翡翠台","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"]},
  1647. {"name": "明珠台","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"]},
  1648. {"name": "TVB星河","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"]},
  1649. {"name": "星空卫视","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"]},
  1650. {"name": "香港HKS","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"]},
  1651. {"name": "澳门卫视","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"]},
  1652. {name": "澳视澳门","urls": ["http://61.244.22.4/ch1/ch1.live/playelist.m3u8"]},
  1653. {"name": "澳门资讯","urls": ["http://61.244.22.5/ch5/info_ch5.live/master.m3u8","http://61.244.22.4/ch2/ch2.live/playelist.m3u8"]},
  1654. {"name": "民视","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"]},
  1655. {"name": "台视","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"]},
  1656. {"name": "中视","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"]},
  1657. {"name": "华视","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"]},
  1658. {"name": "公视","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"]},
  1659. {"name": "CHC高清電影","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"]},
  1660. {"name": "CHC动作電影","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"]},
  1661. {"name": "CHC家庭影院","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"]},
  1662. {"name": "超级电影","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"]},
  1663. {"name": "超级电视剧","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"]},
  1664. {"name": "黑莓电影","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"]},
  1665. {"name": "卫视电影","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"]},
  1666. {"name": "美亚电影","urls": ["http://v3948069e.live.126.net/live/hodtv4003.flv","http://iptv5.phoves.com.cn/mytv/mitv.php?id=2"]},
  1667. {"name": "好莱坞","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"]},
  1668. {"name": "龙华洋片","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"]},
  1669. {"name": "邵氏电影","urls": ["http://106.53.212.251/dl/tv.php?id=213"]},
  1670. {"name": "龙华电影","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"]},
  1671. {"name": "东森电影","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"]},
  1672. {"name": "东森洋片","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"]}]},
  1673. {"group": "明星","channels": [
  1674. {"name": "周星馳","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"]},
  1675. {"name": "林正英","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"]},
  1676. {"name": "成龍","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"]},
  1677. {"name": "張國榮","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"]},
  1678. {"name": "吳京","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"]},
  1679. {"name": "劉德華","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"]},
  1680. {"name": "古天樂","urls": ["http://117.148.179.176/PLTV/88888888/224/3221231645/index.m3u8", "http://api.phoves.com.cn/iptv/huya.php?id=10871113"]},
  1681. {"name": "徐崢","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"]},
  1682. {"name": "沈腾","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"]},
  1683. {"name":"甄子丹","urls":["https://hw.flv.huya.com/src/1423787820-1423787820-6115122123343134720-2847699096-10057-A-0-1-imgplus.m3u8"]},
  1684. {"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"]},
  1685. {"name":"五福星","urls":["https://hw.flv.huya.com/src/1356780980-1356780980-5827329936934830080-2713685416-10057-A-0-1.m3u8"]},
  1686. {"name":"李小龙","urls":["https://hw.flv.huya.com/src/1449588725-1449588725-6225936166525337600-3048959678-10057-A-0-1.m3u8"]},
  1687. {"name":"李连杰","urls":["https://hw.flv.huya.com/src/1394565196-1394565196-5989611908959830016-2789253848-10057-A-0-1-imgplus.m3u8"]},
  1688. {"name":"女神系列","urls":["https://hw.flv.huya.com/src/1388451591-1388451591-5963354175424167936-2777026638-10057-A-0-1-imgplus.m3u8"]},
  1689. {"name":"张柏芝","urls":["https://hw.flv.huya.com/src/1524434111-1524434111-6547394651651833856-3048991678-10057-A-0-1.m3u8"]},
  1690. {"name":"北有谢","urls":["https://hw.flv.huya.com/src/1445653465-1445653465-6209034353524080640-2847699238-10057-A-0-1.m3u8"]},
  1691. {"name":"刘涛","urls":["https://hw.flv.huya.com/src/1524418105-1524418105-6547325906405294080-3048959666-10057-A-0-1.m3u8"]},
  1692. {"name":"大咖自黑","urls":["https://hw.flv.huya.com/src/1449572975-1449572975-6225868520790425600-2789274544-10057-A-0-1.m3u8"]},
  1693. {"name":"极限挑战","urls":["https://hw.flv.huya.com/src/1423782086-1423782086-6115097496000659456-2847687628-10057-A-0-1-imgplus.m3u8"]},
  1694. {"name":"【黑帮大片】","urls":["https://hw.flv.huya.com/src/1388472589-1388472589-5963444361147449344-2777068634-10057-A-0-1-imgplus.m3u8"]},
  1695. {"name": "金庸頻道","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"]},
  1696. {"name": "喜劇聯盟","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"]},
  1697. {"name": "高分影院","urls": ["http://117.148.179.182/PLTV/88888888/224/3221231699/index.m3u8"]},
  1698. {"name": "周潤發","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"]},
  1699. {"name": "郭富城","urls": ["http://117.148.179.152/PLTV/88888888/224/3221231688/index.m3u8"]},
  1700. {"name": "楊冪","urls": ["http://117.148.179.183/PLTV/88888888/224/3221231556/index.m3u8"]},
  1701. {"name": "劉亦菲","urls": ["http://117.148.179.165/PLTV/88888888/224/3221231787/index.m3u8"]},
  1702. {"name": "懷舊老片","urls": ["http://117.148.179.146/PLTV/88888888/224/3221231513/index.m3u8"]},
  1703. {"name": "午夜失眠劇場","urls": ["http://117.148.179.141/PLTV/88888888/224/3221231516/index.m3u8"]},
  1704. {"name": "雲上電影院","urls": ["http://117.148.179.176/PLTV/88888888/224/3221231565/index.m3u8"]},
  1705. {"name": "每日科幻電影","urls": ["http://117.148.179.160/PLTV/88888888/224/3221231568/index.m3u8"]},
  1706. {"name": "殭屍劇場","urls": ["http://117.148.179.165/PLTV/88888888/224/3221231742/index.m3u8", "https://3954-quic.liveplay.myqcloud.com/live/3954_363783415.flv"]},
  1707. {"name": "TVB劇場","urls": ["http://117.148.179.157/PLTV/88888888/224/3221231733/index.m3u8"]},
  1708. {"name": "新片放映廳","urls": ["http://117.148.179.160/PLTV/88888888/224/3221231640/index.m3u8"]},
  1709. {"name": "盜墓","urls": ["http://117.148.179.164/PLTV/88888888/224/3221231652/index.m3u8"]},
  1710. {"name": "試膽大會","urls": ["http://117.148.179.166/PLTV/88888888/224/3221231672/index.m3u8"]},
  1711. {"name": "高能燒腦時刻","urls": ["http://117.148.179.169/PLTV/88888888/224/3221231504/index.m3u8"]},
  1712. {"name": "4K劇場","urls": ["http://117.148.179.161/PLTV/88888888/224/3221231624/index.m3u8"]},
  1713. {"name": "愛情公寓","urls": ["http://117.148.179.160/PLTV/88888888/224/3221231583/index.m3u8"]},
  1714. {"name": "軍旅劇場","urls": ["http://117.148.179.145/PLTV/88888888/224/3221231585/index.m3u8"]},
  1715. {"name": "SNH48劇場公演","urls": ["http://117.148.179.139/PLTV/88888888/224/3221231622/index.m3u8"]},
  1716. {"name": "少林劇場","urls": ["http://117.148.179.160/PLTV/88888888/224/3221231628/index.m3u8"]},
  1717. {"name": "神探狄仁傑","urls": ["http://117.148.179.139/PLTV/88888888/224/3221231634/index.m3u8"]},
  1718. {"name": "黃金劇場","urls": ["http://117.148.179.183/PLTV/88888888/224/3221231637/index.m3u8"]},
  1719. {"name": "追劇少女","urls": ["http://117.148.179.179/PLTV/88888888/224/3221231643/index.m3u8"]},
  1720. {"name": "古龍作品集","urls": ["http://117.148.179.160/PLTV/88888888/224/3221231657/index.m3u8"]},
  1721. {"name": "經典賀歲片","urls": ["http://117.148.179.159/PLTV/88888888/224/3221231679/index.m3u8"]},
  1722. {"name": "每日薦影","urls": ["http://117.148.179.162/PLTV/88888888/224/3221231727/index.m3u8"]},
  1723. {"name": "武俠劇場","urls": ["http://117.148.179.160/PLTV/88888888/224/3221231763/index.m3u8"]},
  1724. {"name": "KK_经典好剧","urls": ["http://hpull.kktv8.com/livekktv/153793844/playlist.m3u8"]},
  1725. {"name": "KK_科幻怪兽","urls": ["http://hpull.kktv8.com/livekktv/143960119/playlist.m3u8"]},
  1726. {"name": "KK_喜剧电影","urls": ["http://hpull.kktv8.com/livekktv/99592190/playlist.m3u8"]},
  1727. {"name": "KK_女神影院","urls": ["http://hpull.kktv8.com/livekktv/99350550/playlist.m3u8"]}]},
  1728. {"group": "斗鱼","channels": [
  1729. {"name":"牛叔说电影","urls":["http://epg.112114.xyz/douyu/2758565"]},
  1730. {"name":"小片说电影","urls":["http://epg.112114.xyz/douyu/4258555"]},
  1731. {"name":"侃片大师兄","urls":["http://epg.112114.xyz/douyu/9338839"]},
  1732. {"name":"特辑影院","urls":["http://epg.112114.xyz/douyu/3637778"]},
  1733. {"name":"女神金","urls":["http://epg.112114.xyz/douyu/747764"]},
  1734. {"name":"周末恐怖","urls":["http://epg.112114.xyz/douyu/3637726"]},
  1735. {"name":"周末经典","urls":["http://epg.112114.xyz/douyu/3637765"]},
  1736. {"name":"林正英僵尸","urls":["http://epg.112114.xyz/douyu/218859"]},
  1737. {"name":"小鸽陪看","urls":["http://epg.112114.xyz/douyu/3928"]},
  1738. {"name":"欧美恐怖","urls":["http://epg.112114.xyz/douyu/96577"]},
  1739. {"name":"动漫","urls":["http://epg.112114.xyz/douyu/206858"]},
  1740. {"name":"恐怖电影","urls":["http://epg.112114.xyz/douyu/310926"]},
  1741. {"name":"香港赌片","urls":["http://epg.112114.xyz/douyu/315457"]},
  1742. {"name":"米娅陪看","urls":["http://epg.112114.xyz/douyu/6537888"]},
  1743. {"name":"黎黎来了","urls":["http://epg.112114.xyz/douyu/7116591"]},
  1744. {"name":"漫威科幻","urls":["http://epg.112114.xyz/douyu/6140589"]},
  1745. {"name":"欧美科幻","urls":["http://epg.112114.xyz/douyu/9651304"]},
  1746. {"name":"经典喜剧","urls":["http://epg.112114.xyz/douyu/9650887"]},
  1747. {"name":"国产大片","urls":["http://epg.112114.xyz/douyu/8986148"]},
  1748. {"name":"刘德华","urls":["http://epg.112114.xyz/douyu/2516864"]},
  1749. {"name":"神乐华语","urls":["http://epg.112114.xyz/douyu/85894"]},
  1750. {"name":"神乐经典","urls":["http://epg.112114.xyz/douyu/122402"]},
  1751. {"name":"神乐欧美","urls":["http://epg.112114.xyz/douyu/20415"]},
  1752. {"name":"神乐粤语","urls":["http://epg.112114.xyz/douyu/6566671"]},
  1753. {"name":"贝爷MAX","urls":["http://epg.112114.xyz/douyu/4332"]},
  1754. {"name":"贝爷影厅","urls":["http://epg.112114.xyz/douyu/252802","http://epg.112114.xyz/douyu/36337","http://epg.112114.xyz/douyu/925724"]}]},
  1755. {"group": "CCTV","channels": [{"name":"022/5/29更新接口--反馈蜗牛ci.ci/672","urls":["http://hls-ott-zhibo.wasu.tv/live/443/index.m3u8","http://183.232.171.91/tx.hls.huya.com/src/1199512837905-1199512837905-5226813369159254016-2399025799266-10057-A-0-1.m3u8","http://dyscdnali3.douyucdn.cn/live/2901080rH4xX1NNE.flv?uuid=","http://dyscdnali1.douyucdn.cn/live/2901080rH4xX1NNE.flv?uuid=","http://tx2play1.douyucdn.cn/live/2901080rH4xX1NNE.xs?uuid="]},
  1756. {"name":"中国天气","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227210/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227210/index.m3u8?servicetype=1","http://140.207.241.2:8080/live/program/live/zgqx/1300000/mnf.m3u8","http://39.135.230.71/ott.fj.chinamobile.com/PLTV/88888888/224/3221227005/index.m3u8","http://hls.weathertv.cn/tslslive/qCFIfHB/hls/live_sd.m3u8"]},
  1757. {"name":"CCTV-1","urls":["http://39.135.32.7:6610/000000001000/HD-4000k-1080P-cctv1/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225618/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225642/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225762/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221226221/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221226225/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225918/index.m3u8","http://tlivectfree-cdn.ysp.cctv.cn/ysp/2000210103.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221225726/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221225777/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225573/index.m3u8?fmt=ts2hls","http://39.135.138.58:18890/PLTV/88888888/224/3221225618/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225642/index.m3u8","http://117.148.179.155/PLTV/88888888/224/3221231468/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv1hd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225630/index.m3u8","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://mmitv.top/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","http://66.90.88.132:8080/hls/ph00481/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225829/index.m3u8"]},
  1758. {"name":"CCTV-2","urls":["http://39.135.32.7:6610/000000001000/HD-4000k-1080P-cctv2/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888910/224/3221225643/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225619/index.m3u8","http://39.135.230.74/ott.fj.chinamobile.com/PLTV/88888888/224/3221226795/index.m3u8","http://39.135.138.58:18890/PLTV/88888910/224/3221225643/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225619/index.m3u8","http://117.148.179.147/PLTV/88888888/224/3221231678/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225572/index.m3u8?fmt=ts2hls","http://v.mp.haue.edu.cn/hls/cctv2hd.m3u8","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"]},
  1759. {"name":"CCTV-3","urls":["http://39.135.32.7:6610/000000001000/HD-4000k-1080P-cctv3/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.134.115.163:8080/PLTV/88888910/224/3221225647/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225634/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225647/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225647/index.m3u8","http://117.148.179.183/PLTV/88888888/224/3221231682/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv3hd.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","http://66.90.88.132:8080/hls/ph00482/index.m3u8"]},
  1760. {"name":"CCTV-4","urls":["http://39.135.32.7:6610/000000001000/HD-8000k-1080P-cctv4/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225621/index.m3u8","http://39.135.230.80/ott.fj.chinamobile.com/PLTV/88888888/224/3221225802/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225621/index.m3u8","http://117.148.179.182/PLTV/88888888/224/3221231726/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225571/index.m3u8?fmt=ts2hls","http://v.mp.haue.edu.cn/hls/cctv4hd.m3u8","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","http://66.90.88.132:8080/hls/ph00483/index.m3u8"]},
  1761. {"name":"CCTV-5","urls":["http://39.135.32.7:6610/000000001000/HD-4000k-1080P-cctv5/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225633/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225751/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225752/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv5phd.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"]},
  1762. {"name":"CCTV-5+","urls":["http://39.135.32.7:6610/000000001000/HD-4000k-1080P-cctv05plus/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225649/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225706/index.m3u8","http://39.135.230.82/ott.fj.chinamobile.com/PLTV/88888888/224/3221225821/index.m3u8","http://117.148.179.136/PLTV/88888888/224/3221231459/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225649/index.m3u8","http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-cctv05plus/HD-8000k-1080P-cctv05plus","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"]},
  1763. {"name":"CCTV-6","urls":["http://39.135.32.7:6610/000000001000/HD-4000k-1080P-cctv6/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225632/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225650/index.m3u8","http://117.148.179.153/PLTV/88888888/224/3221231724/index.m3u8","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://v.mp.haue.edu.cn/hls/cctv6hd.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"]},
  1764. {"name":"CCTV-7","urls":["http://39.135.32.7:6610/000000001000/cctv-7/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225624/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225644/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225570/index.m3u8?fmt=ts2hls","http://v.mp.haue.edu.cn/hls/cctv7hd.m3u8","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"]},
  1765. {"name":"CCTV-8","urls":["http://39.135.32.7:6610/000000001000/HD-8000k-1080P-cctv8/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225631/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225635/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225635/index.m3u8","http://39.134.66.2/PLTV/88888888/224/3221225795/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv8hd.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"]},
  1766. {"name":"CCTV-9","urls":["http://39.135.32.7:6610/000000001000/HD-4000k-1080P-cctv9/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225626/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225646/index.m3u8","http://39.134.115.163:8080/PLTV/88888910/224/3221225626/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225920/index.m3u8?fmt=ts2hls","http://117.148.179.162/PLTV/88888888/224/3221231697/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv9hd.m3u8","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"]},
  1767. {"name":"CCTV-10","urls":["http://39.135.32.7:6610/000000001000/cctv-10/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225627/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225636/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225569/index.m3u8?fmt=ts2hls","http://117.148.179.175/PLTV/88888888/224/3221231666/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv10hd.m3u8","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"]},
  1768. {"name":"CCTV-11","urls":["http://39.135.32.7:6610/000000001000/HD-8000k-1080P-cctv11/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225628/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225568/index.m3u8?fmt=ts2hls","http://117.148.179.164/PLTV/88888888/224/3221231711/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv11.m3u8","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"]},
  1769. {"name":"CCTV-12","urls":["http://39.135.32.7:6610/000000001000/cctv-12/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225629/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225637/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225567/index.m3u8?fmt=ts2hls","http://117.148.179.150/PLTV/88888888/224/3221231660/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv12hd.m3u8","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"]},
  1770. {"name":"CCTV-13","urls":["http://39.135.32.7:6610/000000001000/HD-8000k-1080P-cctv13/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.59:18890/PLTV/88888910/224/3221225638/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225638/index.m3u8","http://newsbsh5ca.v.live.baishancdnx.cn/live/newscctv13_2/index.m3u8","http://39.135.138.59:18890/PLTV/88888910/224/3221225638/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225638/index.m3u8","http://39.134.66.8/PLTV/88888888/224/3221225812/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225566/index.m3u8?fmt=ts2hls","http://v.mp.haue.edu.cn/hls/cctv13hd.m3u8","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","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225817/index.m3u8","http://scgctvshow.sctv.com/scgc/cctv13/index.m3u8"]},
  1771. {"name":"CCTV-14","urls":["http://39.135.32.7:6610/000000001000/cctv-14/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225639/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225640/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225565/index.m3u8?fmt=ts2hls","http://117.148.179.182/PLTV/88888888/224/3221231648/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv14hd.m3u8","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"]},
  1772. {"name":"CCTV-15","urls":["http://39.135.32.7:6610/000000001000/HD-8000k-1080P-cctv15/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225641/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225564/index.m3u8?fmt=ts2hls","http://117.148.179.169/PLTV/88888888/224/3221231693/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv15.m3u8","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"]},
  1773. {"name":"CCTV-16","urls":["http://39.135.32.7:6610/000000001000/HD-8000k-1080P-cctv16/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221226230/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221226233/index.m3u8","http://cctvalih5ca.v.myalicdn.com/live/cctv16_2/index.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221226283/1/index.m3u8?fmt=ts2hls","http://39.135.46.246:6610/PLTV/77777777/224/3221225956/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://v.mp.haue.edu.cn/hls/cctv16.m3u8","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"]},
  1774. {"name":"CCTV-17","urls":["http://39.135.32.7:6610/000000001000/HD-4000k-1080P-cctv17/1.m3u8?IASHttpSessionId=OTT?zzhongd","http://39.135.138.58:18890/PLTV/88888888/224/3221225907/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225908/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225909/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225910/index.m3u8?fmt=ts2hls","http://117.148.179.167/PLTV/88888888/224/3221231772/index.m3u8","http://v.mp.haue.edu.cn/hls/cctv17hd.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225922/index.m3u8?fmt=ts2hls","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"]},
  1775. {"name":"CCTV-风云音乐","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012514103.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221225698/1/index.m3u8?fmt=ts2hls","http://42.176.185.28:9901/tsfile/live/1024_1.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221226083/1/index.m3u8?fmt=ts2hls","http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226083/1/index.m3u8?fmt=ts2hls","http://175.18.189.238:9999/tsfile/live/1029_1.m3u8","http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/fyyy/fyyy711/1000/index.m3u8?&encrypt=1","http://mmitv.top/pltv/gdgz.php?id=117&upt=604ef0611cb50f83","http://mmitv.top/pltv/gdgz.php?id=117&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=cctvfyyy&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=cctvfyyy&upt=604ef0611cb50f83","http://mmitv.top/pltv/gdgz.php?id=117&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=cctvfyyy&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=117&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=cctvfyyy&upt=63a44f4ef2f3c6ce","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"]},
  1776. {"name":"CCTV-兵器科技","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012513403.m3u8","http://39.136.12.4:6610/PLTV/88888888/224/3221225676/1/index.m3u8?fmt=ts2hls","http://42.176.185.28:9901/tsfile/live/1034_1.m3u8","http://175.18.189.238:9999/tsfile/live/1027_1.m3u8","http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/gfjs/gfjs711/1000/index.m3u8?&encrypt=1","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"]},
  1777. {"name":"CCTV-世界地理","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012513303.m3u8","http://42.176.185.28:9901/tsfile/live/1037_1.m3u8","http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226071/1/index.m3u8?fmt=ts2hls","http://175.18.189.238:9999/tsfile/live/1000_1.m3u8","http://39.134.118.77/live.gq.miguvideo.com:8080/ws_v/2018/sjdl/sjdl711/1000/index.m3u8?&encrypt=1","http://42.176.185.28:9901/tsfile/live/1037_1.m3u8","http://117.148.179.156/PLTV/88888888/224/3221231537/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231537/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=124&upt=63a44f4ef2f3c6ce","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"]},
  1778. {"name":"CCTV-风云足球","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012514203.m3u8","http://117.148.179.137/PLTV/88888888/224/3221231547/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231547/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=119&upt=63a44f4ef2f3c6ce","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"]},
  1779. {"name":"CCTV-央视台球","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012513703.m3u8","http://117.148.179.167/PLTV/88888888/224/3221231616/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231616/index.m3u8","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"]},
  1780. {"name":"CCTV-高尔夫网球","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012512503.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231619/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231619/index.m3u8","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"]},
  1781. {"name":"CCTV-电视指南","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012514003.m3u8","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226120/1/index.m3u8?fmt=ts2hls"]},
  1782. {"name":"CCTV-文化精品","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012513803.m3u8","http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225675/1/index.m3u8?fmt=ts2hls","http://117.148.179.147/PLTV/88888888/224/3221231561/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231561/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=116&upt=7e4f8041b306488a","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"]},
  1783. {"name":"CCTV-怀旧剧场","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012511203.m3u8","http://117.148.179.158/PLTV/88888888/224/3221231544/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231544/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=118&upt=63a44f4ef2f3c6ce","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"]},
  1784. {"name":"CCTV-第一剧场","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012514403.m3u8","http://117.148.179.172/PLTV/88888888/224/3221231540/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=121&upt=63a44f4ef2f3c6ce","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"]},
  1785. {"name":"CCTV-风云剧场","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012514603.m3u8","http://117.148.179.162/PLTV/88888888/224/3221231604/index.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231604/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=120&upt=63a44f4ef2f3c6ce","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226107/1/index.m3u8?fmt=ts2hls"]},
  1786. {"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"]},
  1787. {"name":"CCTV-女性时尚","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012513903.m3u8","http://117.148.179.167/PLTV/88888888/224/3221231598/index.m3u8","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"]},
  1788. {"name":"CCTV-卫生健康","urls":["http://tlivectfree-cdn.ysp.cctv.cn/ysp/2012513503.m3u8"]},
  1789. {"name":"中国教育1","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"]},
  1790. {"name":"中国教育2","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"]},
  1791. {"name":"中国教育3","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"]},
  1792. {"name":"中国教育4","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"]}
  1793. ]},
  1794. {"group": "卫视","channels": [{"name":"湖南卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225707/1/index.m3u8?fmt=ts2hls","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226211/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225745/index.m3u8","http://v.mp.haue.edu.cn/hls/hunanhd.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","http://66.90.88.132:8080/hls/ph00501/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=42&upt=63a44f4ef2f3c6ce","http://140.207.241.3:8080/live/program/live/hnwshd/4000000/mnf.m3u8"]},
  1795. {"name":"东南卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225739/1/index.m3u8?fmt=ts2hls","rtsp://183.252.166.199/PLTV/88888888/224/3221226121/10000100000000060000000002358085_0.smil","http://v.mp.haue.edu.cn/hls/dnhd.m3u8","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://mmitv.top/pltv/gdgz.php?id=55&upt=63a44f4ef2f3c6ce","http://111.13.42.8/PLTV/88888888/224/3221225876/1.m3u8","http://183.207.248.71:80/cntv/live1/n-dongnanstv/n-dongnanstv","http://39.134.39.37/PLTV/88888888/224/3221226182/index.m3u8"]},
  1796. {"name":"海峡卫视","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"]},
  1797. {"name":"广东南方卫视","urls":["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"]},
  1798. {"name":"广东卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225720/1/index.m3u8?fmt=ts2hls","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225742/index.m3u8","http://v.mp.haue.edu.cn/hls/gdhd.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","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226216/index.m3u8"]},
  1799. {"name":"深圳卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225712/1/index.m3u8?fmt=ts2hls","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226205/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225741/index.m3u8","http://v.mp.haue.edu.cn/hls/szhd.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"]},
  1800. {"name":"江苏卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225751/1/index.m3u8?fmt=ts2hls","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226200/index.m3u8","http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225743/index.m3u8","http://v.mp.haue.edu.cn/hls/jshd.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","http://66.90.88.132:8080/hls/ph00504/index.m3u8"]},
  1801. {"name":"东方卫视","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","http://66.90.88.132:8080/hls/ph00503/index.m3u8"]},
  1802. {"name":"浙江卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225750/1/index.m3u8?fmt=ts2hls","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","http://66.90.88.132:8080/hls/ph00502/index.m3u8"]},
  1803. {"name":"北京卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225754/1/index.m3u8?fmt=ts2hls","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"]},
  1804. {"name":"四川卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225757/1/index.m3u8?fmt=ts2hls","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"]},
  1805. {"name":"安徽卫视","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"]},
  1806. {"name":"兵团卫视","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"]},
  1807. {"name":"重庆卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225686/1/index.m3u8?fmt=ts2hls","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"]},
  1808. {"name":"甘肅卫视","urls":["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","http://183.207.248.71:80/cntv/live1/n-gansustv/n-gansustv"]},
  1809. {"name":"广西卫视","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"]},
  1810. {"name":"贵州卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225703/1/index.m3u8?fmt=ts2hls","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"]},
  1811. {"name":"海南卫视","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"]},
  1812. {"name":"河北卫视","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"]},
  1813. {"name":"河南卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225709/1/index.m3u8?fmt=ts2hls","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"]},
  1814. {"name":"黑龙江卫视","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"]},
  1815. {"name":"湖北卫视","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"]},
  1816. {"name":"吉林卫视","urls":["http://39.136.66.39/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225753/1/index.m3u8?fmt=ts2hls","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"]},
  1817. {"name":"江西卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225710/1/index.m3u8?fmt=ts2hls","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"]},
  1818. {"name":"康巴卫视","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"]},
  1819. {"name":"辽宁卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225717/1/index.m3u8?fmt=ts2hls","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"]},
  1820. {"name":"內蒙古卫视","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"]},
  1821. {"name":"宁夏卫视","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"]},
  1822. {"name":"青海卫视","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"]},
  1823. {"name":"山东卫视","urls":["http://39.136.66.40/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225728/1/index.m3u8?fmt=ts2hls","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"]},
  1824. {"name":"山西卫视","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"]},
  1825. {"name":"陜西农林卫视","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"]},
  1826. {"name":"陜西卫视","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"]},
  1827. {"name":"天津卫视","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"]},
  1828. {"name":"云南卫视","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"]},
  1829. {"name":"新疆卫视","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"]},
  1830. {"name":"西藏卫视","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"]},
  1831. {"name":"安多卫视","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"]},
  1832. {"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"]},
  1833. {"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"]},
  1834. {"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"]},
  1835. {"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"]},
  1836. {"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"]}
  1837. ]},
  1838. {"group": "港澳台","channels": [{"name":"凤凰中文","urls":["http://playtv-live.ifeng.com:80/live/06OLEGEGM4G.m3u8","http://39.135.55.105:6610/PLTV/88888888/224/3221227222/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227222/index.m3u8?servicetype=1","http://playtv-live.ifeng.com/live/06OLEGEGM4G.m3u8","http://anren.live/HK/AQtU.m3u8","http://117.169.120.138:8080/live/fhchinese/index.m3u8","http://ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228057/index.m3u8","http://124.232.233.16:6610/000000001001/201500000230/index.m3u8?&version=v1.0&IASHttpSessionId=SLB2046220190906022827233263&AuthInfo=&m3u8_level=2","http://stream.guihet.com/t/ifeng2.php?id=2","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226547/index.m3u8","http://playtv-live.ifeng.com:80/live/06OLEGEGM4G.m3u8","http://hkss3.phoenixtv.com/fs/pcc.stream/.m3u8","http://mmitv.top/pltv/gdgz.php?id=37&upt=604ef0611cb50f83","http://mmitv.top/pltv/gdgz.php?id=37&upt=63a44f4ef2f3c6ce","http://ott.js.chinamobile.com/TVOD/3/224/3221228057/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=fhhk&upt=604ef0611cb50f83","http://mmitv.top/pltv/gdgz.php?id=fhhk&upt=63a44f4ef2f3c6ce","http://v.mp.haue.edu.cn/hls/fhzw.m3u8","http://iptv.tvfix.org/hls/fhzw.m3u8","http://66.90.88.132:8080/hls/ph00451/index.m3u8","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://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221228057/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://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","rtmp://45.88.148.178/channel/60c2f331961593122ebaf8c7?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://zb.ios.ifeng.com/live/05QGDA0CIRK/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=37&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=37&upt=604ef0611cb50f83","http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8"]},
  1839. {"name":"凤凰资讯","urls":["http://playtv-live.ifeng.com/live/06OLEEWQKN4.m3u8","http://39.135.55.105:6610/PLTV/88888888/224/3221227226/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227226/index.m3u8?servicetype=1","http://117.169.120.138:8080/live/fhzixun/index.m3u8","http://anren.live/HK/AQtQ.m3u8","http://183.207.249.35/PLTV/3/224/3221226923/index.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228098/index.m3u8","http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8","http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8$JS1080P","http://117.169.124.37:6610/ysten-businessmobile/live/fhzixun/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226546/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=36&upt=604ef0611cb50f83","http://hkss3.phoenixtv.com/fs/pic.stream/.m3u8","http://mmitv.top/pltv/gdgz.php?id=36&upt=63a44f4ef2f3c6ce","https://playtv-live.ifeng.com/live/06OLEEWQKN4.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228098/index.m3u8","http://mmitv.top/pltv/gdgz.php?id=fhzx&upt=604ef0611cb50f83","http://mmitv.top/pltv/gdgz.php?id=fhzx&upt=63a44f4ef2f3c6ce","http://v.mp.haue.edu.cn/hls/fhzx.m3u8","http://66.90.88.132:8080/hls/ph00452/index.m3u8","http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228098/index.m3u8","http://iptv.tvfix.org/hls/fhzx.m3u8","http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8","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","http://anan.jxin122.top/cj.php?id=99&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://mmitv.top/pltv/gdgz.php?id=36&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=36&upt=604ef0611cb50f83","rtmp://45.88.148.178/channel/60c2f46e961593122ebaf8cb?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  1840. {"name":"凤凰香港","urls":["http://183.207.249.35/PLTV/3/224/3221226975/index.m3u8","http://hkss3.phoenixtv.com/fs/phk.stream/.m3u8","http://ott.js.chinamobile.com/TVOD/3/224/3221228060/index.m3u8","http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8","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","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","http://66.90.88.132:8080/hls/ph00453/index.m3u8","rtmp://45.88.148.178/channel/60c2f428961593122ebaf8c9?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  1841. {"name":"星空卫视","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://v.mp.haue.edu.cn/hls/startv.m3u8","http://mmitv.top/pltv/gdgz.php?id=87&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=87&upt=604ef0611cb50f83","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","http://mmitv.top/pltv/gz.php?id=tvbfc","http://tyzb8081.weetai.cn:80/iptv-cdn/公众号=太阳视界/tyzb01.php?id=xingkong_1500"]},
  1842. {"name":"澳门卫视","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","http://103.233.191.132:1935/ch3/ch3.live/playlist.m3u8","http://103.233.191.133:1935/ch3/ch3.live/playlist.m3u8","http://103.233.191.134:1935/ch3/ch3.live/playlist.m3u8"]},
  1843. {"name":"澳视澳门","urls":["http://61.244.22.4/ch1/ch1.live/playelist.m3u8","http://103.233.191.133:1935/ch1/ch1.live/playlist.m3u8","http://103.233.191.134:1935/ch1/ch1.live/playlist.m3u8"]},
  1844. {"name":"澳门资讯","urls":["http://61.244.22.5/ch5/info_ch5.live/master.m3u8","http://61.244.22.4/ch2/ch2.live/playelist.m3u8","http://103.233.191.133:1935/ch5/info_ch5.live/playlist.m3u8","http://103.233.191.134:1935/ch5/info_ch5.live/playlist.m3u8"]},
  1845. {"name":"澳门综艺","urls":["http://103.233.191.132:1935/ch6/hd_ch6.live/playlist.m3u8","http://103.233.191.133:1935/ch6/hd_ch6.live/playlist.m3u8","http://103.233.191.134:1935/ch6/hd_ch6.live/playlist.m3u8"]},
  1846. {"name":"莲花卫视","urls":["http://nettvpro.live/hls/lotustv.php","http://anren.live/HK/BiIOU11uLA.m3u8"]},
  1847. {"name":"民视","urls":["rtmp://219.80.97.25/sat/tv051","http://220.134.196.147:8614/playlist.m3u8","rtmp://9wv7.mine.nu/sat/tv051","rtmp://59.124.75.157/sat/tv051","http://dllb.jxin122.top/jj.php?id=44&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://61.222.202.191/gt/gttv.php?id=13669&cid=13822","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","http://anan.jxin122.top/cj.php?id=44&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","rtmp://45.92.126.226/channel/60c317bd961593122ebaf90a","http://50.7.61.148:30080/Entry/ftv","http://66.90.88.132:8080/hls/ph00302/index.m3u8","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv002","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv001","rtmp://45.92.126.226/channel/60c317bd961593122ebaf90a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  1848. {"name":"台视","urls":["rtmp://219.80.97.25/sat/tv071","http://220.134.196.147:8611/playlist.m3u8","rtmp://9wv7.mine.nu/sat/tv071","rtmp://59.124.75.138/sat/tv071","rtmp://59.124.75.157/sat/tv071","http://dllb.jxin122.top/jj.php?id=45&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://66.90.88.132:8080/hls/ph00304/index.m3u8","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"]},
  1849. {"name":"中视","urls":["rtmp://219.80.97.25/sat/tv091","http://220.134.196.147:8612/playlist.m3u8","rtmp://9wv7.mine.nu/sat/tv091","rtmp://59.124.75.138/sat/tv091","http://dllb.jxin122.top/jj.php?id=47&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://61.222.202.191/gt/gttv.php?id=13681&cid=13834","rtmp://59.124.75.157/sat/tv091","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://anan.jxin122.top/cj.php?id=18&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://anan.jxin122.top/cj.php?id=47&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv040","rtmp://45.92.126.114/channel/60c3166c961593122ebaf8fe?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  1850. {"name":"华视","urls":["rtmp://219.80.97.25/sat/tv111","http://220.134.196.147:8613/playlist.m3u8","rtmp://9wv7.mine.nu/sat/tv111","rtmp://59.124.75.157/sat/tv111","http://61.222.202.191/gt/gttv.php?id=13676&cid=13829","rtmp://59.124.75.157/sat/tv111","http://66.90.88.132:8080/hls/ph00305/index.m3u8","http://anan.jxin122.top/cj.php?id=46&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","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"]},
  1851. {"name":"公视","urls":["http://220.134.196.147:8615/playlist.m3u8","http://220.134.196.147:8654/playlist.m3u8","http://dllb.jxin122.top/jj.php?id=43&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","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://66.90.88.132:8080/hls/ph00306/index.m3u8","http://anan.jxin122.top/cj.php?id=43&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","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"]},
  1852. {"name":"CHC高清電影","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226463/index.m3u8","http://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226463/index.m3u8","http://v.mp.haue.edu.cn/hls/chchd.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226463/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226463/index.m3u8"]},
  1853. {"name":"CHC动作電影","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226465/index.m3u8","http://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/index.m3u8","http://v.mp.haue.edu.cn/hls/chcatv.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/index.m3u8"]},
  1854. {"name":"CHC家庭影院","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226462/index.m3u8","http://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226462/index.m3u8","http://v.mp.haue.edu.cn/hls/chctv.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226462/index.m3u8"]},
  1855. {"name":"超级电影","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"]},
  1856. {"name":"超级电视剧","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"]},
  1857. {"name":"黑莓电影","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"]}
  1858. ]},
  1859. {"group": "海外","channels": [{"name":"俄·IGITV蓝光","urls":["http://hls-igi.cdnvideo.ru/igi/igi_hq/playlist.m3u8"]},
  1860. {"name":"日·全天新闻","urls":["https://n24-cdn-live.ntv.co.jp/ch01/index.m3u8"]},
  1861. {"name":"韩·阿里郎","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"]},
  1862. {"name":"韩·娛樂台KMTV","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"]},
  1863. {"name":"韩·KBC","urls":["http://119.200.131.11:1935/KBCTV/tv/playlist.m3u8","http://119.77.96.184:1935/chn05/chn05/chunklist_w644291506.m3u8"]},
  1864. {"name":"韩·SBS","urls":["http://119.200.131.11:1935/KBCTV/tv/playlist.m3u8","http://1.245.74.5:1935/live/tv/.m3u8"]},
  1865. {"name":"韩·KBS","urls":["http://luotuo.ycchenrong.cn/dl/youku.php?id=8034767"]},
  1866. {"name":"韩·MBC","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"]},
  1867. {"name":"韩·MTN","urls":["http://183.110.27.87/mtnlive/_definst_/720/chunklist.m3u8"]},
  1868. {"name":"韩·YTN","urls":["http://slive.sciencetv.kr:1935/science/yslive_20140419_1/playlist.m3u8","http://slive.ytn.co.kr/ytn/_definst_/ytn_stream_20190306/playlist.m3u8"]},
  1869. {"name":"韩·KCTV","urls":["http://119.77.96.184:1935/chn21/chn21/chunklist_w252131137.m3u8"]},
  1870. {"name":"韩·TBS","urls":["http://58.234.158.60:1935/catvlive/myStream/playlist.m3u8","http://58.234.158.60:1935/catvlive/myStream/playlist.m3u8"]},
  1871. {"name":"韩·SBSCJB","urls":["http://1.222.207.80:1935/live/cjbtv/chunklist_w1357270949.m3u8"]},
  1872. {"name":"韩·EBS-1","urls":["http://ebsonairios.ebs.co.kr/groundwavetablet500k/tablet500k/groundwavetablet500k.m3u8","http://ebsonairios.ebs.co.kr/plus1tablet500k/tablet500k/plus1tablet500k.index.m3u8","http://ebsonairios.ebs.co.kr/groundwavetablet500k/tablet500k/playlist.m3u8"]},
  1873. {"name":"韩·EBS-2","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","http://ebsonairios.ebs.co.kr/ebs2tablet500k/tablet500k/ebs2tablet500k.index.m3u8"]},
  1874. {"name":"韩·EBSE","urls":["http://ebsonairios.ebs.co.kr/plus3tablet500k/tablet500k/plus3tablet500k.index.m3u8","http://ebsonairios.ebs.co.kr/plus3tablet500k/tablet500k/plus3tablet500k.index.m3u8"]},
  1875. {"name":"韩·阿里郎WORLD","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"]},
  1876. {"name":"韩·KBSWorld","urls":["https://livecdn.fptplay.net/sdb/kbs_hls.smil/chunklist_b2500000.m3u8"]},
  1877. {"name":"韩·SexyK-Pop","urls":["https://srv1.zcast.com.br/kpoptv/kpoptv/.m3u8"]},
  1878. {"name":"韩·EBS少儿","urls":["http://ebsonairios.ebs.co.kr/ebsutablet500k/_definst_/tablet500k/chunklist_w1965791004.m3u8"]},
  1879. {"name":"韩·BBS佛教","urls":["http://bbstv.clouducs.com:1935/bbstv-live/livestream/chunklist_w1403706733.m3u8"]},
  1880. {"name":"韩·职业","urls":["http://live.worktv.or.kr:1935/live/wowtvlive1.sdp/playlist.m3u8"]},
  1881. {"name":"韩·GOODTV","urls":["http://mobliestream.c3tv.com:554/live/goodtv.sdp/playlist.m3u8"]},
  1882. {"name":"韩·YTNDMB","urls":["http://slive.ytn.co.kr:1935/dmb/ydlive_20140419_1/playlist.m3u8"]},
  1883. {"name":"日·NHK","urls":["https://nhkwlive-ojp.akamaized.net/hls/live/2003459/nhkwlive-ojp-en/index_4M.m3u8","https://nhkw-zh-hlscomp.akamaized.net/8thz5iufork8wjip/playlist.m3u8"]},
  1884. {"name":"日·Animax HD","urls":["https://livecdn.fptplay.net/hda3/animaxport_hls.smil/chunklist.m3u8","https://livecdn.fptplay.net/hda3/animaxport_2000.stream/.m3u8"]},
  1885. {"name":"日·Atx","urls":["https://sub2.neetball.net/live/neet.m3u8"]},
  1886. {"name":"日·ウェザーニュース","urls":["https://movie.mcas.jp/mcas/smil:wn1.smil/master.m3u8","http://movie.mcas.jp/mcas/wn1_2/master.m3u8"]},
  1887. {"name":"日·Gunma TV","urls":["https://movie.mcas.jp/switcher/smil:mcas8.smil/master.m3u8"]},
  1888. {"name":"日·宝石GSTV","urls":["https://gemstv.wide-stream.net/gemstv01/smil:gemstv01.smil/chunklist_w1860888413_b600000.m3u8"]},
  1889. {"name":"日·声优广播","urls":["http://www.uniqueradio.jp/agplayerf/hls/Active.m3u8"]},
  1890. {"name":"日·QVC","urls":["http://cdn-live1.qvc.jp/iPhone/800/800.m3u8"]},
  1891. {"name":"日·NHK华语","urls":["https://nhkw-zh-hlscomp.akamaized.net/8thz5iufork8wjip/playlist.m3u8"]},
  1892. {"name":"CGNTV","urls":["http://cgntv-glive.ofsdelivery.net/live/_definst_/cgntv_kr02/chunklist_w1604760015.m3u8","http://cgntv-glive.ofsdelivery.net/live/_definst_/cgntv_jp/chunklist_w564190259.m3u8","https://livedoc.cgtn.com/500d/prog_index.m3u8","http://liveru.cgtn.com/1000r/prog_index.m3u8","http://livear.cgtn.com/1000a/prog_index.m3u8","http://livees.cgtn.com/1000e/prog_index.m3u8","http://live.cgtn.com/1000/prog_index.m3u8","http://live.cgtn.com/500/prog_index.m3u8","http://liveru.cgtn.com/1000r/prog_index.m3u8","http://livees.cgtn.com/1000e/prog_index.m3u8","http://live.cgtn.com/500/prog_index.m3u8","http://liveru.cgtn.com/1000r/prog_index.m3u8","http://livees.cgtn.com/1000e/prog_index.m3u8"]},
  1893. {"name":"Channel News Asia","urls":["https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_5.m3u8"]},
  1894. {"name":"FTVLIVE","urls":["http://218.236.58.185:1935/FTVLIVE_MOBILE/Stream_mobile/playlist.m3u8"]},
  1895. {"name":"新闻CBS News 1","urls":["http://cbsnewshd-lh.akamaihd.net/i/CBSNHD_7@199302/master.m3u8"]},
  1896. {"name":"俄·ТВTV蓝光","urls":["http://hls-video01.cdnvideo.ru/video01/smil:video01.smil/chunklist_b4128000.m3u8"]},
  1897. {"name":"俄·NastoyashcheyeVremya","urls":["http://rfe-lh.akamaihd.net/i/rfe_tvmc5@383630/master.m3u8"]},
  1898. {"name":"俄·RBC(Opt-1)","urls":["http://92.50.128.180/utv/1358/index.m3u8"]},
  1899. {"name":"俄·音乐TROSoyuz","urls":["http://live2.mediacdn.ru/sr1/tro/playlist.m3u8"]},
  1900. {"name":"俄·Euronews","urls":["http://evronovosti.mediacdn.ru/sr1/evronovosti/playlist_2m.m3u8"]},
  1901. {"name":"和平HBTV","urls":["http://hoabinhtvlive.746b3ddb.cdnviet.com/hoabinhtv/playlist.m3u8"]},
  1902. {"name":"KPRF","urls":["http://kprf-htlive.cdn.ngenix.net/live/_definst_/stream_high/chunklist.m3u8"]},
  1903. {"name":"法·时尚","urls":["http://lb.streaming.sk/fashiontv/stream/chunklist.m3u8","http://lb.streaming.sk/fashiontv/stream/chunklist_w1702070444.m3u8","http://lb.streaming.sk/fashiontv/stream/chunklist_w1906011378.m3u8","http://lb.streaming.sk/fashiontv/stream/chunklist.m3u8","http://lb.streaming.sk/fashiontv/stream/chunklist_w1702070444.m3u8"]},
  1904. {"name":"VOA卫视『蓝光』","urls":["https://voa-lh.akamaihd.net/i/voa_mpls_tvmc8@326847/master.m3u8"]},
  1905. {"name":"Channel News Asia『蓝光』","urls":["http://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_5.m3u8"]},
  1906. {"name":"CNBC 18","urls":["https://cnbctv18-lh.akamaihd.net/i/cnbctv18_1@174868/index_5_av-p.m3u8"]},
  1907. {"name":"美·NASA Public Channel","urls":["https://ntv1.akamaized.net/hls/live/2014075/NASA-NTV1-HLS/master_2000.m3u8","https://ntv2.akamaized.net/hls/live/2013923/NASA-NTV2-HLS/master_2000.m3u8"]},
  1908. {"name":"NDTV 24X7","urls":["https://ndtv24x7elemarchana.akamaized.net/hls/live/2003678/ndtv24x7/ndtv24x7master.m3u8"]},
  1909. {"name":"VB","urls":["http://live.tv2bornholm.dk/stream/live/chunklist.m3u8"]},
  1910. {"name":"半·新闻","urls":["http://live-hls-web-aja.getaj.net/AJA/02.m3u8"]},
  1911. {"name":"美·彭博财经Bloomberg TV","urls":["http://liveproduseast.akamaized.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-1000-1_live.m3u8"]},
  1912. {"name":"M2O音乐TV","urls":["http://m2otv-lh.akamaihd.net/i/m2oTv_1@186074/index_600_av-b.m3u8","http://m2otv-lh.akamaihd.net/i/m2oTv_1@186074/index_600_av-p.m3u8"]},
  1913. {"name":"意·电台","urls":["http://radioitaliatv-lh.akamaihd.net/i/radioitaliatv_1@329645/index_720x480_av-p.m3u8"]},
  1914. {"name":"法·24台","urls":["http://static.france24.com/live/F24_EN_LO_HLS/live_web.m3u8","http://static.france24.com/live/F24_AR_LO_HLS/live_web.m3u8","http://tv.balkanweb.com/news24/livestream/playlist.m3u8","http://tv.balkanweb.com:8081/news24/livestream/chunks.m3u8"]},
  1915. {"name":"Ytv","urls":["http://streams.sibinformburo.cdnvideo.ru/sibinformburo/sibinformburo.sdp/chunklist.m3u8"]},
  1916. {"name":"法·第五世界台","urls":["http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877-b/v3plusinfo247hls/v3plusinfo247hls_1_1.m3u8","http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877-b/v3plusinfo247hls/v3plusinfo247hls_1_1.m3u8","http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877-b/v3plusinfo247hls/v3plusinfo247hls_1_1.m3u8","http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877-b/v3plusinfo247hls/v3plusinfo247hls_1_1.m3u8"]},
  1917. {"name":"新加坡","urls":["https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_4.m3u8"]},
  1918. {"name":"赛马网","urls":["https://racingvic-i.akamaized.net/hls/live/598695/racingvic/268.m3u8"]},
  1919. {"name":"HP音乐蓝光","urls":["http://hls-video01.cdnvideo.ru/video01/smil:video01.smil/chunklist_b4128000.m3u8"]},
  1920. {"name":"彭博财经","urls":["http://liveproduseast.akamaized.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-1000-1_live.m3u8"]},
  1921. {"name":"美法·时尚音乐","urls":["http://lb.streaming.sk/fashiontv/stream/chunklist_w1702070444.m3u8"]},
  1922. {"name":"模特音乐FashionTV(SK)","urls":["http://lb.streaming.sk/fashiontv/stream/chunklist_w1906011378.m3u8","http://95.67.47.115/hls/hdfashion_ua_low/index.m3u8"]},
  1923. {"name":"音乐MusicTop","urls":["http://live-edge01.telecentro.net.ar/live/smil:musictop.smil/chunklist_w538311571_b364000_sleng.m3u8"]},
  1924. {"name":"TVIkim音乐(1080p)","urls":["http://edge.vediostream.com/abr/tvikim/live/tvikim_source/playlist.m3u8"]},
  1925. {"name":"CNA(1080p)","urls":["https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index.m3u8"]},
  1926. {"name":"美·红牛运动","urls":["http://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master_928.m3u8","http://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master_1660.m3u8"]},
  1927. {"name":"西·加利西亚欧洲体育电视台","urls":["http://europa-crtvg.flumotion.com/playlist.m3u8"]},
  1928. {"name":"泰·THAIPBS","urls":["http://thaipbs-live.cdn.byteark.com/live-en/playlist_720p/index.m3u8"]},
  1929. {"name":"美·CSBN","urls":["https://cbsnhls-i.akamaihd.net/hls/live/264710/cbsn_hlsprod_2/master_360.m3u8"]},
  1930. {"name":"澳·赛马网","urls":["https://racingvic-i.akamaized.net/hls/live/598695/racingvic/268.m3u8"]},
  1931. {"name":"西·CanalParlamento(Updated)","urls":["http://congresodirecto-f.akamaihd.net:80/i/congreso6_1@54665/master.m3u8"]},
  1932. {"name":"丹·TV2Fyn","urls":["http://cdn-lt-hls-vod.tv2fyn.dk/fhls/p/1966291/sp/196629100/serveFlavor/entryId/0_yct7rqn3/v/2/flavorId/0_h2wfmuqm/name/a.mp4/index.m3u8"]},
  1933. {"name":"丹·TV2Lorry","urls":["http://cdn-lt-hls-vod.tv2lorry.dk/fhls/p/2045321/sp/204532100/serveFlavor/entryId/0_0u9letdh/v/1/flavorId/0_p5f7q6yf/name/a.mp4/index.m3u8"]},
  1934. {"name":"墨·UnoTV(VOD)","urls":["http://ooyalahd2-f.akamaihd.net/i/UnoTV01_delivery@122640/master.m3u8"]},
  1935. {"name":"哥斯达黎加ExtremaTV","urls":["http://livestreamcdn.net:1935/ExtremaTV/ExtremaTV/playlist.m3u8"]},
  1936. {"name":"乌·M2音乐","urls":["http://live.m2.tv/hls3/stream.m3u8"]},
  1937. {"name":"乌·100ws","urls":["http://85.238.112.40:8810/hls_sec/239.33.16.32-.m3u8"]},
  1938. {"name":"乌·Lale","urls":["http://stream.atr.ua/lale//live/index.m3u8"]},
  1939. {"name":"捷·音乐Retro(Opt-1)","urls":["http://stream.mediawork.cz/retrotv/retrotvHQ1/playlist.m3u8"]},
  1940. {"name":"斯·TV8","urls":["http://109.74.145.11:1935/tv8/mp4:tv8.stream_360p/chunklist_w974670813.m3u8"]},
  1941. {"name":"斯·TVNZ","urls":["http://s1.media-planet.sk:80/live/novezamky/BratuMarian.m3u8"]},
  1942. {"name":"希·FoxTV","urls":["http://live.streams.ovh:1935/foxtv/foxtv/playlist.m3u8"]},
  1943. {"name":"印·ABPAsmita","urls":["http://abpasmita-lh.akamaihd.net:80/i/abpasmita_1@77821/master.m3u8"]},
  1944. {"name":"日·CGNTV","urls":["http://cgntv-glive.ofsdelivery.net/live/_definst_/cgntv_jp/chunklist_w564190259.m3u8"]},
  1945. {"name":"越·ANTV","urls":["http://antvlive.ab5c6921.cdnviet.com/antv/playlist.m3u8"]},
  1946. {"name":"阿尔巴利亚","urls":["http://tvsn-i.akamaihd.net/hls/live/261837/expo/expo_750.m3u8"]},
  1947. {"name":"狗狗宠物","urls":["http://video.blivenyc.com/broadcast/prod/2061/22/file-3192k.m3u8"]},
  1948. {"name":"西·Ⅰ中国环球","urls":["http://livees.cgtn.com/1000e/prog_index.m3u8"]},
  1949. {"name":"VB","urls":["http://live.tv2bornholm.dk/stream/live/chunklist.m3u8"]},
  1950. {"name":"THAIPBS-3","urls":["http://thaipbs-live.cdn.byteark.com/live/playlist_480p/index.m3u8"]},
  1951. {"name":"France24Arabic","urls":["http://static.france24.com/live/F24_AR_LO_HLS/live_web.m3u8"]},
  1952. {"name":"TV7+(Хмельн)","urls":["http://tv7plus.com/hls/tv7_site.m3u8"]},
  1953. {"name":"新·Ⅰ亚洲新闻","urls":["http://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_4.m3u8"]},
  1954. {"name":"ANTV","urls":["http://antvlive.ab5c6921.cdnviet.com/antv/playlist.m3u8"]},
  1955. {"name":"泰·公共三台","urls":["http://thaipbs-live.cdn.byteark.com/live/playlist_1080p/index.m3u8"]},
  1956. {"name":"TVIKIM44","urls":["http://edge.vediostream.com/abr/tvikim/live/tvikim_480p/playlist.m3u8"]},
  1957. {"name":"45","urls":["http://edge.vediostream.com/abr/tvikim/live/tvikim_480p/chunks.m3u8"]},
  1958. {"name":"ZEEALWAN50","urls":["http://ghaasiflu.online/Dijlah/tracks-v1a1/mono.m3u8"]},
  1959. {"name":"越·HBTV","urls":["http://hoabinhtvlive.746b3ddb.cdnviet.com/hoabinhtv/playlist.m3u8"]}
  1960. ]},
  1961. {"group": "明星","channels": [{"name":"周星馳","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://183.232.171.91/tx.hls.huya.com/src/1394575534-1394575534-5989656310331736064-2789274524-10057-A-0-1.m3u8","http://183.232.171.91/tx.hls.huya.com/src/1199563481163-1199563481163-5444324506032144384-2399127085782-10057-A-0-1.m3u8","http://183.232.171.91/tx.hls.huya.com/src/1199561277724-1199561277724-5434860807588413440-2399122678904-10057-A-0-1.m3u8","http://183.232.171.91/tx.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","http://zzy789.xyz/douyu1.php?id=3990812","http://106.53.212.251/daili/yy.php?id=1353881242","http://106.53.212.251/daili/yy.php?id=38670875","http://106.53.212.251/daili/yy.php?id=1463505959","http://zzy789.xyz/douyu1.php?id=122402","https://1f97bd333ceef73bfdbd7e9987650b18.v.smtcdns.net/txpcdn.liveplay.egame.qq.com/live/3954_199681168.flv","http://183.232.171.91/tx.hls.huya.com/src/1394575534-1394575534-5989656310331736064-2789274524-10057-A-0-1-imgplus.m3u8"]},
  1962. {"name":"林正英","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","http://zzy789.xyz/douyu1.php?id=218859","http://106.53.212.251/daili/yy.php?id=1353059120","http://106.53.212.251/daili/yy.php?id=1351505899","http://106.53.212.251/daili/yy.php?id=1353685311","http://106.53.212.251/daili/yy.php?id=1351505899","http://106.53.212.251/daili/yy.php?id=34229877","http://106.53.212.251/daili/yy.php?id=24066336","http://zzy789.xyz/douyu1.php?id=7805562","http://106.53.212.251/daili/yy.php?id=1353507954","https://1f97bd333ceef73bfdbd7e9987650b18.v.smtcdns.net/txpcdn.liveplay.egame.qq.com/live/3954_363783415.flv"]},
  1963. {"name":"成龍","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","http://106.53.212.251/daili/yy.php?id=34460526","http://183.232.171.91/tx.hls.huya.com/src/1394565191-1394565191-5989611887484993536-2789253838-10057-A-0-1-imgplus.m3u8"]},
  1964. {"name":"張國榮","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"]},
  1965. {"name":"吳京","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"]},
  1966. {"name":"劉德華","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","http://183.232.171.91/tx.hls.huya.com/src/1394575547-1394575547-5989656366166310912-2789274550-10057-A-0-1.m3u8"]},
  1967. {"name":"古天樂","urls":["http://117.148.179.176/PLTV/88888888/224/3221231645/index.m3u8","http://api.phoves.com.cn/iptv/huya.php?id=10871113"]},
  1968. {"name":"徐崢","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"]},
  1969. {"name":"沈腾","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"]},
  1970. {"name":"甄子丹","urls":["https://hw.flv.huya.com/src/1423787820-1423787820-6115122123343134720-2847699096-10057-A-0-1-imgplus.m3u8"]},
  1971. {"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"]},
  1972. {"name":"五福星","urls":["https://hw.flv.huya.com/src/1356780980-1356780980-5827329936934830080-2713685416-10057-A-0-1.m3u8"]},
  1973. {"name":"李小龙","urls":["https://hw.flv.huya.com/src/1449588725-1449588725-6225936166525337600-3048959678-10057-A-0-1.m3u8"]},
  1974. {"name":"李连杰","urls":["https://hw.flv.huya.com/src/1394565196-1394565196-5989611908959830016-2789253848-10057-A-0-1-imgplus.m3u8"]},
  1975. {"name":"女神系列","urls":["https://hw.flv.huya.com/src/1388451591-1388451591-5963354175424167936-2777026638-10057-A-0-1-imgplus.m3u8"]},
  1976. {"name":"张柏芝","urls":["https://hw.flv.huya.com/src/1524434111-1524434111-6547394651651833856-3048991678-10057-A-0-1.m3u8"]},
  1977. {"name":"北有谢","urls":["https://hw.flv.huya.com/src/1445653465-1445653465-6209034353524080640-2847699238-10057-A-0-1.m3u8"]},
  1978. {"name":"刘涛","urls":["https://hw.flv.huya.com/src/1524418105-1524418105-6547325906405294080-3048959666-10057-A-0-1.m3u8"]},
  1979. {"name":"大咖自黑","urls":["https://hw.flv.huya.com/src/1449572975-1449572975-6225868520790425600-2789274544-10057-A-0-1.m3u8"]},
  1980. {"name":"极限挑战","urls":["https://hw.flv.huya.com/src/1423782086-1423782086-6115097496000659456-2847687628-10057-A-0-1-imgplus.m3u8"]},
  1981. {"name":"【黑帮大片】","urls":["https://hw.flv.huya.com/src/1388472589-1388472589-5963444361147449344-2777068634-10057-A-0-1-imgplus.m3u8"]},
  1982. {"name":"金庸頻道","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"]},
  1983. {"name":"喜劇聯盟","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"]},
  1984. {"name":"高分影院","urls":["http://117.148.179.182/PLTV/88888888/224/3221231699/index.m3u8"]},
  1985. {"name":"周潤發","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://183.232.171.91/tx.hls.huya.com/src/1394565192-1394565192-5989611891779960832-2789253840-10057-A-0-1-imgplus.m3u8","http://183.232.171.91/tx.hls.huya.com/src/1199561240999-1199561240999-5434703074914467840-2399122605454-10057-A-0-1.m3u8","http://183.232.171.91/tx.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"]},
  1986. {"name":"郭富城","urls":["http://117.148.179.152/PLTV/88888888/224/3221231688/index.m3u8"]},
  1987. {"name":"楊冪","urls":["http://117.148.179.183/PLTV/88888888/224/3221231556/index.m3u8"]},
  1988. {"name":"劉亦菲","urls":["http://117.148.179.165/PLTV/88888888/224/3221231787/index.m3u8"]},
  1989. {"name":"懷舊老片","urls":["http://117.148.179.146/PLTV/88888888/224/3221231513/index.m3u8"]},
  1990. {"name":"午夜失眠劇場","urls":["http://117.148.179.141/PLTV/88888888/224/3221231516/index.m3u8"]},
  1991. {"name":"雲上電影院","urls":["http://117.148.179.176/PLTV/88888888/224/3221231565/index.m3u8"]},
  1992. {"name":"每日科幻電影","urls":["http://117.148.179.160/PLTV/88888888/224/3221231568/index.m3u8"]},
  1993. {"name":"殭屍劇場","urls":["http://117.148.179.165/PLTV/88888888/224/3221231742/index.m3u8","https://3954-quic.liveplay.myqcloud.com/live/3954_363783415.flv"]},
  1994. {"name":"TVB劇場","urls":["http://117.148.179.157/PLTV/88888888/224/3221231733/index.m3u8"]},
  1995. {"name":"新片放映廳","urls":["http://117.148.179.160/PLTV/88888888/224/3221231640/index.m3u8"]},
  1996. {"name":"盜墓","urls":["http://117.148.179.164/PLTV/88888888/224/3221231652/index.m3u8"]},
  1997. {"name":"試膽大會","urls":["http://117.148.179.166/PLTV/88888888/224/3221231672/index.m3u8"]},
  1998. {"name":"高能燒腦時刻","urls":["http://117.148.179.169/PLTV/88888888/224/3221231504/index.m3u8"]},
  1999. {"name":"4K劇場","urls":["http://117.148.179.161/PLTV/88888888/224/3221231624/index.m3u8"]},
  2000. {"name":"愛情公寓","urls":["http://117.148.179.160/PLTV/88888888/224/3221231583/index.m3u8"]},
  2001. {"name":"軍旅劇場","urls":["http://117.148.179.145/PLTV/88888888/224/3221231585/index.m3u8"]},
  2002. {"name":"SNH48劇場公演","urls":["http://117.148.179.139/PLTV/88888888/224/3221231622/index.m3u8"]},
  2003. {"name":"少林劇場","urls":["http://117.148.179.160/PLTV/88888888/224/3221231628/index.m3u8"]},
  2004. {"name":"神探狄仁傑","urls":["http://117.148.179.139/PLTV/88888888/224/3221231634/index.m3u8"]},
  2005. {"name":"黃金劇場","urls":["http://117.148.179.183/PLTV/88888888/224/3221231637/index.m3u8"]},
  2006. {"name":"追劇少女","urls":["http://117.148.179.179/PLTV/88888888/224/3221231643/index.m3u8"]},
  2007. {"name":"古龍作品集","urls":["http://117.148.179.160/PLTV/88888888/224/3221231657/index.m3u8"]},
  2008. {"name":"經典賀歲片","urls":["http://117.148.179.159/PLTV/88888888/224/3221231679/index.m3u8"]},
  2009. {"name":"每日薦影","urls":["http://117.148.179.162/PLTV/88888888/224/3221231727/index.m3u8"]},
  2010. {"name":"武俠劇場","urls":["http://117.148.179.160/PLTV/88888888/224/3221231763/index.m3u8"]},
  2011. {"name":"漫威DC★动作喜剧★经典电影 梦剧場","urls":["http://111.6.242.36/txpcdn.liveplay.egame.qq.com/live/3954_616645877_4000.flv"]},
  2012. {"name":"国外影院","urls":["http://111.6.242.36/txpcdn.liveplay.egame.qq.com/live/3954_382971876_4000.flv"]},
  2013. {"name":"头文字D","urls":["http://183.232.171.91/tx.hls.huya.com/src/1423782053-1423782053-6115097354266738688-2847687562-10057-A-0-1.m3u8"]},
  2014. {"name":"KK_经典好剧","urls":["http://hpull.kktv8.com/livekktv/153793844/playlist.m3u8"]},
  2015. {"name":"KK_科幻怪兽","urls":["http://hpull.kktv8.com/livekktv/143960119/playlist.m3u8"]},
  2016. {"name":"KK_喜剧电影","urls":["http://hpull.kktv8.com/livekktv/99592190/playlist.m3u8"]},
  2017. {"name":"KK_女神影院","urls":["http://hpull.kktv8.com/livekktv/99350550/playlist.m3u8"]},
  2018. {"name":"BesTv影院1","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226757/45949783.smil"]},
  2019. {"name":"Bestv影院2","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226816/48629572.smil"]},
  2020. {"name":"Bestv影院3","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226748/45950069.smil"]},
  2021. {"name":"Bestv影院4","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226797/47878049.smil"]},
  2022. {"name":"Bestv电视剧1","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226761/45973212.smil"]},
  2023. {"name":"Bestv电视剧2","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226022/10000100000000060000000002296864_0.smil"]},
  2024. {"name":"Bestv电视剧3","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226752/45973624.smil"]},
  2025. {"name":"Bestv动画1","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226756/45973923.smil"]},
  2026. {"name":"Bestv动画2","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226917/57526342.smil"]}
  2027. ]},
  2028. {"group": "NewTV","channels": [{"name":"超级电影NewTV","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/3221225623/index.m3u8"]},
  2029. {"name":"超级电视剧","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225716/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225637/index.m3u8"]},
  2030. {"name":"超级综艺","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225714/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225642/index.m3u8"]},
  2031. {"name":"明星大片","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225664/index.m3u8","http://223.110.243.152/ott.js.chinamobile.com/PLTV/3/224/3221227594/index.m3u8","http://111.11.121.184:6610/030000001001/mingxingdp/1.m3u8?channel-id=ystenlive","http://39.134.66.66/PLTV/88888888/224/3221225550/index.m3u8"]},
  2032. {"name":"欢乐剧场","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225742/index.m3u8"]},
  2033. {"name":"海外剧场","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225671/index.m3u8","http://111.11.121.184:6610/030000001001/xiqumd/1.m3u8?channel-id=ystenlive"]},
  2034. {"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","http://183.207.248.71:80/cntv/live1/n-aiqingxj/n-aiqingxj","http://111.11.121.184:6610/030000001001/aiqingxj/1.m3u8?channel-id=ystenlive"]},
  2035. {"name":"潮媽辣婆","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"]},
  2036. {"name":"動作電影","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","http://111.11.121.184:6610/030000001001/dongzuody/1.m3u8?channel-id=ystenlive"]},
  2037. {"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","http://223.110.243.154/ott.js.chinamobile.com/PLTV/3/224/3221227536/index.m3u8","http://111.11.121.184:6610/030000001001/jingsongxy/1.m3u8?channel-id=ystenlive"]},
  2038. {"name":"古裝劇場","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","http://111.11.121.184:6610/030000001001/guzhuangjc/1.m3u8?channel-id=ystenlive"]},
  2039. {"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","http://223.110.243.147/ott.js.chinamobile.com/PLTV/3/224/3221227612/index.m3u8","http://111.11.121.184:6610/030000001001/ljiankangyouyue/1.m3u8?channel-id=ystenlive"]},
  2040. {"name":"黑莓電競之夜","urls":["http://183.207.248.71:80/cntv/live1/wmyx/wmyx","http://111.11.121.184:6610/030000001001/wmyx/1.m3u8?channel-id=ystenlive"]},
  2041. {"name":"黑莓電影","urls":["http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-Supermovie/HD-8000k-1080P-Supermovie","http://111.11.121.184:6610/030000001001/jdianying/1.m3u8?channel-id=ystenlive","http://183.207.249.14/PLTV/3/224/3221225567/index.m3u8"]},
  2042. {"name":"黑莓動畫","urls":["http://183.207.248.71:80/cntv/live1/donghuawg/donghuawg","http://111.11.121.184:6610/030000001001/donghuawg/1.m3u8?channel-id=ystenlive","http://183.207.249.15/PLTV/3/224/3221225555/index.m3u8"]},
  2043. {"name":"家庭劇場","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","http://39.134.67.226/PLTV/88888888/224/3221225538/index.m3u8","http://111.11.121.184:6610/030000001001/jiatingjc/1.m3u8?channel-id=ystenlive"]},
  2044. {"name":"金牌綜藝","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","http://39.134.67.226/PLTV/88888888/224/3221225525/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225525/index.m3u8","http://111.11.121.184:6610/030000001001/saishijx/1.m3u8?channel-id=ystenlive","http://223.110.243.157/ott.js.chinamobile.com/PLTV/3/224/3221227541/index.m3u8"]},
  2045. {"name":"精品大劇","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","http://223.110.243.151/ott.js.chinamobile.com/PLTV/3/224/3221227618/index.m3u8","http://111.11.121.184:6610/030000001001/jdaju/1.m3u8?channel-id=ystenlive"]},
  2046. {"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","http://39.134.66.66/PLTV/88888888/224/3221225646/index.m3u8"]},
  2047. {"name":"精品體育","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","http://39.134.66.66/PLTV/88888888/224/3221225526/index.m3u8","http://223.110.243.154/ott.js.chinamobile.com/PLTV/3/224/3221227615/index.m3u8","http://111.11.121.184:6610/030000001001/jtiyu/1.m3u8?channel-id=ystenlive"]},
  2048. {"name":"精品綜合","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"]},
  2049. {"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","http://39.134.67.226/PLTV/88888888/224/3221225545/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225545/index.m3u8","http://223.110.243.162/ott.js.chinamobile.com/PLTV/3/224/3221227547/index.m3u8","http://111.11.121.184:6610/030000001001/jingpinjl/1.m3u8?channel-id=ystenlive"]},
  2050. {"name":"軍旅劇場","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","http://111.11.121.184:6610/030000001001/junlvjc/1.m3u8?channel-id=ystenlive","http://223.110.243.142/ott.js.chinamobile.com/PLTV/3/224/3221227603/index.m3u8"]},
  2051. {"name":"軍事評論","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","http://223.110.243.167/ott.js.chinamobile.com/PLTV/3/224/3221227544/index.m3u8","http://111.11.121.184:6610/030000001001/junshipl/1.m3u8?channel-id=ystenlive"]},
  2052. {"name":"農業致富","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","http://223.110.243.158/ott.js.chinamobile.com/PLTV/3/224/3221227588/index.m3u8","http://111.11.121.184:6610/030000001001/nongyezf/1.m3u8?channel-id=ystenlive","http://39.134.66.66/PLTV/88888888/224/3221225552/index.m3u8"]},
  2053. {"name":"熱播精選","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"]},
  2054. {"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","http://223.110.243.141/ott.js.chinamobile.com/PLTV/3/224/3221227533/index.m3u8","http://111.11.121.184:6610/030000001001/SD-1500k-576P-bokesen/1.m3u8?channel-id=ystenlive","http://39.134.66.66/PLTV/88888888/224/3221225547/index.m3u8"]},
  2055. {"name":"中國功夫","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","http://223.110.243.165/ott.js.chinamobile.com/PLTV/3/224/3221227530/index.m3u8","http://111.11.121.184:6610/030000001001/SD-1500k-576P-gzkongfu/1.m3u8?channel-id=ystenlive","http://39.134.66.66/PLTV/88888888/224/3221225604/index.m3u8"]},
  2056. {"name":"1·超级体育","urls":["http://39.134.66.66/PLTV/88888888/224/3221225635/index.m3u8"]}
  2057. ]},
  2058. {"group": "CIBN","channels": [{"name":"综合CIBN","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226420/index.m3u8"]},
  2059. {"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"]},
  2060. {"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"]},
  2061. {"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"]},
  2062. {"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"]},
  2063. {"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"]},
  2064. {"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"]},
  2065. {"name":"时尚生活","urls":["http://117.148.179.183/PLTV/88888888/224/3221231489/index.m3u8"]},
  2066. {"name":"风尚运动","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226429/index.m3u8"]},
  2067. {"name":"真人秀","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226416/index.m3u8"]},
  2068. {"name":"动画乐园","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226406/index.m3u8"]},
  2069. {"name":"SiTV全纪实","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226580/index.m3u8"]},
  2070. {"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"]},
  2071. {"name":"SiTV游戏风云","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226579/index.m3u8"]},
  2072. {"name":"SiTV都市剧场","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226581/index.m3u8"]}
  2073. ]},
  2074. {"group": "风景区","channels": [{"name":"全国风景总览","urls":["https://gcalic.v.myalicdn.com/gc/wgw05_1/index.m3u8?contentid=2820180516001"]},
  2075. {"name":"北京-南宫温泉休闲度假区","urls":["http://gcalic.v.myalicdn.com/gc/tyhjntyz_1/index.m3u8?contentid=2820180516001"]},
  2076. {"name":"北京-水立方","urls":["http://gcalic.v.myalicdn.com/gc/gccntv241-slf01_1/index.m3u8?contentid=2820180516001"]},
  2077. {"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"]},
  2078. {"name":"北京-八达岭长城南七楼","urls":["http://gcalic.v.myalicdn.com/gc/bgws7_1/index.m3u8?contentid=2820180516001"]},
  2079. {"name":"北京-中央电视塔东","urls":["http://gcalic.v.myalicdn.com/gc/ztd_1/index.m3u8?contentid=2820180516001"]},
  2080. {"name":"天津-天津之眼","urls":["https://gcalic.v.myalicdn.com/gc/tjhh01_1/index.m3u8?contentid=2820180516001"]},
  2081. {"name":"天津-天津海河","urls":["https://gcalic.v.myalicdn.com/gc/tjhh02_1/index.m3u8?contentid=2820180516001"]},
  2082. {"name":"山西-悬空寺全景","urls":["https://gcalic.v.myalicdn.com/gc/hsxksqj_1/index.m3u8?contentid=2820180516001"]},
  2083. {"name":"辽宁-沈阳金廊","urls":["https://gcalic.v.myalicdn.com/gc/zsslsjjfsd_1/index.m3u8?contentid=2820180516001"]},
  2084. {"name":"黑龙江-雪乡梦幻家园","urls":["https://gcalic.v.myalicdn.com/gc/mdjxxmhjyxj_1/index.m3u8?contentid=2820180516001"]},
  2085. {"name":"江苏-无锡鼋头渚长春桥","urls":["https://gcksc.v.kcdnvip.com/gc/dlst02_1/index.m3u8?BR=md®ion=beijing"]},
  2086. {"name":"江苏-无锡鼋头渚赏樱阁","urls":["https://gcalic.v.myalicdn.com/gc/pshdxg01_1/index.m3u8?contentid=2820180516001"]},
  2087. {"name":"江苏-南京牛首山","urls":["https://gcalic.v.myalicdn.com/gc/nss01_1/index.m3u8?contentid=2820180516001"]},
  2088. {"name":"江苏-南京玄武湖公园","urls":["https://gcalic.v.myalicdn.com/gc/xwh01_1/index.m3u8?contentid=2820180516001"]},
  2089. {"name":"江苏-徐州云龙湖观景台西","urls":["https://gcalic.v.myalicdn.com/gc/ylh04_1/index.m3u8?contentid=2820180516001"]},
  2090. {"name":"江苏-徐州云龙湖观景台南","urls":["https://gcalic.v.myalicdn.com/gc/ylh03_1/index.m3u8?contentid=2820180516001"]},
  2091. {"name":"江苏-兴化千垛景区","urls":["https://mlivecncc.v.wscdns.com/mlive/mlive_djy02_1/index.m3u8?contentid=2820180516001"]},
  2092. {"name":"浙江-云栖小镇","urls":["https://gcalic.v.myalicdn.com/gc/hnttpgsz_1/index.m3u8?contentid=2820180516001"]},
  2093. {"name":"浙江-千岛湖","urls":["https://gcalic.v.myalicdn.com/gc/caqdh_1/index.m3u8?contentid=2820180516001"]},
  2094. {"name":"浙江-普陀山","urls":["https://gcalic.v.myalicdn.com/gc/pts01_1/index.m3u8?contentid=2820180516001"]},
  2095. {"name":"浙江-舟山东极岛","urls":["https://gcalic.v.myalicdn.com/gc/djd01_1/index.m3u8?contentid=2820180516001"]},
  2096. {"name":"浙江-丽水仙都风景区","urls":["https://gcalic.v.myalicdn.com/gc/xdfjq01_1/index.m3u8?contentid=2820180516001"]},
  2097. {"name":"浙江-乌镇蓝印花布","urls":["https://gcalic.v.myalicdn.com/gc/zjwzlyhb_1/index.m3u8?contentid=2820180516001"]},
  2098. {"name":"浙江-乌镇全景","urls":["https://gcalic.v.myalicdn.com/gc/zjwzblt_1/index.m3u8?contentid=2820180516001"]},
  2099. {"name":"浙江-乌镇西市河","urls":["https://gcalic.v.myalicdn.com/gc/zjwzbblh_1/index.m3u8?contentid=2820180516001"]},
  2100. {"name":"浙江-乌镇龙形田","urls":["https://gcalic.v.myalicdn.com/gc/zjwzlxt_1/index.m3u8?contentid=2820180516001"]},
  2101. {"name":"安徽-西递牌坊","urls":["https://gcalic.v.myalicdn.com/gc/yxxdpf_1/index.m3u8?contentid=2820180516001"]},
  2102. {"name":"安徽-宏村月沼","urls":["https://gcalic.v.myalicdn.com/gc/yxhcyz_1/index.m3u8?contentid=2820180516001"]},
  2103. {"name":"安徽-西递半山亭","urls":["https://gcalic.v.myalicdn.com/gc/yxxdbst_1/index.m3u8?contentid=2820180516001"]},
  2104. {"name":"安徽-黟县芦村远眺","urls":["https://gcalic.v.myalicdn.com/gc/yxlcyt_1/index.m3u8?contentid=2820180516001"]},
  2105. {"name":"安徽-宏村南湖","urls":["https://gcalic.v.myalicdn.com/gc/yxhcnh_1/index.m3u8?contentid=2820180516001"]},
  2106. {"name":"安徽-黄山","urls":["https://gcalic.v.myalicdn.com/gc/ahhs01_1/index.m3u8?contentid=2820180516001"]},
  2107. {"name":"安徽-黄山始信新道","urls":["https://gcalic.v.myalicdn.com/gc/hsyg_1/index.m3u8?contentid=2820180516001"]},
  2108. {"name":"安徽-黄山卧云峰","urls":["https://gcalic.v.myalicdn.com/gc/hswlf_1/index.m3u8?contentid=2820180516001"]},
  2109. {"name":"安徽-黄山梦笔生花","urls":["https://gcalic.v.myalicdn.com/gc/hsmbsh_1/index.m3u8?contentid=2820180516001"]},
  2110. {"name":"安徽-黄山光明顶","urls":["https://gcalic.v.myalicdn.com/gc/hsgmd_1/index.m3u8?contentid=2820180516001"]},
  2111. {"name":"安徽-黄山飞来石","urls":["https://gcalic.v.myalicdn.com/gc/hsptgy_1/index.m3u8?contentid=2820180516001"]},
  2112. {"name":"安徽-黄山平天矼","urls":["https://gcalic.v.myalicdn.com/gc/hsptgz_1/index.m3u8?contentid=2820180516001"]},
  2113. {"name":"安徽-黄山排云亭","urls":["https://gcalic.v.myalicdn.com/gc/hspyt_1/index.m3u8?contentid=2820180516001"]},
  2114. {"name":"安徽-九华山拜经台","urls":["https://gcalic.v.myalicdn.com/gc/jhs02_1/index.m3u8?contentid=2820180516001"]},
  2115. {"name":"安徽-九华山","urls":["https://gcalic.v.myalicdn.com/gc/jhs05_1/index.m3u8?contentid=2820180516001"]},
  2116. {"name":"安徽-九华山花台","urls":["https://gcalic.v.myalicdn.com/gc/jhs01_1/index.m3u8?contentid=2820180516001"]},
  2117. {"name":"福建-厦门鼓浪屿","urls":["https://gcalic.v.myalicdn.com/gc/gly01_1/index.m3u8?contentid=2820180516001"]},
  2118. {"name":"福建-武夷山玉女峰","urls":["https://gcalic.v.myalicdn.com/gc/wysynf_1/index.m3u8?contentid=2820180516001"]},
  2119. {"name":"福建-宁德太姥山景区","urls":["https://gcalic.v.myalicdn.com/gc/tms01_1/index.m3u8?contentid=2820180516001"]},
  2120. {"name":"福建-漳州六鳌翡翠湾","urls":["https://gcalic.v.myalicdn.com/gc/fcw01_1/index.m3u8?contentid=2820180516001"]},
  2121. {"name":"福建-醉美沙滩翡翠湾","urls":["https://gcalic.v.myalicdn.com/gc/fcw03_1/index.m3u8?contentid=2820180516001"]},
  2122. {"name":"江西-婺源江岭2号观景台","urls":["https://gcalic.v.myalicdn.com/gc/wygjt2_1/index.m3u8?contentid=2820180516001"]},
  2123. {"name":"江西-婺源江岭1号观景台","urls":["https://gcalic.v.myalicdn.com/gc/wygjt1_1/index.m3u8?contentid=2820180516001"]},
  2124. {"name":"江西-龙虎山-中间水泡","urls":["https://gcalic.v.myalicdn.com/gc/lhszjsp_1/index.m3u8?contentid=2820180516001"]},
  2125. {"name":"山东-泰山","urls":["https://gcalic.v.myalicdn.com/gc/taishan04_1/index.m3u8?contentid=2820180516001"]},
  2126. {"name":"山东-泰山主峰","urls":["https://gcalic.v.myalicdn.com/gc/taishan01_1/index.m3u8?contentid=2820180516001"]},
  2127. {"name":"山东-瞻鲁台","urls":["https://gcalic.v.myalicdn.com/gc/hkts06_1/index.m3u8?contentid=2820180516001"]},
  2128. {"name":"山东-泰山十八盘","urls":["https://gcalic.v.myalicdn.com/gc/taishan05_1/index.m3u8?contentid=2820180516001"]},
  2129. {"name":"山东-玉皇顶西","urls":["https://gcalic.v.myalicdn.com/gc/hkts11_1/index.m3u8?contentid=2820180516001"]},
  2130. {"name":"山东-玉皇顶东","urls":["https://gcalic.v.myalicdn.com/gc/hkts10_1/index.m3u8?contentid=2820180516001"]},
  2131. {"name":"山东-太平岭","urls":["https://gcalic.v.myalicdn.com/gc/hkts09_1/index.m3u8?contentid=2820180516001"]},
  2132. {"name":"山东-扇子崖","urls":["https://gcalic.v.myalicdn.com/gc/hkts08_1/index.m3u8?contentid=2820180516001"]},
  2133. {"name":"山东-南天门","urls":["https://gcalic.v.myalicdn.com/gc/hkts07_1/index.m3u8?contentid=2820180516001"]},
  2134. {"name":"山东-开山","urls":["https://gcalic.v.myalicdn.com/gc/hkts05_1/index.m3u8?contentid=2820180516001"]},
  2135. {"name":"山东-经石峪","urls":["https://gcalic.v.myalicdn.com/gc/hkts04_1/index.m3u8?contentid=2820180516001"]},
  2136. {"name":"山东-碧霞祠","urls":["https://gcalic.v.myalicdn.com/gc/hkts03_1/index.m3u8?contentid=2820180516001"]},
  2137. {"name":"山东-白云亭悬崖","urls":["https://gcalic.v.myalicdn.com/gc/hkts02_1/index.m3u8?contentid=2820180516001"]},
  2138. {"name":"山东-拱北日出","urls":["https://gcalic.v.myalicdn.com/gc/hkts01_1/index.m3u8?contentid=2820180516001"]},
  2139. {"name":"山东-泰山天街","urls":["https://gcalic.v.myalicdn.com/gc/taishan07_1/index.m3u8?contentid=2820180516001"]},
  2140. {"name":"山东-泰山玉皇顶","urls":["https://gcalic.v.myalicdn.com/gc/taishan06_1/index.m3u8?contentid=2820180516001"]},
  2141. {"name":"山东-泰山大观峰","urls":["https://gcalic.v.myalicdn.com/gc/taishan03_1/index.m3u8?contentid=2820180516001"]},
  2142. {"name":"河南-郑东新区千玺广场","urls":["https://gcalic.v.myalicdn.com/gc/zdxq01_1/index.m3u8?contentid=2820180516001"]},
  2143. {"name":"河南-少林寺广场","urls":["https://gcalic.v.myalicdn.com/gc/zsslsgc_1/index.m3u8?contentid=2820180516001"]},
  2144. {"name":"河南-云台山小寨沟","urls":["https://gcalic.v.myalicdn.com/gc/ytsxzg_1/index.m3u8?contentid=2820180516001"]},
  2145. {"name":"河南-云台山百家岩","urls":["https://gcalic.v.myalicdn.com/gc/ytsbjy_1/index.m3u8?contentid=2820180516001"]},
  2146. {"name":"河南-云台山红石峡","urls":["https://gcalic.v.myalicdn.com/gc/ytshsx_1/index.m3u8?contentid=2820180516001"]},
  2147. {"name":"河南-云台山茱萸峰","urls":["https://gcalic.v.myalicdn.com/gc/ytszyf_1/index.m3u8?contentid=2820180516001"]},
  2148. {"name":"河南-八里沟桃花湾瀑布","urls":["https://gcalic.v.myalicdn.com/gc/blg05_1/index.m3u8?contentid=2820180516001"]},
  2149. {"name":"河南-八里沟天界山玻璃栈道","urls":["https://gcalic.v.myalicdn.com/gc/blg03_1/index.m3u8?contentid=2820180516001"]},
  2150. {"name":"湖北-武汉黄鹤楼","urls":["https://gcalic.v.myalicdn.com/gc/qdls02_1/index.m3u8?contentid=2820180516001"]},
  2151. {"name":"湖北-龙王庙","urls":["https://gcalic.v.myalicdn.com/gc/hnttbdjd_1/index.m3u8?contentid=2820180516001"]},
  2152. {"name":"湖北-武汉长江大桥","urls":["https://gcalic.v.myalicdn.com/gc/qdls04_1/index.m3u8?contentid=2820180516001"]},
  2153. {"name":"湖北-金丝猴01","urls":["https://gcalic.v.myalicdn.com/gc/jshhd01_1/index.m3u8?contentid=2820180516001"]},
  2154. {"name":"湖南-天门山天门洞","urls":["https://gcalic.v.myalicdn.com/gc/tmstmd01_1/index.m3u8?contentid=2820180516001"]},
  2155. {"name":"湖南-天门山天空步道","urls":["https://gcalic.v.myalicdn.com/gc/tms02_1/index.m3u8?contentid=2820180516001"]},
  2156. {"name":"湖南-天门山西线玻璃栈道","urls":["https://gcalic.v.myalicdn.com/gc/tms05_1/index.m3u8?contentid=2820180516001"]},
  2157. {"name":"湖南-天门山云梦仙顶","urls":["https://gcalic.v.myalicdn.com/gc/tms04_1/index.m3u8?contentid=2820180516001"]},
  2158. {"name":"湖南-十八洞村","urls":["https://gcalic.v.myalicdn.com/gc/sbd01_1/index.m3u8?contentid=2820180516001"]},
  2159. {"name":"湖南-凤凰古城南华山","urls":["https://gcalic.v.myalicdn.com/gc/fhgcdnhs_1/index.m3u8?contentid=2820180516001"]},
  2160. {"name":"湖南-凤凰古城东关门","urls":["https://gcalic.v.myalicdn.com/gc/fhgcdgm_1/index.m3u8?contentid=2820180516001"]},
  2161. {"name":"湖南-张家界水绕四门","urls":["https://gcalic.v.myalicdn.com/gc/zjjsrsm_1/index.m3u8?contentid=2820180516001"]},
  2162. {"name":"湖南-张家界将军列队","urls":["https://gcalic.v.myalicdn.com/gc/zjjjjdl_1/index.m3u8?contentid=2820180516001"]},
  2163. {"name":"湖南-阿凡达悬浮山","urls":["https://gcalic.v.myalicdn.com/gc/zjjafdxfs_1/index.m3u8?contentid=2820180516001"]},
  2164. {"name":"湖南-张家界迷魂台","urls":["https://gcalic.v.myalicdn.com/gc/zjjmht_1/index.m3u8?contentid=2820180516001"]},
  2165. {"name":"湖南-宝峰湖","urls":["https://gcalic.v.myalicdn.com/gc/zjjbfh_1/index.m3u8?contentid=2820180516001"]},
  2166. {"name":"广东-东莞中心广场","urls":["https://gcalic.v.myalicdn.com/gc/zsslstpt_1/index.m3u8?contentid=2820180516001"]},
  2167. {"name":"广东-深圳世界之窗","urls":["https://gcalic.v.myalicdn.com/gc/sjzc01_1/index.m3u8?contentid=2820180516001"]},
  2168. {"name":"广东-丹霞山丹梯铁锁","urls":["https://gcalic.v.myalicdn.com/gc/dxsdtts_1/index.m3u8?contentid=2820180516001"]},
  2169. {"name":"都江堰青青","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao20_1/index.m3u8"]},
  2170. {"name":"都江堰妃妃","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao13_1/index.m3u8"]},
  2171. {"name":"都江堰娅祥","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao15_1/index.m3u8"]},
  2172. {"name":"都江堰瑞瑞","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao11_1/index.m3u8"]},
  2173. {"name":"都江堰英英","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao16_1/index.m3u8"]},
  2174. {"name":"都江堰壹壹玖玖","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao14_1/index.m3u8"]},
  2175. {"name":"都江堰水秀","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao12_1/index.m3u8"]},
  2176. {"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"]},
  2177. {"name":"怡然②","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao18_1/index.m3u8"]},
  2178. {"name":"基地幼年园①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao03_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao04_1/index.m3u8"]},
  2179. {"name":"基地母子园①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao07_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao08_1/index.m3u8"]},
  2180. {"name":"基地幼儿园①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao05_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao06_1/index.m3u8"]},
  2181. {"name":"基地成年园①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao01_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao02_1/index.m3u8"]},
  2182. {"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"]},
  2183. {"name":"核桃坪","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao19_1/index.m3u8"]},
  2184. {"name":"卧龙臭水","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao17_1/index.m3u8"]},
  2185. {"name":"大丰麋鹿","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao23_1/index.m3u8"]},
  2186. {"name":"白马雪山","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao24_1/index.m3u8"]},
  2187. {"name":"成都高清","urls":["http://gcalic.v.myalicdn.com/gc/ipanda_1td/index.m3u8"]},
  2188. {"name":"都江堰高清","urls":["http://gcalic.v.myalicdn.com/gc/ipanda1000_1td/index.m3u8"]}
  2189. ]},
  2190. {"group": "临时源","channels": [{"name":"中央1台","urls":["http://111.40.196.33/PLTV/88888888/224/3221225769/index.m3u8","http://117.148.179.155:80/PLTV/88888888/224/3221231468/1.m3u8","http://111.40.196.9/PLTV/88888888/224/3221225513/index.m3u8","http://39.135.138.60:18890/PLTV/88888910/224/3221225618/index.m3u8","http://39.134.68.169:6610/PLTV/88888888/224/3221226016/index.m3u8?","http://39.135.138.58:18890/PLTV/88888888/224/3221225630/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225618/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225642/index.m3u8","http://111.40.196.9/PLTV/88888888/224/3221225548/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225762/index.m3u8","http://111.40.196.9/PLTV/88888888/224/3221225769/index.m3u8","http://111.40.196.9/PLTV/88888888/224/3221225727/index.m3u8","http://tlivectfree-cdn.ysp.cctv.cn/ysp/2000210103.m3u8"]},
  2191. {"name":"中央2台","urls":["rtsp://183.252.176.54:554/PLTV/88888888/224/3221226655/40417429.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226195/1.m3u8","http://111.63.77.77:80/gitv_live/G_CCTV-2-MD/G_CCTV-2-MD.m3u8","http://60.255.49.202:80/live/CCTV-2H265_4000.m3u8","http://117.148.179.147:80/PLTV/88888888/224/3221231678/1.m3u8"]},
  2192. {"name":"中央3台","urls":["http://60.255.49.202:80/live/CCTV-3H265_4000.m3u8","http://111.40.196.29/PLTV/88888888/224/3221225588/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226021/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226397/1.m3u8","http://111.63.117.13:6060/030000001000/CCTV-3/CCTV-3.m3u8","https://jwplay.hebyun.com.cn:443/live/cctv3/1500k/tzwj_video.m3u8","http://223.110.242.133:6610/jsyd/live1/G_CCTV-3-MD/G_CCTV-3-MD/","http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-3hd/1.m3u8","http://117.148.179.183:80/PLTV/88888888/224/3221231682/index.m3u8"]},
  2193. {"name":"中央4台","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226191/1.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225621/index.m3u8","http://39.135.32.28:6610/000000001000/1000000002000031664/1.m3u8?","http://117.148.179.183/PLTV/88888888/224/3221231726/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226633/40417241.smil","http://183.207.248.15/PLTV/3/224/3221225534/index.m3u8","http://60.255.49.202:80/live/CCTV-4H265_4000.m3u8"]},
  2194. {"name":"中央5台","urls":["http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-5hd/1.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225751/index.m3u8","http://60.255.49.202:80/live/CCTV-5H265_4000.m3u8","http://111.63.117.13:6060/030000001000/CCTV-5/CCTV-5.m3u8","http://180.97.123.180/4403-txt.otvstream.otvcloud.com/otv/skcc/live/channel5/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225837/1.m3u8","rtmp://59.124.75.157/sat/cn021","http://tlivectfree-cdn.ysp.cctv.cn/ysp/2000205103.m3u8"]},
  2195. {"name":"中央6台","urls":["http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-6hd/1.m3u8","http://223.110.245.172/PLTV/3/224/3221225548/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226393/1.m3u8","http://39.135.32.28:6610/000000001000/1000000001000016466/1.m3u8?","http://60.255.49.202:80/live/CCTV-6H265_4000.m3u8","https://jwplay.hebyun.com.cn:443/live/cctv6/1500k/tzwj_video.m3u8"]},
  2196. {"name":"中央7台","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226645/40426612.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226192/1.m3u8","http://117.148.179.160/PLTV/88888888/224/3221231633/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-7hd/1.m3u8","http://39.135.32.29:6610/000000001000/1000000001000017218/1.m3u8?","http://183.207.248.71/cntv/live1/cctv-7/cctv-7","http://60.255.49.202:80/live/CCTV-7H265_4000.m3u8"]},
  2197. {"name":"中央8台","urls":["http://39.135.138.58:18890/PLTV/88888888/224/3221225631/index.m3u8","http://111.40.196.31/PLTV/88888888/224/3221225592/index.m3u8","http://39.134.39.37/PLTV/88888888/224/3221226257/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226008/index.m3u8","http://60.255.49.202:80/live/CCTV-8H265_4000.m3u8","http://117.148.179.160:80/PLTV/88888888/224/3221231694/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-8hd/1.m3u8"]},
  2198. {"name":"中央9台","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225734/index.m3u8","http://111.40.196.34/PLTV/88888888/224/3221225502/index.m3u8","http://117.148.179.163/PLTV/88888888/224/3221231697/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226637/40417257.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226197/1.m3u8","http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-9hd/1.m3u8","http://60.255.49.202:80/live/CCTV-9H265_4000.m3u8","http://111.63.77.77:80/gitv_live/G_CCTV-9-HD/G_CCTV-9-HD.m3u8"]},
  2199. {"name":"中央10台","urls":["http://60.255.49.202:80/live/CCTV-10H265_4000.m3u8","http://117.148.179.174/PLTV/88888888/224/3221231666/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226718/40417274.smil","http://39.134.66.66/PLTV/88888888/224/3221225677/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-10hd/1.m3u8","http://111.63.77.77:80/gitv_live/G_CCTV-10-HD/G_CCTV-10-HD.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225730/index.m3u8"]},
  2200. {"name":"中央11台","urls":["http://39.134.65.162/PLTV/88888888/224/3221225517/index.m3u8","rtsp://183.252.176.54:554/PLTV/88888888/224/3221225996/10000100000000060000000002296743_0.smil","http://117.148.179.165/PLTV/88888888/224/3221231711/index.m3u8"]},
  2201. {"name":"中央12台","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226659/40417266.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226190/1.m3u8","http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-12hd/1.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225731/index.m3u8","http://39.134.65.162/PLTV/88888888/224/3221225669/index.m3u8","http://60.255.49.202:80/live/CCTV-12H265_4000.m3u8"]},
  2202. {"name":"中央13台","urls":["http://111.40.196.30/PLTV/88888888/224/3221225504/index.m3u8","http://scgctvshow.sctv.com/scgc/cctv13/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226104/10000100000000060000000002298296_0.smil","http://223.110.242.200:6610/gitv/live1/G_CCTV-13-CQ/G_CCTV-13-CQ","http://tlivectfree-cdn.ysp.cctv.cn/ysp/2000204603.m3u8"]},
  2203. {"name":"中央14台","urls":["http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-14hd/1.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226193/1.m3u8","http://117.148.179.183/PLTV/88888888/224/3221231648/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226641/40418077.smil","http://111.63.77.77:80/gitv_live/G_CCTV-14-HD/G_CCTV-14-HD.m3u8","http://60.255.49.202:80/live/CCTV-14H265_4000.m3u8"]},
  2204. {"name":"中央15台","urls":["rtsp://183.252.176.54:554/PLTV/88888888/224/3221225998/10000100000000060000000002296745_0.smil","http://111.40.196.31/PLTV/88888888/224/3221225500/index.m3u8","http://117.148.179.169:80/PLTV/88888888/224/3221231693/index.m3u8","http://39.134.65.162/PLTV/88888888/224/3221225513/index.m3u8"]},
  2205. {"name":"中央16台","urls":["http://liveop.cctv.cn/hls/CCTV16HD/playlist.m3u8","http://39.135.140.227:6610/PLTV/88888888/224/3221226233/2/index.m3u8?fmt=ts2hls","http://111.63.77.77:80/gitv_live/G_CCTV-16-CQ/G_CCTV-16-CQ.m3u8","http://ott.js.chinamobile.com/PLTV/3/224/3221228144/index.m3u8","http://39.135.129.166:80/PLTV/88888888/224/3221226581/1.m3u8"]},
  2206. {"name":"中央17台","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225765/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226198/1.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225907/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2386/live/cctv-17hd/1.m3u8","http://111.63.77.77:80/gitv_live/G_CCTV-17-CQ/G_CCTV-17-CQ.m3u8","http://223.110.243.224/PLTV/3/224/3221227592/index.m3u8"]},
  2207. {"name":"CCTV-怀旧剧场","urls":["http://117.148.179.158/PLTV/88888888/224/3221231544/index.m3u8"]},
  2208. {"name":"CCTV-第一剧场","urls":["http://117.148.179.172/PLTV/88888888/224/3221231540/index.m3u8"]},
  2209. {"name":"CCTV-风云剧场","urls":["http://117.148.179.162/PLTV/88888888/224/3221231604/index.m3u8"]},
  2210. {"name":"CCTV-风云足球","urls":["http://117.148.179.137/PLTV/88888888/224/3221231547/index.m3u8"]},
  2211. {"name":"CCTV-风云音乐","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225698/1/index.m3u8?fmt=ts2hls"]},
  2212. {"name":"CCTV-世界地理","urls":["http://117.148.179.156/PLTV/88888888/224/3221231537/index.m3u8"]},
  2213. {"name":"CCTV-女性时尚","urls":["http://117.148.179.167/PLTV/88888888/224/3221231598/index.m3u8"]},
  2214. {"name":"CCTV-央视台球","urls":["http://117.148.179.167/PLTV/88888888/224/3221231616/index.m3u8"]},
  2215. {"name":"CCTV-高尔夫网球","urls":["http://117.148.179.160/PLTV/88888888/224/3221231619/index.m3u8"]},
  2216. {"name":"CCTV-央视文化精品","urls":["http://117.148.179.147/PLTV/88888888/224/3221231561/index.m3u8"]},
  2217. {"name":"CGTN","urls":["http://117.148.179.174/PLTV/88888888/224/3221231592/index.m3u8","http://117.148.179.144/PLTV/88888888/224/3221231492/index.m3u8","http://117.148.179.156/PLTV/88888888/224/3221231550/index.m3u8"]},
  2218. {"name":"CETV1","urls":["http://117.148.179.156/PLTV/88888888/224/3221231714/index.m3u8"]},
  2219. {"name":"CETV1","urls":["http://117.148.179.149/PLTV/88888888/224/3221231552/index.m3u8"]},
  2220. {"name":"CETV2","urls":["http://117.148.179.162/PLTV/88888888/224/3221231607/index.m3u8"]},
  2221. {"name":"CETV3","urls":["http://117.148.179.136/PLTV/88888888/224/3221231543/index.m3u8"]},
  2222. {"name":"CETV4","urls":["http://112.15.230.48/PLTV/88888888/224/3221230334/index.m3u8"]},
  2223. {"name":"CETV4","urls":["http://117.148.179.155/PLTV/88888888/224/3221231613/index.m3u8"]},
  2224. {"name":"CHC高清电影","urls":["http://59.49.41.41/live.aishang.ctlcdn.com/00000110240325_1/playlist.m3u8?CONTENTID=00000110240325_1"]},
  2225. {"name":"CHC动作电影","urls":["http://117.148.179.138/PLTV/88888888/224/3221231580/index.m3u8"]},
  2226. {"name":"CHC家庭影院","urls":["http://117.148.179.151/PLTV/88888888/224/3221231799/index.m3u8"]},
  2227. {"name":"·卫视频道·","urls":["","genre",""]},
  2228. {"name":"北京卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225728/index.m3u8","https://hsplay-360.v.btime.com/live_btime/btv_sn_20170706_s1/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226092/10000100000000060000000002296930_0.smil","http://coocaa-ynbit-ws.ifengli.com:2386/live/bjws-hd/1.m3u8","http://117.148.179.168:80/PLTV/88888888/224/3221231732/index.m3u8","http://180.97.123.180/4403-txt.otvstream.otvcloud.com/otv/skcc/live/channel24/index.m3u8","http://223.110.242.133:6610/gitv/live1/G_BEIJING-CQ/G_BEIJING-CQ/"]},
  2229. {"name":"上海卫视","urls":["http://coocaa-ynbit-ws.ifengli.com:2386/live/shdfws-hd/1.m3u8","http://111.40.196.35/PLTV/88888888/224/3221225509/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226041/10000100000000060000000002296882_0.smil","http://223.110.242.133:6610/gitv/live1/G_DONGFANG-CQ/G_DONGFANG-CQ/","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226261/1.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225735/index.m3u8","http://117.148.179.160:80/PLTV/88888888/224/3221231738/index.m3u8"]},
  2230. {"name":"重庆卫视","urls":["http://183.207.248.71/cntv/live1/HD-8000k-1080P-chongqingstv/HD-8000k-1080P-chongqingstv","http://qxlmlive.cbg.cn:1935/app_2/ls_67.stream/chunklist.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226753/45949735.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226202/1.m3u8","http://223.110.242.133:6610/gitv/live1/G_CHONGQING-CQ/G_CHONGQING-CQ/","http://60.255.49.202:80/live/cqwsH265_4000.m3u8","http://219.150.217.41:6610/PLTV1/1340/default.m3u8?ztecid=1340"]},
  2231. {"name":"天津卫视","urls":["http://223.110.242.133:6610/gitv/live1/G_TIANJIN-CQ/G_TIANJIN-CQ/","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226204/1.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225698/index.m3u8","http://180.97.123.180/4403-txt.otvstream.otvcloud.com/otv/skcc/live/channel28/index.m3u8","http://117.148.179.146:80/PLTV/88888888/224/3221228905/index.m3u8","http://60.255.49.202:80/live/tjwsH265_4000.m3u8"]},
  2232. {"name":"新疆卫视","urls":["http://111.0.27.21/livehyw6.chinamcache.com/hyw/zb01.m3u8"]},
  2233. {"name":"浙江卫视","urls":["http://117.148.179.140:80/PLTV/88888888/224/3221229352/index.m3u8","http://111.40.196.25/PLTV/88888888/224/3221225523/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225798/1.m3u8","http://111.63.77.77:80/gitv_live/G_ZHEJIANG-MD/G_ZHEJIANG-MD.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226040/10000100000000060000000002296881_0.smil","http://60.255.49.202:80/live/zjwsH265_4000.m3u8"]},
  2234. {"name":"福建卫视","urls":["rtsp://183.252.176.54:554/PLTV/88888888/224/3221226121/10000100000000060000000002358085_0.smil","http://coocaa-ynbit-ws.ifengli.com:2386/live/fjws-hd/1.m3u8","http://39.135.32.29:6610/000000001000/1000000002000009263/1.m3u8?","http://219.150.217.41:6610/PLTV1/1400/default.m3u8?ztecid=1400"]},
  2235. {"name":"海峡卫视","urls":["rtsp://183.252.176.54:554/PLTV/88888888/224/3221226128/10000100000000060000000002434539_0.smil","http://39.135.55.7:6610/PLTV/88888888/224/3221227198/index.m3u8?servicetype=1&IASHttpSessionId=OTT"]},
  2236. {"name":"厦门卫视","urls":["http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221226996/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226124/10000100000000060000000002358105_0.smil"]},
  2237. {"name":"湖南卫视","urls":["http://coocaa-ynbit-ws.ifengli.com:2386/live/hnws-hd/1.m3u8","http://111.63.77.77:80/gitv_live/G_HUNAN-MD/G_HUNAN-MD.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226082/10000100000000060000000002296924_0.smil","http://60.255.49.202:80/live/hnwsH265_4000.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225799/1.m3u8","http://223.110.242.133:6610/gitv/live1/G_HUNAN-CQ/G_HUNAN-CQ/","http://117.148.179.172:80/PLTV/88888888/224/3221231729/index.m3u8","http://180.97.123.180/4403-txt.otvstream.otvcloud.com/otv/skcc/live/channel25/index.m3u8"]},
  2238. {"name":"江苏卫视","urls":["http://39.135.32.28:6610/000000001000/1000000001000004684/1.m3u8?","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225800/1.m3u8","http://111.40.196.31/PLTV/88888888/224/3221225515/index.m3u8","http://117.148.179.175:80/PLTV/88888888/224/3221231447/index.m3u8","rtsp://183.252.176.54/PLTV/88888888/224/3221226038/10000100000000060000000002296879_0.smil","http://60.255.49.202:80/live/jswsH265_4000.m3u8","http://223.110.242.133:6610/gitv/live1/G_JIANGSU-CQ/G_JIANGSU-CQ/"]},
  2239. {"name":"江西卫视","urls":["http://111.40.196.30/PLTV/88888888/224/3221225560/index.m3u8","http://39.135.140.227:6610/PLTV/88888888/224/3221225492/2/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226687/42186801.smil","http://coocaa-ynbit-ws.ifengli.com:2386/live/jxws-hd/1.m3u8","http://111.63.77.77:80/gitv_live/G_JIANGXI-CQ/G_JIANGXI-CQ.m3u8","http://60.255.49.202:80/live/jxwsH265_4000.m3u8"]},
  2240. {"name":"青海卫视","urls":["http://live.geermurmt.com/qhws/sd/live.m3u8"]},
  2241. {"name":"云南卫视","urls":["http://39.130.202.62:6610/gitv_live/G_YUNNAN-HD/G_YUNNAN-HD.m3u8","http://219.150.217.41:6610/PLTV1/1320/index.m3u8?icpid=dxrm1","https://hwapi.yunshicloud.com/8xughf/e0bx15.m3u8"]},
  2242. {"name":"贵州卫视","urls":["rtsp://183.252.166.199:554/PLTV/88888888/224/3221226126/10000100000000060000000002434541_0.smil","http://60.255.49.202:80/live/gzwsH265_4000.m3u8","http://111.63.77.77:80/gitv_live/G_GUIZHOU-HQ/G_GUIZHOU-HQ.m3u8","http://219.150.217.41:6610/PLTV1/1160/default.m3u8?ztecid=1160"]},
  2243. {"name":"四川卫视","urls":["http://60.255.49.202:80/live/scwsH265_4000.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226806/45949301.smil","http://219.150.217.41:6610/PLTV1/1260/index.m3u8?icpid=dxrm1","http://111.63.77.77:80/gitv_live/G_SICHUAN-HQ/G_SICHUAN-HQ.m3u8"]},
  2244. {"name":"康巴卫视","urls":["http://scgctvshow.sctv.com/hdlive/kangba/1.m3u8"]},
  2245. {"name":"安徽卫视","urls":["http://223.110.242.133:6610/gitv/live1/G_ANHUI-CQ/G_ANHUI-CQ/","http://live1.ahwanyun.cn/wylive/07db2e13-9129-4a79-a059-92d7b400ddf3.m3u8","http://39.135.140.227:6610/PLTV/88888888/224/3221225691/2/index.m3u8","http://117.148.179.177:80/PLTV/88888888/224/3221230215/1.m3u8","http://zbbf2.ahtv.cn/live/749.m3u8","http://180.97.123.180/4403-txt.otvstream.otvcloud.com/otv/skcc/live/channel23/index.m3u8","http://111.40.196.25/PLTV/88888888/224/3221225551/index.m3u8","http://60.255.49.202:80/live/ahwsH265_4000.m3u8"]},
  2246. {"name":"山东卫视","urls":["http://coocaa-ynbit-ws.ifengli.com:2386/live/sdws-hd/1.m3u8","http://111.40.196.36/PLTV/88888888/224/3221225545/index.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226090/10000100000000060000000002296928_0.smil","http://219.150.217.41:6610/PLTV1/1080/default.m3u8?ztecid=1080","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226209/1.m3u8","http://223.110.242.133:6610/gitv/live1/G_SHANDONG-CQ/G_SHANDONG-CQ/"]},
  2247. {"name":"山西卫视","urls":["http://liveflash.sxrtv.com:80/live/sxwshd.m3u8","http://player.521fanli.cn/1691/0/tide/tidem3u8.php?id=shanxihd","http://httpdvb.slave.yqdtv.com:13164/playurl?playtype=live&protocol=http&playtoken=31603YEQXREOPEG10&auth=no&verifycode=14183&accesstoken=G79E6023V21307D1TD05FABJB53102ABM786710FEI3282697DK98BDA6&programid=4200000133"]},
  2248. {"name":"甘肃卫视","urls":["http://39.134.39.38/PLTV/88888888/224/3221226240/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225754/1.m3u8"]},
  2249. {"name":"广东卫视","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226089/10000100000000060000000002296927_0.smil","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225803/1.m3u8","http://coocaa-ynbit-ws.ifengli.com:2386/live/gdws-hd/1.m3u8","http://60.255.49.202:80/live/gdwsH265_4000.m3u8","http://223.110.242.133:6610/gitv/live1/G_GUANGDONG-CQ/G_GUANGDONG-CQ/","http://117.148.179.141:80/PLTV/88888888/224/3221231891/1.m3u8","http://219.150.217.41:6610/PLTV1/1040/default.m3u8?ztecid=1040"]},
  2250. {"name":"广西卫视","urls":["https://live-cdn.gxxw.com/tv/gxtvlive/index.m3u8","http://live.scuec.edu.cn:8080/hls/gxhd.m3u8"]},
  2251. {"name":"深圳卫视","urls":["http://coocaa-ynbit-ws.ifengli.com:2386/live/szws-hd/1.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225739/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225700/index.m3u8","http://111.63.77.77:80/gitv_live/G_SHENZHEN-MD/G_SHENZHEN-MD.m3u8","http://60.255.49.202:80/live/szwsH265_4000.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225801/1.m3u8","http://219.150.217.41:6610/PLTV1/1240/default.m3u8?ztecid=1240"]},
  2252. {"name":"湖北卫视","urls":["http://39.135.32.28:6610/000000001000/6956052407855047826/1.m3u8?","http://111.40.196.27/PLTV/88888888/224/3221225654/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226206/1.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226091/10000100000000060000000002296929_0.smil","http://60.255.49.202:80/live/hbwsH265_4000.m3u8"]},
  2253. {"name":"河北卫视","urls":["http://223.110.242.133:6610/gitv/live1/G_HEBEI-CQ/G_HEBEI-CQ/","http://live2.plus.hebtv.com/hbwsx/hd/live.m3u8","http://219.150.217.41:6610/PLTV1/1180/default.m3u8?ztecid=1180","rtsp://183.252.166.199/PLTV/88888888/224/3221226111/10000100000000060000000002310153_0.smil"]},
  2254. {"name":"河南卫视","urls":["http://219.150.217.47:6610/PLTV2/2780/index.m3u8?icpid=dxrm1","rtsp://183.252.166.199/PLTV/88888888/224/3221226076/10000100000000060000000002296917_0.smil","http://111.63.77.77:80/gitv_live/G_HENAN-CQ/G_HENAN-CQ.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225767/1.m3u8"]},
  2255. {"name":"辽宁卫视","urls":["http://coocaa-ynbit-ws.ifengli.com:2386/live/lnws-hd/1.m3u8","http://39.135.32.28:6610/000000001000/1000000002000024033/1.m3u8?","http://111.40.196.34/PLTV/88888888/224/3221225593/index.m3u8","http://223.110.242.133:6610/gitv/live1/G_LIAONING-CQ/G_LIAONING-CQ/","http://117.148.179.152:80/PLTV/88888888/224/3221231802/1.m3u8","http://219.150.217.41:6610/PLTV1/1120/index.m3u8?icpid=dxrm1"]},
  2256. {"name":"吉林卫视","urls":["rtsp://183.252.176.54:554/PLTV/88888888/224/3221226792/48616745.smil","http://coocaa-ynbit-ws.ifengli.com:2386/live/jlws-hd/1.m3u8","http://223.110.242.133:6610/gitv/live1/G_JILIN-CQ/G_JILIN-CQ/","http://219.150.217.41:6610/PLTV1/1360/default.m3u8?ztecid=1360"]},
  2257. {"name":"黑龙江卫视","urls":["http://111.40.196.38/PLTV/88888888/224/3221225544/index.m3u8","http://coocaa-ynbit-ws.ifengli.com:2386/live/hljws-hd/1.m3u8","http://117.148.179.141:80/PLTV/88888888/224/3221231967/1.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226087/10000100000000060000000002296926_0.smil"]},
  2258. {"name":"海南卫视","urls":["rtsp://183.252.166.199:554/PLTV/88888888/224/3221226048/10000100000000060000000002296889_0.smil","http://111.63.77.77:80/gitv_live/G_HAINAN-HQ/G_HAINAN-HQ.m3u8","http://live.scuec.edu.cn:8080/hls/lyhd.m3u8","http://219.150.217.41:6610/PLTV1/1480/default.m3u8?ztecid=1480"]},
  2259. {"name":"兵团卫视","urls":["http://test5.btzx.com.cn/live/btxjbtws.stream/playlist.m3u8"]},
  2260. {"name":"宁夏卫视","urls":["http://39.134.93.229:6610/000000001000/nxweishi/1.m3u8?IASHttpSessionId=","https://hhylive.ningxiahuangheyun.com/live/nxws1M.m3u8"]},
  2261. {"name":"陕西卫视","urls":["http://129.226.107.32:80/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225498/index.m3u8"]},
  2262. {"name":"南方卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226218/1.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226788/48356344.smil","http://183.207.248.71/gitv/live1/G_NANFANG/G_NANFANG","http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226218/1.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226788/48356344.smil","http://39.135.34.150:8080/000000001000/1000000002000011619/1.m3u8?xtkg","http://183.207.248.71/gitv/live1/G_NANFANG/G_NANFANG"]},
  2263. {"name":"三沙卫视","urls":["http://pull2.ssws.tv/live/SswsTV20210803.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226819/57526516.smil","http://pull2.ssws.tv/live/SswsTV20210803.m3u8"]},
  2264. {"name":"黑龙江卫视","urls":["http://ott.js.chinamobile.com/TVOD/3/224/3221228233/index.m3u8"]},
  2265. {"name":"甘肃卫视","urls":["http://39.134.39.39/PLTV/88888888/224/3221226240/index.m3u8"]},
  2266. {"name":"吉林卫视","urls":["http://111.40.196.36/PLTV/88888888/224/3221225589/index.m3u8"]},
  2267. {"name":"内蒙古卫视","urls":["http://111.40.196.39/PLTV/88888888/224/3221225574/index.m3u8"]},
  2268. {"name":"内蒙古卫视","urls":["http://live9.m2oplus.nmtv.cn/nmgws/playlist.m3u8"]},
  2269. {"name":"宁夏卫视","urls":["http://111.40.196.31/PLTV/88888888/224/3221225530/index.m3u8"]},
  2270. {"name":"青海卫视","urls":["http://111.40.196.27/PLTV/88888888/224/3221225568/index.m3u8"]},
  2271. {"name":"安多卫视","urls":["http://111.40.196.28/PLTV/88888888/224/3221225666/index.m3u8"]},
  2272. {"name":"陕西卫视","urls":["http://111.40.196.34/PLTV/88888888/224/3221225582/index.m3u8"]},
  2273. {"name":"山西卫视","urls":["http://111.40.196.26/PLTV/88888888/224/3221225520/index.m3u8"]},
  2274. {"name":"厦门卫视","urls":["http://111.40.196.34/PLTV/88888888/224/3221225643/index.m3u8"]},
  2275. {"name":"广西卫视","urls":["http://111.40.196.35/PLTV/88888888/224/3221225518/index.m3u8"]},
  2276. {"name":"云南卫视","urls":["http://111.40.196.36/PLTV/88888888/224/3221225635/index.m3u8"]},
  2277. {"name":"贵州卫视","urls":["http://111.40.196.25/PLTV/88888888/224/3221225522/index.m3u8"]},
  2278. {"name":"四川卫视","urls":["http://111.40.196.34/PLTV/88888888/224/3221225562/index.m3u8"]},
  2279. {"name":"康巴卫视","urls":["http://111.40.196.38/PLTV/88888888/224/3221225648/index.m3u8"]},
  2280. {"name":"新疆卫视","urls":["http://111.40.196.26/PLTV/88888888/224/3221225598/index.m3u8"]},
  2281. {"name":"兵团卫视","urls":["http://111.40.196.31/PLTV/88888888/224/3221225637/index.m3u8"]},
  2282. {"name":"西藏卫视","urls":["http://111.40.196.36/PLTV/88888888/224/3221225646/index.m3u8"]},
  2283. {"name":"海南卫视","urls":["http://111.40.196.35/PLTV/88888888/224/3221225623/index.m3u8"]},
  2284. {"name":"三沙卫视","urls":["http://183.11.239.36:808/hls/85/index.m3u8"]},
  2285. {"name":"兵团卫视","urls":["http://test5.btzx.com.cn/live/btxjbtws.stream/playlist.m3u8"]},
  2286. {"name":"宁夏卫视","urls":["http://39.134.93.229:6610/000000001000/nxweishi/1.m3u8?IASHttpSessionId="]},
  2287. {"name":"陕西卫视","urls":["http://129.226.107.32:80/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225498/index.m3u8"]},
  2288. {"name":"三沙卫视","urls":["http://pull2.ssws.tv/live/SswsTV20210803.m3u8","rtsp://183.252.166.199/PLTV/88888888/224/3221226819/57526516.smil"]},
  2289. {"name":"南方卫视","urls":["http://111.63.77.70/gitv_live/G_NANFANG/G_NANFANG.m3u8?p=GITV&area=HBYD"]},
  2290. {"name":"海峡卫视","urls":["rtsp://183.252.176.54:554/PLTV/88888888/224/3221226128/10000100000000060000000002434539_0.smil"]},
  2291. {"name":"延边卫视","urls":["http://111.63.77.70/gitv_live/G_YANBIAN/G_YANBIAN.m3u8?p=GITV&area=HBYD"]},
  2292. {"name":"农林卫视","urls":["http://111.63.77.70/gitv_live/G_NONGLIN/G_NONGLIN.m3u8?p=GITV&area=HBYD"]},
  2293. {"name":"山东教育卫视","urls":["http://111.63.77.70/gitv_live/G_SDETV/G_SDETV.m3u8?p=GITV&area=HBYD"]},
  2294. {"name":"深圳卫视","urls":["http://tyzb8080.weetai.cn/iptv-cdn/公众号=太阳视界/tyzb13.php?id=szws"]},
  2295. {"name":"环球旅游","urls":["http://117.148.179.154/PLTV/88888888/224/3221231712/index.m3u8"]},
  2296. {"name":"嘉佳卡通","urls":["http://117.148.179.144/PLTV/88888888/224/3221231483/index.m3u8"]},
  2297. {"name":"金鹰纪实","urls":["http://117.148.179.141/PLTV/88888888/224/3221231582/index.m3u8"]},
  2298. {"name":"江苏教育","urls":["http://117.148.179.158/PLTV/88888888/224/3221231631/index.m3u8"]},
  2299. {"name":"优漫卡通","urls":["http://117.148.179.183/PLTV/88888888/224/3221231574/index.m3u8"]},
  2300. {"name":"山东教育卫视","urls":["http://117.148.179.157/PLTV/88888888/224/3221231549/index.m3u8"]},
  2301. {"name":"东方影视","urls":["http://117.148.179.166/PLTV/88888888/224/3221231639/index.m3u8"]},
  2302. {"name":"上海纪实人文","urls":["http://117.148.179.168/PLTV/88888888/224/3221231612/index.m3u8"]},
  2303. {"name":"上海都市","urls":["http://117.148.179.165/PLTV/88888888/224/3221231618/index.m3u8"]},
  2304. {"name":"欢笑剧场","urls":["http://117.148.179.168/PLTV/88888888/224/3221230739/index.m3u8"]},
  2305. {"name":"幸福彩","urls":["http://117.148.179.156/PLTV/88888888/224/3221231730/index.m3u8"]},
  2306. {"name":"东方财经浦东","urls":["http://117.148.179.176/PLTV/88888888/224/3221231646/index.m3u8"]},
  2307. {"name":"哈哈炫动","urls":["http://117.148.179.136/PLTV/88888888/224/3221231480/index.m3u8","http://117.148.179.36/PLTV/88888888/224/3221229065/index.m3u8"]},
  2308. {"name":"法治天地","urls":["http://117.148.179.182/PLTV/88888888/224/3221231597/index.m3u8"]},
  2309. {"name":"BTV文艺-高清","urls":["http://v.mp.haue.edu.cn/hls/btv2hd.m3u8"]},
  2310. {"name":"BTV科教-高清","urls":["http://v.mp.haue.edu.cn/hls/btv3hd.m3u8"]},
  2311. {"name":"BTV影视-高清","urls":["http://v.mp.haue.edu.cn/hls/btv4hd.m3u8"]},
  2312. {"name":"BTV财经-高清","urls":["http://v.mp.haue.edu.cn/hls/btv5hd.m3u8"]},
  2313. {"name":"凤凰中文","urls":["http://59.44.10.113:9901/tsfile/live/1079_1.m3u8"]},
  2314. {"name":"凤凰资讯","urls":["http://59.44.10.113:9901/tsfile/live/1078_1.m3u8"]},
  2315. {"name":"凤凰香港","urls":["http://59.44.10.113:9901/tsfile/live/1080_1.m3u8"]},
  2316. {"name":"CCTV1","urls":["http://59.44.10.113:9901/tsfile/live/1018_1.m3u8"]},
  2317. {"name":"CCTV2","urls":["http://59.44.10.113:9901/tsfile/live/1001_1.m3u8"]},
  2318. {"name":"CCTV3","urls":["http://59.44.10.113:9901/tsfile/live/1050_1.m3u8"]},
  2319. {"name":"CCTV4","urls":["http://59.44.10.113:9901/tsfile/live/1045_1.m3u8"]},
  2320. {"name":"CCTV5","urls":["http://59.44.10.113:9901/tsfile/live/1051_1.m3u8"]},
  2321. {"name":"CCTV6","urls":["http://59.44.10.113:9901/tsfile/live/1052_1.m3u8"]},
  2322. {"name":"CCTV7","urls":["http://59.44.10.113:9901/tsfile/live/1070_1.m3u8"]},
  2323. {"name":"CCTV8","urls":["http://59.44.10.113:9901/tsfile/live/1053_1.m3u8"]},
  2324. {"name":"CCTV9","urls":["http://59.44.10.113:9901/tsfile/live/1002_1.m3u8"]},
  2325. {"name":"CCTV10","urls":["http://59.44.10.113:9901/tsfile/live/1004_1.m3u8"]},
  2326. {"name":"CCTV11","urls":["http://59.44.10.113:9901/tsfile/live/1043_1.m3u8"]},
  2327. {"name":"CCTV12","urls":["http://59.44.10.113:9901/tsfile/live/1007_1.m3u8"]},
  2328. {"name":"CCTV13","urls":["http://59.44.10.113:9901/tsfile/live/1083_1.m3u8"]},
  2329. {"name":"CCTV14","urls":["http://59.44.10.113:9901/tsfile/live/1008_1.m3u8"]},
  2330. {"name":"CCTV15","urls":["http://59.44.10.113:9901/tsfile/live/1044_1.m3u8"]},
  2331. {"name":"CCTV17","urls":["http://59.44.10.113:9901/tsfile/live/1000_1.m3u8"]},
  2332. {"name":"CCTV5+","urls":["http://59.44.10.113:9901/tsfile/live/1038_1.m3u8"]},
  2333. {"name":"安徽卫视","urls":["http://59.44.10.113:9901/tsfile/live/1057_1.m3u8"]},
  2334. {"name":"北京卫视","urls":["http://59.44.10.113:9901/tsfile/live/1012_1.m3u8"]},
  2335. {"name":"东方卫视","urls":["http://59.44.10.113:9901/tsfile/live/1055_1.m3u8"]},
  2336. {"name":"动漫秀场","urls":["http://59.44.10.113:9901/tsfile/live/1086_1.m3u8"]},
  2337. {"name":"广东卫视","urls":["http://59.44.10.113:9901/tsfile/live/1022_1.m3u8"]},
  2338. {"name":"贵州卫视","urls":["http://59.44.10.113:9901/tsfile/live/1065_1.m3u8"]},
  2339. {"name":"河北卫视","urls":["http://59.44.10.113:9901/tsfile/live/1058_1.m3u8"]},
  2340. {"name":"黑龙江卫视","urls":["http://59.44.10.113:9901/tsfile/live/1013_1.m3u8"]},
  2341. {"name":"湖北卫视","urls":["http://59.44.10.113:9901/tsfile/live/1040_1.m3u8"]},
  2342. {"name":"湖南卫视","urls":["http://59.44.10.113:9901/tsfile/live/1059_1.m3u8"]},
  2343. {"name":"湖南卫视","urls":["http://59.44.10.113:9901/tsfile/live/1106_1.m3u8"]},
  2344. {"name":"吉林卫视","urls":["http://59.44.10.113:9901/tsfile/live/1060_1.m3u8"]},
  2345. {"name":"江苏卫视","urls":["http://59.44.10.113:9901/tsfile/live/1010_1.m3u8"]},
  2346. {"name":"江西卫视","urls":["http://59.44.10.113:9901/tsfile/live/1056_1.m3u8"]},
  2347. {"name":"金鹰卡通","urls":["http://59.44.10.113:9901/tsfile/live/1063_1.m3u8"]},
  2348. {"name":"辽宁卫视","urls":["http://59.44.10.113:9901/tsfile/live/1061_1.m3u8"]},
  2349. {"name":"山东卫视","urls":["http://59.44.10.113:9901/tsfile/live/1039_1.m3u8"]},
  2350. {"name":"深圳卫视","urls":["http://59.44.10.113:9901/tsfile/live/1023_1.m3u8"]},
  2351. {"name":"四川卫视","urls":["http://59.44.10.113:9901/tsfile/live/1067_1.m3u8"]},
  2352. {"name":"天津卫视","urls":["http://59.44.10.113:9901/tsfile/live/1011_1.m3u8"]},
  2353. {"name":"浙江卫视","urls":["http://59.44.10.113:9901/tsfile/live/1021_1.m3u8"]},
  2354. {"name":"重庆卫视","urls":["http://59.44.10.113:9901/tsfile/live/1020_1.m3u8"]}
  2355. ]},
  2356. {"group": "临时源一","channels": [{"name":"凤凰中文","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227222/index.m3u8?servicetype=1"]},
  2357. {"name":"凤凰资讯","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227226/index.m3u8?servicetype=1"]},
  2358. {"name":"中国天气","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227210/index.m3u8?servicetype=1"]},
  2359. {"name":"CCTV1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225829/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227014/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226995/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226908/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225922/index.m3u8?servicetype=1"]},
  2360. {"name":"CCTV2","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226795/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225800/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225923/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226915/index.m3u8?servicetype=1"]},
  2361. {"name":"CCTV3","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227055/index.m3u8?servicetype=1"]},
  2362. {"name":"CCTV4","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225802/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226968/index.m3u8?servicetype=1"]},
  2363. {"name":"CCTV5","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227170/index.m3u8?servicetype=1"]},
  2364. {"name":"CCTV5+","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225821/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225939/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226919/index.m3u8?servicetype=1"]},
  2365. {"name":"CCTV6","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227137/index.m3u8?servicetype=1"]},
  2366. {"name":"CCTV7","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225805/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225927/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226972/index.m3u8?servicetype=1"]},
  2367. {"name":"CCTV8","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227174/index.m3u8?servicetype=1"]},
  2368. {"name":"CCTV9","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225820/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225929/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226923/index.m3u8?servicetype=1"]},
  2369. {"name":"CCTV10","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225814/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226976/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225931/index.m3u8?servicetype=1"]},
  2370. {"name":"CCTV11","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225815/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226927/index.m3u8?servicetype=1"]},
  2371. {"name":"CCTV12","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225816/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225932/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226931/index.m3u8?servicetype=1"]},
  2372. {"name":"CCTV13","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225817/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226985/index.m3u8?servicetype=1"]},
  2373. {"name":"CCTV14","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225819/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227086/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225933/index.m3u8?servicetype=1"]},
  2374. {"name":"CCTV15","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225818/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226989/index.m3u8?servicetype=1"]},
  2375. {"name":"CCTV16","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227148/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227125/index.m3u8?servicetype=1"]},
  2376. {"name":"CCTV17","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226990/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226986/index.m3u8?servicetype=1"]},
  2377. {"name":"中国教育1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227067/index.m3u8?servicetype=1"]},
  2378. {"name":"湖南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225827/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226924/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227232/index.m3u8?servicetype=1"]},
  2379. {"name":"东南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227156/index.m3u8?servicetype=1"]},
  2380. {"name":"海峡卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227198/index.m3u8?servicetype=1"]},
  2381. {"name":"深圳卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225848/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225938/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227242/index.m3u8?servicetype=1"]},
  2382. {"name":"东方卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225828/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226560/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227040/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227059/index.m3u8?servicetype=1"]},
  2383. {"name":"云南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227181/index.m3u8?servicetype=1"]},
  2384. {"name":"北京卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225826/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225937/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227246/index.m3u8?servicetype=1"]},
  2385. {"name":"吉林卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227099/index.m3u8?servicetype=1"]},
  2386. {"name":"四川卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227182/index.m3u8?servicetype=1"]},
  2387. {"name":"天津卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225830/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225941/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227205/index.m3u8?servicetype=1"]},
  2388. {"name":"安徽卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225844/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227178/index.m3u8?servicetype=1"]},
  2389. {"name":"山东卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225843/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226928/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227236/index.m3u8?servicetype=1"]},
  2390. {"name":"广东卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225824/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226895/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227164/index.m3u8?servicetype=1"]},
  2391. {"name":"广西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227250/index.m3u8?servicetype=1"]},
  2392. {"name":"江苏卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225847/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227160/index.m3u8?servicetype=1"]},
  2393. {"name":"江西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225834/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227022/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227209/index.m3u8?servicetype=1"]},
  2394. {"name":"河北卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227063/index.m3u8?servicetype=1"]},
  2395. {"name":"河南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227095/index.m3u8?servicetype=1"]},
  2396. {"name":"浙江卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225825/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225934/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227193/index.m3u8?servicetype=1"]},
  2397. {"name":"海南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227216/index.m3u8?servicetype=1"]},
  2398. {"name":"湖北卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225840/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226863/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227111/index.m3u8?servicetype=1"]},
  2399. {"name":"甘肃卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227262/index.m3u8?servicetype=1"]},
  2400. {"name":"贵州卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226827/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227201/index.m3u8?servicetype=1"]},
  2401. {"name":"辽宁卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225832/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227141/index.m3u8?servicetype=1"]},
  2402. {"name":"重庆卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225831/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225949/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227240/index.m3u8?servicetype=1"]},
  2403. {"name":"黑龙江卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225862/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225940/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227197/index.m3u8?servicetype=1"]},
  2404. {"name":"厦门卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226781/index.m3u8?servicetype=1"]},
  2405. {"name":"厦门1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227185/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226814/index.m3u8?servicetype=1"]},
  2406. {"name":"厦门2","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226777/index.m3u8?servicetype=1"]},
  2407. {"name":"厦门3","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226760/index.m3u8?servicetype=1"]},
  2408. {"name":"福建乡村振兴公共","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227153/index.m3u8?servicetype=1"]},
  2409. {"name":"福建少儿","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227194/index.m3u8?servicetype=1"]},
  2410. {"name":"福建教育","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227202/index.m3u8?servicetype=1"]},
  2411. {"name":"福建文体","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227188/index.m3u8?servicetype=1"]},
  2412. {"name":"福建新闻","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227180/index.m3u8?servicetype=1"]},
  2413. {"name":"福建旅游","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227190/index.m3u8?servicetype=1"]},
  2414. {"name":"福建电视剧","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227079/index.m3u8?servicetype=1"]},
  2415. {"name":"福建经济","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227184/index.m3u8?servicetype=1"]},
  2416. {"name":"福建综合","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227149/index.m3u8?servicetype=1"]},
  2417. {"name":"南平1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227066/index.m3u8?servicetype=1"]},
  2418. {"name":"南平2","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226956/index.m3u8?servicetype=1"]},
  2419. {"name":"宁德1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227196/index.m3u8?servicetype=1"]},
  2420. {"name":"龙岩综合","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227200/index.m3u8?servicetype=1"]},
  2421. {"name":"黑莓动画","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225878/index.m3u8?servicetype=1"]},
  2422. {"name":"黑莓电影","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225891/index.m3u8?servicetype=1"]},
  2423. {"name":"哒啵赛事","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226676/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227252/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225894/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226680/index.m3u8?servicetype=1"]},
  2424. {"name":"NewTV中国功夫","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225896/index.m3u8?servicetype=1"]},
  2425. {"name":"NewTV军事评论","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225890/index.m3u8?servicetype=1"]},
  2426. {"name":"NewTV军旅剧场","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225887/index.m3u8?servicetype=1"]},
  2427. {"name":"NewTV动作电影","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225879/index.m3u8?servicetype=1"]},
  2428. {"name":"NewTV古装剧场","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225880/index.m3u8?servicetype=1"]},
  2429. {"name":"NewTV家庭剧场","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225882/index.m3u8?servicetype=1"]},
  2430. {"name":"NewTV怡伴健康","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225883/index.m3u8?servicetype=1"]},
  2431. {"name":"NewTV惊悚悬疑","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225885/index.m3u8?servicetype=1"]},
  2432. {"name":"NewTV武搏世界","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225895/index.m3u8?servicetype=1"]},
  2433. {"name":"NewTV海外剧场","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225881/index.m3u8?servicetype=1"]},
  2434. {"name":"NewTV潮妈辣婆","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226107/index.m3u8?servicetype=1"]},
  2435. {"name":"NewTV炫舞未来","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226699/index.m3u8?servicetype=1"]},
  2436. {"name":"NewTV爱情喜剧","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225877/index.m3u8?servicetype=1"]},
  2437. {"name":"NewTV精品体育","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225886/index.m3u8?servicetype=1"]},
  2438. {"name":"NewTV精品大剧","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225889/index.m3u8?servicetype=1"]},
  2439. {"name":"NewTV精品纪录","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225888/index.m3u8?servicetype=1"]},
  2440. {"name":"NewTV金牌综艺","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225884/index.m3u8?servicetype=1"]},
  2441. {"name":"SiTV极速汽车","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227052/index.m3u8?servicetype=1"]},
  2442. {"name":"SiTV七彩戏剧","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227212/index.m3u8?servicetype=1"]},
  2443. {"name":"SiTV东方财经","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227087/index.m3u8?servicetype=1"]},
  2444. {"name":"SiTV全纪实","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227083/index.m3u8?servicetype=1"]},
  2445. {"name":"SiTV动漫秀场","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227071/index.m3u8?servicetype=1"]},
  2446. {"name":"SiTV极速汽车","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227186/index.m3u8?servicetype=1"]},
  2447. {"name":"SiTV欢笑剧场","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227145/index.m3u8?servicetype=1"]},
  2448. {"name":"SiTV法治天地","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227176/index.m3u8?servicetype=1"]},
  2449. {"name":"SiTV游戏风云","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227033/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227075/index.m3u8?servicetype=1"]},
  2450. {"name":"SiTV生活时尚","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227091/index.m3u8?servicetype=1"]},
  2451. {"name":"SiTV都市剧场","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227204/index.m3u8?servicetype=1"]},
  2452. {"name":"SiTV金色学堂","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227208/index.m3u8?servicetype=1"]},
  2453. {"name":"上海纪实人文","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225946/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227213/index.m3u8?servicetype=1"]},
  2454. {"name":"北京冬奥纪实","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225944/index.m3u8?servicetype=1"]},
  2455. {"name":"湖南金鹰纪实","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226975/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226937/index.m3u8?servicetype=1"]},
  2456. {"name":"湖南快乐垂钓","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227028/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226940/index.m3u8?servicetype=1"]},
  2457. {"name":"湖南金鹰卡通","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227018/index.m3u8?servicetype=1"]},
  2458. {"name":"江西陶瓷","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227234/index.m3u8?servicetype=1"]},
  2459. {"name":"CGTN","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226980/index.m3u8?servicetype=1"]},
  2460. {"name":"CGTN","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225822/index.m3u8?servicetype=1"]},
  2461. {"name":"CGTN纪录","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225813/index.m3u8?servicetype=1"]},
  2462. {"name":"CGTN俄语","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227103/index.m3u8?servicetype=1"]},
  2463. {"name":"CGTN法语","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227220/index.m3u8?servicetype=1"]},
  2464. {"name":"CGTN西语","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227238/index.m3u8?servicetype=1"]},
  2465. {"name":"CGTN阿语","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227224/index.m3u8?servicetype=1"]},
  2466. {"name":"中国教育1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225869/index.m3u8?servicetype=1"]},
  2467. {"name":"中国教育2","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227206/index.m3u8?servicetype=1"]},
  2468. {"name":"中国教育4","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227192/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227050/index.m3u8?servicetype=1"]},
  2469. {"name":"东南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225833/index.m3u8?servicetype=1"]},
  2470. {"name":"云南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225853/index.m3u8?servicetype=1"]},
  2471. {"name":"内蒙古卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225846/index.m3u8?servicetype=1"]},
  2472. {"name":"内蒙古卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226933/index.m3u8?servicetype=1"]},
  2473. {"name":"内蒙古卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227244/index.m3u8?servicetype=1"]},
  2474. {"name":"厦门卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226964/index.m3u8?servicetype=1"]},
  2475. {"name":"吉林卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225851/index.m3u8?servicetype=1"]},
  2476. {"name":"四川卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225835/index.m3u8?servicetype=1"]},
  2477. {"name":"宁夏卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225849/index.m3u8?servicetype=1"]},
  2478. {"name":"宁夏卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226843/index.m3u8?servicetype=1"]},
  2479. {"name":"宁夏卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227254/index.m3u8?servicetype=1"]},
  2480. {"name":"山西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225839/index.m3u8?servicetype=1"]},
  2481. {"name":"山西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226839/index.m3u8?servicetype=1"]},
  2482. {"name":"山西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227258/index.m3u8?servicetype=1"]},
  2483. {"name":"广西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225836/index.m3u8?servicetype=1"]},
  2484. {"name":"广西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226925/index.m3u8?servicetype=1"]},
  2485. {"name":"新疆卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225852/index.m3u8?servicetype=1"]},
  2486. {"name":"新疆卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226936/index.m3u8?servicetype=1"]},
  2487. {"name":"新疆卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227248/index.m3u8?servicetype=1"]},
  2488. {"name":"河北卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225837/index.m3u8?servicetype=1"]},
  2489. {"name":"河南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225842/index.m3u8?servicetype=1"]},
  2490. {"name":"海南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225855/index.m3u8?servicetype=1"]},
  2491. {"name":"甘肃卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225845/index.m3u8?servicetype=1"]},
  2492. {"name":"甘肃卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226932/index.m3u8?servicetype=1"]},
  2493. {"name":"西藏卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226847/index.m3u8?servicetype=1"]},
  2494. {"name":"西藏卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227217/index.m3u8?servicetype=1"]},
  2495. {"name":"贵州卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225838/index.m3u8?servicetype=1"]},
  2496. {"name":"陕西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225850/index.m3u8?servicetype=1"]},
  2497. {"name":"陕西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227221/index.m3u8?servicetype=1"]},
  2498. {"name":"青海卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225841/index.m3u8?servicetype=1"]},
  2499. {"name":"青海卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227119/index.m3u8?servicetype=1"]},
  2500. {"name":"四川康巴卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225856/index.m3u8?servicetype=1"]},
  2501. {"name":"山东教育卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225873/index.m3u8?servicetype=1"]},
  2502. {"name":"广东南方卫视上星","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227214/index.m3u8?servicetype=1"]},
  2503. {"name":"新疆兵团卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227168/index.m3u8?servicetype=1"]},
  2504. {"name":"海南三沙卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227172/index.m3u8?servicetype=1"]},
  2505. {"name":"上海哈哈炫动","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225872/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227177/index.m3u8?servicetype=1"]},
  2506. {"name":"广东嘉佳卡通","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227230/index.m3u8?servicetype=1"]},
  2507. {"name":"北京卡酷少儿","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225871/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226963/index.m3u8?servicetype=1"]},
  2508. {"name":"江苏优漫卡通","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225874/index.m3u8?servicetype=1"]},
  2509. {"name":"湖南金鹰卡通","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226959/index.m3u8?servicetype=1","http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225870/index.m3u8?servicetype=1"]},
  2510. {"name":"福建教育","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226981/index.m3u8?servicetype=1"]},
  2511. {"name":"三明1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227173/index.m3u8?servicetype=1"]},
  2512. {"name":"平潭综合","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227218/index.m3u8?servicetype=1"]},
  2513. {"name":"泉州1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227165/index.m3u8?servicetype=1"]},
  2514. {"name":"漳州","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227169/index.m3u8?servicetype=1"]},
  2515. {"name":"福州1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227157/index.m3u8?servicetype=1"]},
  2516. {"name":"莆田1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227161/index.m3u8?servicetype=1"]},]},
  2517. {"group": "港台","channels": [
  2518. {"name":"翡翠台","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/1"]},
  2519. {"name":"明珠台","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/2"]},
  2520. {"name":"无线新闻","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/3"]},
  2521. {"name":"有线新闻","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/4"]},
  2522. {"name":"NOW新闻","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/5"]},
  2523. {"name":"无线財經","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/8"]},
  2524. {"name":"有线財經","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/9"]},
  2525. {"name":"J2台","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/10"]},
  2526. {"name":"有线603台","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/11"]},
  2527. {"name":"18台","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/12"]},
  2528. {"name":"RTHK31台","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/13"]},
  2529. {"name":"RTHK32台","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/14"]},
  2530. {"name":"凤凰香港","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/16"]},
  2531. {"name":"凤凰卫视","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/17"]},
  2532. {"name":"凤凰资讯","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/18"]},
  2533. {"name":"澳视澳门","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/19"]},
  2534. {"name":"澳门资讯","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/20"]},
  2535. {"name":"澳视葡语","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/21"]},
  2536. {"name":"澳门Macau","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/22"]},
  2537. {"name":"澳视卫星","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/24"]},
  2538. {"name":"澳视体育","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/25"]},
  2539. {"name":"Now 爆谷台","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/26"]},
  2540. {"name":"星河2台","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/28"]},
  2541. {"name":"天映频道台","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/29"]},
  2542. {"name":"卫视电影台","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/30"]},
  2543. {"name":"周星驰-粤语","urls":["http://txtest-xp2p.p2p.huya.com/src/1250011-1250011-5368756364640256-2777036638-10057-A-0-1.xs"]},
  2544. {"name":"广东珠江","urls":["http://120.84.96.42:808/hls/122/index.m3u8","http://183.63.15.42:9901/tsfile/live/0109_1.m3u8","http://183.11.239.32:808/hls/12/index.m3u8","http://183.11.239.32:808/hls/1/index.m3u8"]},
  2545. {"name":"广东·深圳财经生活","urls":["http://ye23.win/iptv/sztv.php?id=5"]},
  2546. {"name":"松视1","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/477"]},
  2547. {"name":"松视3","urls":["http://hk.crtv.store:80/h9LfGk6jVB/WXcrtv2020/479"]}
  2548. ]}],
  2549. "parses": [
  2550. {
  2551. "name": "Json并发",
  2552. "type": 2,
  2553. "url": "Parallel"
  2554. },
  2555. {
  2556. "name": "Json轮询",
  2557. "type": 2,
  2558. "url": "Sequence"
  2559. },
  2560. {
  2561. "name": "久久",
  2562. "type": 1,
  2563. "url": "https://json.hfyrw.com/mao.go?url=",
  2564. "ext": {
  2565. "flag": [
  2566. "ltnb",
  2567. "qiyi",
  2568. "爱奇艺",
  2569. "奇艺",
  2570. "youku",
  2571. "优酷",
  2572. "mgtv",
  2573. "芒果",
  2574. "letv",
  2575. "乐视"
  2576. ]
  2577. }
  2578. },
  2579. {
  2580. "name":"极速",
  2581. "type":1,
  2582. "url":"http://47.94.137.151:8089/?url="
  2583. },
  2584. {
  2585. "name": "戴拿解析",
  2586. "type": 1,
  2587. "url": "https://www.daina.hk/api/?key=RXpzyrbMFYySN0sNps&url=",
  2588. "ext": {
  2589. "flag": [
  2590. "qq",
  2591. "腾讯",
  2592. "qiyi",
  2593. "爱奇艺",
  2594. "奇艺",
  2595. "youku",
  2596. "优酷",
  2597. "sohu",
  2598. "搜狐",
  2599. "letv",
  2600. "乐视",
  2601. "mgtv",
  2602. "芒果",
  2603. "CL4K",
  2604. "renrenmi",
  2605. "ltnb",
  2606. "xigua"
  2607. ]
  2608. }
  2609. },
  2610. {"name": "解析05","type": 1,"url": "http://jx.ledu8.cn/api/?key=P8QSgO61p1MpHV2ALn&url="},
  2611. {"name":"02","type":1,"url":"http://106.52.51.138:52013/lt.php?url=","ext":{"flag":["ltnb"]}},
  2612. {"name":"04","type":1,"url":"https://jx.300ys.xyz/json/m3u8.php/?url=","ext":{"flag":["ftqp4","xuanfeng"]}},
  2613. {"name":"05","type":1,"url":"http://jx.300ys.xyz/json/m3u8.php/?url=","ext":{"flag":["zy1080","xkys"]}},
  2614. {"name":"07","type":1,"url":"https://ltnb.jeeves.vip/home/api?type=ys&uid=2492729&key=bkmopwEFMNQSUWXZ67&url=","ext":{"flag":["ltnb","ziqie"]}},
  2615. {"name":"08","type":1,"url":"http://jx.laodi.xyz:6699/api.php/user/jx?uid=4&ldkey=BLsUKYVZiWdmQc7bbpT3&url=","ext":{"flag":["laodim3u8"]}},
  2616. {"name":"09","type":1,"url":"http://ts.yjhan.com:8090/api/?key=Y4GefMCIQJz23mc06R&url=","ext":{"flag":["CL4K"]}},
  2617. {"name":"11","type":1,"url":"http://ts.yjhan.com:8090/api/?key=DSQFgXdmj9xkDyiXdr&url=","ext":{"flag":["CL4K"]}},
  2618. {"name":"12","type":1,"url":"http://ts.yjhan.com:8090/api/?key=P6XfOl9hD3LpqOFdRJ&url=","ext":{"flag":["CL4K"]}},
  2619. {"name":"13","type":1,"url":"https://yun.nbjx.vip:4399/json/?uid=6&tokey=befhmoqFHMOQRTUXZ7&url=","ext":{"flag":["qiyi","爱奇艺","奇艺"]}},
  2620. {"name":"14","type":1,"url":"https://ltnb.jeeves.vip/home/api?type=ys&uid=2509623&key=glnpyADKLMNOTU0249&url=","ext":{"flag":["ltnb","ziqie"]}},
  2621. {"name":"15","type":1,"url":"https://jx.300ys.xyz/json/jh.php/?url=","ext":{"flag":["youku","优酷","qiyi","爱奇艺","奇艺","renrenmi","qq","腾讯","letv","乐视"]}},
  2622. {"name":"16","type":1,"url":"http://ts.yjhan.com:8090/api/?key=njU0bfiF05eODFfktq&url=","ext":{"flag":["CL4K"]}},
  2623. {"name":"17","type":1,"url":"https://yun.nbjx.vip:4399/json/?uid=5&tokey=ikmnorsvxyzCFKQU59&url=","ext":{"flag":["qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","letv","乐视"]}},
  2624. {"name":"18","type":1,"url":"https://ltnb.jeeves.vip/home/api?type=ys&uid=2753644&key=bdgipszEOPQUXZ3569&url=","ext":{"flag":["ltnb","longteng"]}},
  2625. {"name":"20","type":1,"url":"http://ts.yjhan.com:8090/api/?key=yNSLsBLOaUkKp2kZ6i&url=","ext":{"flag":["CL4K"]}},
  2626. {"name":"22","type":1,"url":"http://ys.ling00.cn/json/?url=","ext":{"flag":["CL4K"]}},
  2627. {"name":"23","type":1,"url":"https://languangyingshiziyuan.1080zy.top/longteng.php/?url=","ext":{"flag":["ltnb"]}},
  2628. {"name":"28","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=1589472&key=aehjpzAHILOPQRU456&url=","ext":{"flag":["ltnb"]}},
  2629. {"name":"29","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=461939&key=adfgilmotCEPRSXY06&url=","ext":{"flag":["ltnb"]}},
  2630. {"name":"30","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=1136443&key=bhijopryzBJKLMSUX8&url=","ext":{"flag":["ltnb"]}},
  2631. {"name":"32","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=1427917&key=bdfilpqsxzDEGHRW04&url=","ext":{"flag":["ltnb"]}},
  2632. {"name":"33","type":1,"url":"https://jf.1080p.icu/home/api?type=dsp&uid=147565&key=adilmopuBEFJNUV067&url=","ext":{"flag":["wuduzy"]}},
  2633. {"name":"35","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=803828&key=cdefimpzDQTUW23679&url=","ext":{"flag":["ltnb"]}},
  2634. {"name":"36","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=1284948&key=bdehjlqtDEHJPZ0156&url=","ext":{"flag":["ltnb","longteng"]}},
  2635. {"name":"48","type":1,"url":"http://a.dxzj88.com/ddzy/dd.php?url=","ext":{"flag":["duoduozy"]}},
  2636. {"name":"49","type":1,"url":"http://23.224.174.74:5577/home/api?type=ys&uid=19722&key=aghknrsvxCDEGNRSUZ&url=","ext":{"flag":["qiyi","爱奇艺","奇艺","pptv","PPTV","qq","腾讯"]}},
  2637. {"name":"51","type":1,"url":"https://vip.xfyun.one/home/api?type=ys&uid=2581923&key=aefiklotwzCEFHJO48&url=","ext":{"flag":["xfyun"]}},
  2638. {"name":"52","type":1,"url":"https://xrjson.qd234.cn/home/api?type=ys&uid=366750&key=afgrstxFGHJKLMQVX1&url=","ext":{"flag":["ltnb","xueren","renrenmi"]}},
  2639. {"name":"55","type":1,"url":"http://json.1920lgzy.top/api/?key=K6ROZoQ9Y5FxzkdgTT&url=","ext":{"flag":["1920l","qiyi","爱奇艺","奇艺"]}},
  2640. {"name":"56","type":1,"url":"https://vip.aiaine.com/api/?key=pJiKdUKoatLiVha0el&url=","ext":{"flag":["miaoparty","miaoparty3"]}},
  2641. {"name":"57","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=123503&key=ghinorsuvBCMOQTY68&url=","ext":{"flag":["ziqie","qiyi","爱奇艺","奇艺","qq","腾讯","mgtv","芒果"]}},
  2642. {"name":"58","type":1,"url":"http://jx.yinliub.cn/home/api?type=ys&uid=512130&key=dinstuwBGJRTUY0369&url=","ext":{"flag":["ltnb","qq","腾讯","qiyi","爱奇艺","奇艺","letv","乐视","rx","youku","优酷","mgtv","芒果"]}},
  2643. {"name":"59","type":1,"url":"http://jf.tcspvip.com:246/api/?key=Yz4WsVTuG4PaM07i0f&url=","ext":{"flag":["1920l","qiyi","爱奇艺","奇艺"]}},
  2644. {"name":"60","type":1,"url":"https://www.aiaine.com/api/?key=e4keFpymfY5keNsavC&url=","ext":{"flag":["qq","腾讯","qiyi","爱奇艺","奇艺","pptv","PPTV","mgtv","芒果","youku","优酷"]}},
  2645. {
  2646. "name": "4433解析",
  2647. "url": "https://vip.parwix.com:4433/player/?url="
  2648. },
  2649. {
  2650. "name": "ok解析",
  2651. "url": "https://okjx.cc/?url="
  2652. },
  2653. {
  2654. "name": "大鱼解析",
  2655. "url": "https://jx.yizz.top/?url="
  2656. },
  2657. {
  2658. "name": "百淘解析",
  2659. "url": "http://ys.58g8.com/1/?url="
  2660. },
  2661. {
  2662. "name": "8090",
  2663. "url": "http://ts.yjhan.com:8090/api/?type=app&key=43yVlZDaJg7dYH3DZi&url="
  2664. },
  2665. {
  2666. "name": "555解析",
  2667. "url": "https://jhpc.manduhu.com/player/?url="
  2668. },
  2669. {
  2670. "name": "蓝光解析",
  2671. "url": "https://www.daga.cc/vip1/?url="
  2672. },
  2673. {
  2674. "name": "人人迷解析",
  2675. "url": "https://jx.renrenmi.cc/?url="
  2676. },
  2677. {
  2678. "name": "2090解析",
  2679. "url": "https://m2090.com/?url="
  2680. },
  2681. {
  2682. "name": "优亿解析",
  2683. "url": "https://jx.youyitv.com/?url="
  2684. },
  2685. {
  2686. "name": "猪蹄解析1",
  2687. "url": "https://api.iztyy.com/jiexi/?url="
  2688. },
  2689. {
  2690. "name": "猪蹄解析2",
  2691. "url": "https://jx.iztyy.com/svip/?url="
  2692. },
  2693. {
  2694. "name": "猪蹄解析3",
  2695. "url": "https://jx.iztyy.com/Bei/?url="
  2696. },
  2697. {
  2698. "name": "parwix解析",
  2699. "url": "https://jx.parwix.com:4433/player/?url="
  2700. },
  2701. {
  2702. "name": "17k云",
  2703. "url": "http://17kyun.com/api.php?url="
  2704. },
  2705. {
  2706. "name": "全能VIP",
  2707. "url": "https://jx.cxk8.com?v="
  2708. },
  2709. {
  2710. "name": "WdsEcsxs",
  2711. "url": "https://wds.ecsxs.com/220311.html?url="
  2712. },
  2713. {
  2714. "name": "纯净解析",
  2715. "url": "https://z1.m1907.cn/?jx="
  2716. },
  2717. {
  2718. "name": "老板解析",
  2719. "type": 1,
  2720. "url": "http://ck.laobandq.com/3515240842.php?pltfrom=1100&url=",
  2721. "ext": {
  2722. "flag": [
  2723. "qq",
  2724. "腾讯",
  2725. "qiyi",
  2726. "爱奇艺",
  2727. "奇艺",
  2728. "youku",
  2729. "优酷",
  2730. "sohu",
  2731. "搜狐",
  2732. "letv",
  2733. "乐视",
  2734. "mgtv",
  2735. "芒果",
  2736. "CL4K",
  2737. "renrenmi",
  2738. "ltnb",
  2739. "xigua"
  2740. ]
  2741. }
  2742. },
  2743. {
  2744. "name": "VIP影院",
  2745. "type": 1,
  2746. "url": "http://42.157.128.85:880/analysis/json/?uid=2233&my=cdeghlnqswxETUX356&url=",
  2747. "ext": {
  2748. "flag": [
  2749. "qq",
  2750. "腾讯",
  2751. "letv",
  2752. "乐视",
  2753. "mgtv",
  2754. "芒果",
  2755. "youku",
  2756. "优酷",
  2757. "qiyi",
  2758. "iqiyi",
  2759. "爱奇艺",
  2760. "奇艺"
  2761. ]
  2762. }
  2763. },
  2764. {
  2765. "name": "酷秒视界",
  2766. "type": 1,
  2767. "url": "https://json.nxflv.com/?uid=14781518&key=bcdqsuyABEGIJKLSUZ&url=",
  2768. "ext": {
  2769. "flag": [
  2770. "qq",
  2771. "腾讯",
  2772. "letv",
  2773. "乐视",
  2774. "mgtv",
  2775. "芒果",
  2776. "youku",
  2777. "优酷",
  2778. "qiyi",
  2779. "iqiyi",
  2780. "爱奇艺",
  2781. "奇艺"
  2782. ]
  2783. }
  2784. },
  2785. {"name":"4K影院","type":1,"url":"http://47.100.138.210:91/home/api?type=ys&uid=7593435&key=ehortuyAHMNQTWX457&url=","ext":{"flag":["qiyi","爱奇艺","奇艺","qq","腾讯","youku","优酷","pptv","PPTV","letv","乐视","mgtv","芒果"]}},
  2786. {"name" : "淘影B","type":1,"url" : "http://jx.1080jx.top/jxvip/?url="},
  2787. {
  2788. "name": "02",
  2789. "type": 1,
  2790. "url": "https://sbsb.i8k.cc/?url="
  2791. },
  2792. {
  2793. "name": "03",
  2794. "type": 1,
  2795. "url": "https://jx.xuanqi.pro/?url="
  2796. },
  2797. {
  2798. "name": "盘古解析",
  2799. "type": 1,
  2800. "url": "https://json.pangujiexi.com:12345/json.php?url=",
  2801. "ext": {
  2802. "flag": [
  2803. "qq",
  2804. "腾讯",
  2805. "qiyi",
  2806. "爱奇艺",
  2807. "奇艺",
  2808. "youku",
  2809. "优酷",
  2810. "mgtv",
  2811. "芒果",
  2812. "sohu"
  2813. ]
  2814. }
  2815. },
  2816. {"name":"蓝光视频","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1931000&key=gktuvyzABEORSYZ135&url="},
  2817. {
  2818. "name": "06",
  2819. "type": 1,
  2820. "url": "http://app.jhys.top/1080kan/fuck.php?url="
  2821. },
  2822. {
  2823. "name": "07",
  2824. "type": 1,
  2825. "url": "https://app.json.suoyo.cc/jh.php?url="
  2826. },
  2827. {
  2828. "name": "09",
  2829. "type": 1,
  2830. "url": "http://42.157.128.15:8899/fuck.php?url="
  2831. },
  2832. {
  2833. "name": "11",
  2834. "type": 1,
  2835. "url": "https://j.bcwzg.com/xg/?url="
  2836. },
  2837. {
  2838. "name": "飓风影视",
  2839. "type": 1,
  2840. "url": "https://vvip.funsline.cn/api/?key=MPbC1MDs0vP0cKKOoV&url=",
  2841. "ext": {
  2842. "flag": [
  2843. "youku",
  2844. "优酷",
  2845. "qiyi",
  2846. "爱奇艺",
  2847. "奇艺",
  2848. "qq",
  2849. "腾讯"
  2850. ]
  2851. }
  2852. },
  2853. {
  2854. "name": "江湖1080直解",
  2855. "type": 1,
  2856. "url": "http://api.vip123kan.vip/?url=",
  2857. "ext": {
  2858. "flag": [
  2859. "qq",
  2860. "腾讯",
  2861. "qiyi",
  2862. "爱奇艺",
  2863. "奇艺",
  2864. "youku",
  2865. "优酷",
  2866. "sohu"
  2867. ]
  2868. }
  2869. },
  2870. {
  2871. "name": "RongXingVR",
  2872. "type": 1,
  2873. "url": "https://vip.rongxingvr.top/api/?key=JJEZkZIhzkA4cUtBfR&url=",
  2874. "ext": {
  2875. "flag": [
  2876. "qq",
  2877. "腾讯",
  2878. "qiyi",
  2879. "爱奇艺",
  2880. "奇艺",
  2881. "youku",
  2882. "优酷",
  2883. "sohu",
  2884. "pptv",
  2885. "PPTV",
  2886. "bilibili",
  2887. "哔哩哔哩",
  2888. "哔哩",
  2889. "renrenmi",
  2890. "rx",
  2891. "rongxing"
  2892. ]
  2893. }
  2894. },
  2895. {
  2896. "name": "江湖云",
  2897. "type": 1,
  2898. "url": "https://jx.ncxmid.cn/sb/?url=",
  2899. "ext": {
  2900. "flag": [
  2901. "qq",
  2902. "腾讯",
  2903. "qiyi",
  2904. "爱奇艺",
  2905. "奇艺",
  2906. "youku",
  2907. "优酷",
  2908. "mgtv",
  2909. "芒果",
  2910. "pptv",
  2911. "PPTV"
  2912. ]
  2913. }
  2914. },
  2915. {
  2916. "name": "喵派1",
  2917. "type": 0,
  2918. "url": "https://vip.aiaine.com/api/?type=app&key=ESnBC3t7IxnnHAziyU&url=",
  2919. "ext": {
  2920. "flag": [
  2921. "ltnb",
  2922. "renrenmi",
  2923. "miaoparty",
  2924. "miaoparty2",
  2925. "miaoparty3",
  2926. "rx",
  2927. "rongxing",
  2928. "xueren",
  2929. "xfy"
  2930. ]
  2931. }
  2932. },
  2933. {
  2934. "name": "喵派2",
  2935. "type": 0,
  2936. "url": "https://vip.neenl.com/?url=",
  2937. "ext": {
  2938. "flag": [
  2939. "ltnb",
  2940. "renrenmi",
  2941. "miaoparty",
  2942. "miaoparty2",
  2943. "miaoparty3",
  2944. "rx",
  2945. "rongxing",
  2946. "xueren",
  2947. "xfy"
  2948. ]
  2949. }
  2950. },
  2951. {
  2952. "name": "喵派3",
  2953. "type": 0,
  2954. "url": "https://miaoparty.com/dmplay/?url=",
  2955. "ext": {
  2956. "flag": [
  2957. "ltnb",
  2958. "renrenmi",
  2959. "miaoparty",
  2960. "miaoparty2",
  2961. "miaoparty3",
  2962. "rx",
  2963. "rongxing",
  2964. "xueren",
  2965. "xfy"
  2966. ]
  2967. }
  2968. },
  2969. {
  2970. "name": "喵派4",
  2971. "type": 0,
  2972. "url": "https://www.iqiyi.one/dmplay/?url=",
  2973. "ext": {
  2974. "flag": [
  2975. "ltnb",
  2976. "renrenmi",
  2977. "miaoparty",
  2978. "miaoparty2",
  2979. "miaoparty3",
  2980. "rx",
  2981. "rongxing",
  2982. "xueren",
  2983. "xfy"
  2984. ]
  2985. }
  2986. },
  2987. {
  2988. "name": "喵派5",
  2989. "type": 0,
  2990. "url": "https://www.ailemo.me/dmplay/?url=",
  2991. "ext": {
  2992. "flag": [
  2993. "ltnb",
  2994. "renrenmi",
  2995. "miaoparty",
  2996. "miaoparty2",
  2997. "miaoparty3",
  2998. "rx",
  2999. "rongxing",
  3000. "xueren",
  3001. "xfy"
  3002. ]
  3003. }
  3004. },
  3005. {
  3006. "name": "搬运工资源站",
  3007. "type": 1,
  3008. "url": "https://jx.kupu.cc/json/jxbanyung.php/?url=",
  3009. "ext": {
  3010. "flag": [
  3011. "ltnb",
  3012. "qq",
  3013. "腾讯",
  3014. "qiyi",
  3015. "爱奇艺",
  3016. "奇艺",
  3017. "youku",
  3018. "优酷",
  3019. "mgtv",
  3020. "芒果",
  3021. "letv",
  3022. "乐视",
  3023. "sohu",
  3024. "pptv",
  3025. "PPTV",
  3026. "bilibili",
  3027. "哔哩哔哩",
  3028. "哔哩"
  3029. ]
  3030. }
  3031. },
  3032. {
  3033. "name": "追剧猫",
  3034. "type": 0,
  3035. "url": "https://jx.zjmiao.com/?url=",
  3036. "ext": {
  3037. "flag": [
  3038. "qq",
  3039. "腾讯",
  3040. "qiyi",
  3041. "爱奇艺",
  3042. "奇艺",
  3043. "youku",
  3044. "优酷",
  3045. "mgtv",
  3046. "芒果",
  3047. "sohu",
  3048. "ltnb",
  3049. "renrenmi",
  3050. "xfy",
  3051. "xfyun",
  3052. "rongxing",
  3053. "rx"
  3054. ]
  3055. }
  3056. },
  3057. {
  3058. "name": "快云影音",
  3059. "type": 1,
  3060. "url": "https://jhjx.kuanjv.com/newky/?url=",
  3061. "ext": {
  3062. "flag": [
  3063. "qq",
  3064. "腾讯",
  3065. "qiyi",
  3066. "爱奇艺",
  3067. "奇艺",
  3068. "youku",
  3069. "优酷",
  3070. "bilibili",
  3071. "哔哩哔哩",
  3072. "哔哩",
  3073. "letv",
  3074. "乐视",
  3075. "sohu"
  3076. ]
  3077. }
  3078. },
  3079. {
  3080. "name": "大熊影视",
  3081. "type": 1,
  3082. "url": "http://42.157.128.85:880/analysis/json/?uid=1735&my=bcdgkmpvxADJLNUYZ8&url=",
  3083. "ext": {
  3084. "flag": [
  3085. "youku",
  3086. "优酷",
  3087. "qq",
  3088. "腾讯",
  3089. "qiyi",
  3090. "爱奇艺",
  3091. "奇艺"
  3092. ]
  3093. }
  3094. },
  3095. {
  3096. "name":"专用1",
  3097. "type":1,
  3098. "url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1285201&key=bcikqtwxyADEGKUX36&url="
  3099. },
  3100. {
  3101. "name":"专用2",
  3102. "type":1,
  3103. "url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1494542&key=ijmqvwxABEHILMOT48&url="
  3104. },
  3105. {
  3106. "name":"专用4",
  3107. "type":1,
  3108. "url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1095368&key=cdgjpsuDFLNRTUVY03&url="
  3109. },
  3110. {
  3111. "name":"专用6",
  3112. "type":1,
  3113. "url":"https://api.qq755758836.xyz/295m3u8.php?url="
  3114. },
  3115. {
  3116. "name": "猫群专用4",
  3117. "type": 0,
  3118. "url": "https://play.tkys.tv/jh/longteng.php/?url="
  3119. }, {
  3120. "name": "猫群专用6",
  3121. "type": 1,
  3122. "url": "https://api.parwix.com:4433/analysis/json/?uid=556&my=acfhjoprtuvxKLMQ12&url="
  3123. }, {
  3124. "name": "猫群专用7",
  3125. "type": 1,
  3126. "url": "https://ysjx.jikezhuji.com/api/?key=80gdewY7tQriIwA6hw&url="
  3127. },
  3128. {"name":"Wuduzy","type":1,"url":"https://aa.xkys.tv/json.php?url=","ext":{"flag":["wuduzy"]}},
  3129. {"name":"bilibili","type":1,"url":"https://vip.23at.cn/home/api?type=ys&uid=4883852&key=adfimsvxzDKNOVX389&url=","ext":{"flag":["bilibili"]}},
  3130. {"name":"Rx","type":1,"url":"https://vvip.funsline.cn/api/?key=JNiddoRwmLBYehxnFq&url=","ext":{"flag":["rx","youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"]}},
  3131. {"name":"leduo","type":1,"url":"https://api.ldjx.cc/wp-api/getvodurl.php?token=1001&vid=","ext":{"flag":["leduo"]}},
  3132. {"name":"duoduozy2","type":1,"url":"https://a.dxzj88.com/jxjx/dd.php?url=","ext":{"flag":["duoduozy"]}},
  3133. {"name":"renrenmi","type":1,"url":"https://kuba.renrenmi.cc:2266/api/?key=02wsrxJzuGkI4C8pQ5&url=","ext":{"flag":["renrenmi"]}},
  3134. {"name":"renrenmi2","type":1,"url":"https://a.dxzj88.com/jxrrm/jiami.php?url=","ext":{"flag":["renrenmi"]}},
  3135. {"name":"renrenmi3","type":1,"url":"https://sz.dxzj88.com/jxrjrm/jiaomi.php?url=","ext":{"flag":["renrenmi"]}},
  3136. {"name":"CL4K","type":1,"url":"http://jx.yjhan.com:8090/home/api?type=ys&uid=268886&key=afghilnyEGKPRTVY56&url=","ext":{"flag":["CL4K"]}},
  3137. {"name":"LTRX","type":1,"url":"https://svip.spchat.top/api/?type=ys&key=bKemW41JnxmQb4l67h&url=","ext":{"flag":["ltnb","rx"]}},
  3138. {"name":"Pro2","type":1,"url":"https://vip.rongxingvr.top/api/?type=ys&key=JJEZkZIhzkA4cUtBfR&url=","ext":{"flag":["ltnb","rx","qiyi","爱奇艺","qq","奇艺","sohu","letv","youku","优酷","mgtv","芒果"]}},
  3139. {"name":"1","type":1,"url":"https://svip.rongxingvr.top/api/?key=Wyl9CjTyelP0UOaECD&url=","ext":{"flag":["youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"]}},
  3140. {"name":"3","type":1,"url":"https://www.aiaine.com/api/?key=kVqmG5dAQ5dZTcECw8&url=","ext":{"flag":["youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"]}},
  3141. {"name":"4","type":1,"url":"https://svip.rongxingvr.top/api/?key=niBgMGXVdCQhsmeEBK&url=","ext":{"flag":["youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"]}},
  3142. {"name":"5","type":1,"url":"https://8700.top/api/?type=app&key=hdJPNHumGa905uqoee&url=","ext":{"flag":["ltnb","youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"]}},
  3143. {"name":"6","type":1,"url":"https://svip.iremind.me/api/?key=LWYifrJ9QrCCrtn06g&url=","ext":{"flag":["ltnb","youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"]}},
  3144. {"name":"8","type":1,"url":"https://app.iminna.com/jx/?url=","ext":{"flag":["youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"]}},
  3145. {"name":"xfyun云","type":1,"url":"https://vip.xfyun.one/home/api?type=ys&uid=2581923&key=ceijpquvBMOSUVXZ23&url=","ext":{"flag":["xfyun"]}},
  3146. {"name":"影视达人01","type":1,"url":"http://svip.cygc.xyz/api/?key=sAJihNO41tPHN3szy1&url=","ext":{"flag":["ltnb","renrenmi","xigua","qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","mgtv","芒果","letv","乐视","pptv","PPTV","sohu","bilibili","哔哩哔哩","哔哩"]}},
  3147. {"name":"J02","type":1,"url":"https://svip.rongxingvr.top/api/?key=B26J6jO5MOnjUv3GqW&url=","ext":{"flag":["rx","renrenmi","qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","mgtv","芒果","bilibili","哔哩哔哩","哔哩"]}},
  3148. {"name":"aiaine02","type":1,"url":"https://vip.aiaine.com/api/?key=8FN8gNAySnvJiMllxZ&url=","ext":{"flag":["ltnb","renrenmi","weiyun"]}},
  3149. {"name":"喵派对资源3","type":1,"url":"https://vip.aiaine.com/api/?key=fOWaGgFU45zlIjvbHI&url=","ext":{"flag":["ltnb","renrenmi"]}},
  3150. {"name":"喵派对资源2","type":1,"url":"https://svip.iremind.me/api/?key=A5Db8HF8c8FSIOR6R1&url=","ext":{"flag":["renrenmi","qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","mgtv","芒果","bilibili","哔哩哔哩","哔哩","sohu"]}},
  3151. {"name":"leduotv","type":1,"url":"https://api.leduotv.com/wp-api/getvodurl.php?vid=","ext":{"flag":["leduo"]}},
  3152. {"name":"康耀影视6","type":1,"url":"http://175.178.109.153:615//api/?key=6OCzkXnrNIxhVxrM8G&url=","ext":{"flag":["miaoparty","qiyi","爱奇艺","奇艺","qq","腾讯","youku","优酷","mgtv","芒果","letv","乐视","pptv","PPTV","miaoparty3"]}},
  3153. {"name":"爱酷影视6","type":1,"url":"https://jb.vjiangbei.com/home/api?type=ys&uid=646808&key=gklpqrtwyDIJKMP467&url=","ext":{"flag":["qq","腾讯","letv","乐视","youku","优酷"]}},
  3154. {"name":"琅琊影视8","type":1,"url":"https://jf.96ym.cn/api/?key=13FXcA46Nzg4QeFHbq&url=","ext":{"flag":["ziqie","ltnb","youku","优酷","qiyi","爱奇艺","奇艺","qq","腾讯","letv","乐视"]}},
  3155. {"name":"天诚影视2","type":1,"url":"https://svip.renrenmi.cc:2222/api/?key=hWip8WQvRg7oniSF0M&url=","ext":{"flag":["qiyi","爱奇艺","奇艺"]}},
  3156. {"name":"南府追剧1","type":1,"url":"https://vvip.muxvip.com:8866/api/?key=xJvC19KWkxoyQO71hk&url=","ext":{"flag":["muxm3u8"]}},
  3157. {"name":"南府影视","type":1,"url":"https://vvip.muxvip.com:8866/api/?key=xVIWNjOvnxgmvrPgXO&url=","ext":{"flag":["muxm3u8"]}},
  3158. {"name":"天诚影视4","type":1,"url":"https://svip.cygc.xyz/api/?key=LHIDJlDFp1lPagfFwQ&url=","ext":{"flag":["qiyi","爱奇艺","奇艺"]}},
  3159. {"name":"天诚影视3","type":1,"url":"https://vvip.muxvip.com:8866/api/?key=7wk1FnMRDwAVTPDNAM&url=","ext":{"flag":["qiyi","爱奇艺","奇艺"]}},
  3160. {"name":"段友影视1","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=998036&key=afhlnuvzDJLMOX3689&url=","ext":{"flag":["qq","腾讯"]}},
  3161. {"name":"段友影视","type":1,"url":"https://api.qilin.best/home/api?type=ys&uid=2343358&key=cekpsuvxJKNOV34789&url=","ext":{"flag":["mgtv","芒果","qq","腾讯"]}},
  3162. {"name":"琅琊影视7","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=123503&key=ghinorsuvBCMOQTY68&url=","ext":{"flag":["ziqie","qiyi","爱奇艺","奇艺","qq","腾讯","mgtv","芒果"]}},
  3163. {"name":"小白动漫","type":1,"url":"http://121.62.60.222:1314/lt.php?url=","ext":{"flag":["ltnb","longteng"]}},
  3164. {"name":"爱看美剧1","type":1,"url":"https://play.akmeiju.cc:553/akmeiju.php?url=","ext":{"flag":["aikan"]}},
  3165. {"name":"麻瓜视频","type":1,"url":"https://kuba.renrenmi.cc:2266/api/?key=a2bSwx5iAGx1g2qn4h&url=","ext":{"flag":["renrenmi"]}},
  3166. {"name":"粉象视界","type":1,"url":"http://47.100.138.210:91/home/api?type=ys&uid=4476440&key=eghkvwxyFHORVX3478&url=","ext":{"flag":["mgtv","芒果","renrenmi","youku","优酷","qiyi","爱奇艺","奇艺"]}},
  3167. {"name":"益达影院6","type":1,"url":"https://jb.vjiangbei.com/home/api?type=ys&uid=281459&key=cfnoprCDJKLNPQTY34&url=","ext":{"flag":["ltnb","ziqie","qq","腾讯","youku","优酷","qiyi","爱奇艺","奇艺","mgtv","芒果","letv","乐视"]}},
  3168. {"name":"思乐影视1","type":1,"url":"https://jb.vjiangbei.com/home/api?type=ys&uid=2534396&key=ejovwzABDKTUXY1357&url=","ext":{"flag":["mgtv","芒果","qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷"]}},
  3169. {"name":"虎猫视频","type":1,"url":"https://humaosp.com/json.php?url=","ext":{"flag":["qq","腾讯"]}},
  3170. {"name":"DC影视","type":1,"url":"https://jb.vjiangbei.com/home/api?type=ys&uid=2219260&key=bcdjqBEFGLMPW01457&url=","ext":{"flag":["ziqie","ltnb","qq","腾讯"]}},
  3171. {"name":"粉象视界1","type":1,"url":"https://www.xinkanke.com/jiexi/go.php?url=","ext":{"flag":["ltnb"]}},
  3172. {"name":"大熊影视1","type":1,"url":"https://a.dxzj88.com/jianghujx/?url=","ext":{"flag":["qq","腾讯","youku","优酷","qiyi","爱奇艺","奇艺","bilibili","哔哩哔哩","哔哩","mgtv","芒果"]}},
  3173. {"name":"手指","type":1,"url":"https://a.dxzj88.com/ddzy/dd.php?url=","ext":{"flag":["miaoparty","qiyi","爱奇艺","奇艺","qq","腾讯","youku","优酷","mgtv","芒果","letv","乐视","pptv","PPTV","miaoparty3"]}},
  3174. {
  3175. "name": "云析",
  3176. "type":1,
  3177. "url": "https://jx.yparse.com/index.php?url="
  3178. }
  3179. ],
  3180. "flags": [ "youku","qq","iqiyi","qiyi","letv","sohu","tudou","pptv","mgtv","cctv","cntv","wasu","bilibili","xigua","1905","1920i","1920l","mim3u8","laodim3u8","leduo","CL4K","ltnb","rx","renrenmi","wuduyun","xueren","naifeimi","miaoparty","miaoparty2","miaoparty3","xfy","xfyun","x1play","fuckapp","duoduozy","ftqp2","ftqp3","ftqp4","ftqp5","wolong","atm"
  3181. ],
  3182. "ijk": [
  3183. {
  3184. "category": 1,
  3185. "name": "dns_cache_timeout",
  3186. "value": "600000000"
  3187. },
  3188. {
  3189. "group": "软解码",
  3190. "options": [
  3191. {
  3192. "category": 4,
  3193. "name": "opensles",
  3194. "value": "0"
  3195. },
  3196. {
  3197. "category": 4,
  3198. "name": "overlay-format",
  3199. "value": "842225234"
  3200. },
  3201. {
  3202. "category": 4,
  3203. "name": "framedrop",
  3204. "value": "1"
  3205. },
  3206. {
  3207. "category": 4,
  3208. "name": "soundtouch",
  3209. "value": "1"
  3210. },
  3211. {
  3212. "category": 4,
  3213. "name": "start-on-prepared",
  3214. "value": "1"
  3215. },
  3216. {
  3217. "category": 1,
  3218. "name": "http-detect-range-support",
  3219. "value": "0"
  3220. },
  3221. {
  3222. "category": 1,
  3223. "name": "fflags",
  3224. "value": "fastseek"
  3225. },
  3226. {
  3227. "category": 2,
  3228. "name": "skip_loop_filter",
  3229. "value": "48"
  3230. },
  3231. {
  3232. "category": 4,
  3233. "name": "reconnect",
  3234. "value": "1"
  3235. },
  3236. {
  3237. "category": 4,
  3238. "name": "max-buffer-size",
  3239. "value": "5242880"
  3240. },
  3241. {
  3242. "category": 4,
  3243. "name": "enable-accurate-seek",
  3244. "value": "0"
  3245. },
  3246. {
  3247. "category": 4,
  3248. "name": "mediacodec",
  3249. "value": "0"
  3250. },
  3251. {
  3252. "category": 4,
  3253. "name": "mediacodec-auto-rotate",
  3254. "value": "0"
  3255. },
  3256. {
  3257. "category": 4,
  3258. "name": "mediacodec-handle-resolution-change",
  3259. "value": "0"
  3260. },
  3261. {
  3262. "category": 4,
  3263. "name": "mediacodec-hevc",
  3264. "value": "0"
  3265. }
  3266. ]
  3267. },
  3268. {
  3269. "group": "硬解码",
  3270. "options": [
  3271. {
  3272. "category": 1,
  3273. "name": "dns_cache_timeout",
  3274. "value": "600000000"
  3275. },
  3276. {
  3277. "category": 4,
  3278. "name": "opensles",
  3279. "value": "0"
  3280. },
  3281. {
  3282. "category": 4,
  3283. "name": "overlay-format",
  3284. "value": "842225234"
  3285. },
  3286. {
  3287. "category": 4,
  3288. "name": "framedrop",
  3289. "value": "1"
  3290. },
  3291. {
  3292. "category": 4,
  3293. "name": "soundtouch",
  3294. "value": "1"
  3295. },
  3296. {
  3297. "category": 4,
  3298. "name": "start-on-prepared",
  3299. "value": "1"
  3300. },
  3301. {
  3302. "category": 1,
  3303. "name": "http-detect-range-support",
  3304. "value": "0"
  3305. },
  3306. {
  3307. "category": 1,
  3308. "name": "fflags",
  3309. "value": "fastseek"
  3310. },
  3311. {
  3312. "category": 2,
  3313. "name": "skip_loop_filter",
  3314. "value": "48"
  3315. },
  3316. {
  3317. "category": 4,
  3318. "name": "reconnect",
  3319. "value": "1"
  3320. },
  3321. {
  3322. "category": 4,
  3323. "name": "max-buffer-size",
  3324. "value": "5242880"
  3325. },
  3326. {
  3327. "category": 4,
  3328. "name": "enable-accurate-seek",
  3329. "value": "0"
  3330. },
  3331. {
  3332. "category": 4,
  3333. "name": "mediacodec",
  3334. "value": "1"
  3335. },
  3336. {
  3337. "category": 4,
  3338. "name": "mediacodec-auto-rotate",
  3339. "value": "1"
  3340. },
  3341. {
  3342. "category": 4,
  3343. "name": "mediacodec-handle-resolution-change",
  3344. "value": "1"
  3345. },
  3346. {
  3347. "category": 4,
  3348. "name": "mediacodec-hevc",
  3349. "value": "1"
  3350. }
  3351. ]
  3352. }
  3353. ],
  3354. "ads": [
  3355. "ttsp.tv",
  3356. "lgyy.cc",
  3357. "mimg.0c1q0l.cn",
  3358. "www.googletagmanager.com",
  3359. "www.google-analytics.com",
  3360. "mc.usihnbcq.cn",
  3361. "mg.g1mm3d.cn",
  3362. "mscs.svaeuzh.cn",
  3363. "cnzz.hhttm.top",
  3364. "tp.vinuxhome.com",
  3365. "cnzz.mmstat.com",
  3366. "www.baihuillq.com",
  3367. "s23.cnzz.com",
  3368. "z3.cnzz.com",
  3369. "c.cnzz.com",
  3370. "stj.v1vo.top",
  3371. "z12.cnzz.com",
  3372. "img.mosflower.cn",
  3373. "tips.gamevvip.com",
  3374. "ehwe.yhdtns.com",
  3375. "xdn.cqqc3.com",
  3376. "www.jixunkyy.cn",
  3377. "sp.chemacid.cn",
  3378. "hm.baidu.com",
  3379. "s9.cnzz.com",
  3380. "z6.cnzz.com",
  3381. "um.cavuc.com",
  3382. "mav.mavuz.com",
  3383. "wofwk.aoidf3.com",
  3384. "z5.cnzz.com",
  3385. "xc.hubeijieshikj.cn",
  3386. "tj.tianwenhu.com",
  3387. "xg.gars57.cn",
  3388. "k.jinxiuzhilv.com",
  3389. "cdn.bootcss.com",
  3390. "ppl.xunzhuo123.com",
  3391. "xomk.jiangjunmh.top",
  3392. "img.xunzhuo123.com",
  3393. "z1.cnzz.com",
  3394. "s13.cnzz.com",
  3395. "xg.huataisangao.cn",
  3396. "z7.cnzz.com",
  3397. "xg.huataisangao.cn",
  3398. "z2.cnzz.com",
  3399. "s96.cnzz.com",
  3400. "q11.cnzz.com",
  3401. "thy.dacedsfa.cn",
  3402. "xg.whsbpw.cn",
  3403. "s19.cnzz.com",
  3404. "z8.cnzz.com",
  3405. "s4.cnzz.com",
  3406. "f5w.as12df.top",
  3407. "ae01.alicdn.com",
  3408. "www.92424.cn",
  3409. "k.wudejia.com",
  3410. "vivovip.mmszxc.top",
  3411. "qiu.xixiqiu.com",
  3412. "cdnjs.hnfenxun.com",
  3413. "cms.qdwght.com"
  3414. ]
  3415. }