maotv5.txt 505 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883
  1. ##https://github.com/hd9211/maotv/blob/main/maotv3.txt
  2. {
  3. "spider": "https://gitlab.com/hstsws008/dizhi/-/raw/main/mao/custom_spider0413.jar",
  4. //"spider": "http://fj365.ml/0/0.txt?raw=true",
  5. //"spider": "https://sharertv.coding.net/p/mao/d/mao/git/raw/master/custom_spider.jar",
  6. //"spider": "https://litecucumber.coding.net/p/cat/d/config/git/raw/master/main_spider.txt",
  7. //"wallpaper":"https://picsum.photos/1080/",
  8. "sites": [{"key":"csp_Buka","name":"真不卡(爬虫)","type":3,"api":"csp_Buka","searchable":0,"quickSearch":0,"filterable":1},
  9. {"key":"快播云","name":"快播云","type":0,"api":"http://www.kuaibozy.com/api.php/provide/vod/at/xml/","playUrl":"","categories":["国产剧","港台剧","日韩剧","欧美剧","泰剧","综艺","动漫","动作片","喜剧片","爱情片","科幻片","恐怖片","剧情片","战争片","纪录片"]},
  10. {"key":"无尽资源","name":"无尽资源","type":1,"api":"https://wuzy9.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":1,"categories":[]},
  11. //{"key":"csp_YydsAli1","name":"YYDS阿里(爬蟲)","type":3,"api":"csp_YydsAli1","searchable":1,"quickSearch":1,"filterable":0},
  12. {"key":"M3U8TV资源","name":"M3U8TV资源","type":0,"api":"http://www.zycaiji.net:7788/api.php/provide/vod/at/xml","playUrl":"","searchable":1,"quickSearch":1,"categories":[]},
  13. {"key":"8090","name":"8090","type":0,"api":"http://zy.yilans.net:8090/api.php/provide/vod/at/xml","playUrl":"https://jx.renrenmi.cc/?url=","categories":["动作片","喜剧片","爱情片","科幻片","恐怖片","剧情片","战争片","国产剧","港台剧","日韩剧","欧美剧","惊悚片","魔幻片","冒险片","悬疑片","纪录片","犯罪片","微电影","其他片","动画片"]},
  14. {"key":"csp_Cokemv","name":"Cokemv(爬虫)","type":3,"api":"csp_Cokemv","searchable":1,"quickSearch":1,"filterable":1},
  15. //{"key":"csp_Nekk","name":"9E看看(爬虫)","type":3,"api":"csp_Nekk","searchable":1,"quickSearch":1,"filterable":1},
  16. //{"key":"csp_Djx","name":"瓜皮TV(爬虫)","type":3,"api":"csp_Djx","searchable":1,"quickSearch":1,"filterable":1},
  17. //{"key":"csp_Aidi","name":"爱迪(爬虫)","type":3,"api":"csp_Aidi","searchable":1,"quickSearch":1,"filterable":1},
  18. {"key":"csp_Auete","name":"Auete(爬虫)","type":3,"api":"csp_Auete","searchable":1,"quickSearch":0,"filterable":1},
  19. //{"key":"csp_Ysgc","name":"影视工厂(爬虫)","type":3,"api":"csp_Ysgc","searchable":1,"quickSearch":1,"filterable":1},
  20. //{"key":"csp_N0ys","name":"90影视(爬虫)","type":3,"api":"csp_N0ys","searchable":1,"quickSearch":1,"filterable":0},
  21. //{"key":"csp_Imaple","name":"枫林网(爬虫)","type":3,"api":"csp_Imaple","searchable":1,"quickSearch":1,"filterable":1},
  22. //{"key":"csp_Jumi","name":"剧迷(爬虫)","type":3,"api":"csp_Jumi","searchable":1,"quickSearch":1,"filterable":1},
  23. {"key":"csp_Juhi","name":"剧嗨(爬虫)","type":3,"api":"csp_Juhi","searchable":1,"quickSearch":1,"filterable":1},
  24. {"key":"csp_Enlienli","name":"嗯哩嗯哩(爬虫)","type":3,"api":"csp_Enlienli","searchable":1,"quickSearch":0,"filterable":1},
  25. //{"key":"人人迷","name":"人人迷","type":1,"api":"https://kuu.renrenmi.cc/api.php/provide/vod/?ac=list","playUrl":"https://jx.renrenmi.cc/?url=","searchable":1,"quickSearch":1,"categories":["动作片","喜剧片","爱情片","科幻片","剧情片","战争片","恐怖片","国产剧","港台剧","日韩剧","欧美剧","其他剧","综艺","动漫"]},
  26. //以下为xpath
  27. {"key":"csp_xpath_ctv","name":"冲TMTV","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable": 1,"ext": "https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/chongtmtv.json"},
  28. {"key":"csp_xpath_汉城影院","name":"汉城影院(XPMac)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/hancheng.json"},
  29. {"key":"csp_xpath_lanmei","name":"蓝莓影视(XP)","type":3,"api":"csp_XPathFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/lanmei.json"},
  30. {"key":"csp_xpath_789kp","name":"789看片(XPMac)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/789kp.json"},
  31. {"key":"csp_xpath_348z","name":"348电影(XPMac)","type":3,"api":"csp_XPathFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/348z.json"},
  32. {"key":"csp_xpath_dmntv","name":"狐灵影视(XPMac)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/dmntv.json"},
  33. {"key":"if101资源","name":"if101(海外推荐)","type":0,"api":"https://demo.if101.tv/api.php/provide/vod/at/xml","searchable":1,"quickSearch":0,"filterable":0},
  34. {"key":"csp_xpath_aidi_yh","name":"爱迪影视(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/aidi.json"},
  35. {"key":"csp_xpath_axx2_yh","name":"爱西西影视(XP)","type":3,"api":"csp_XPathFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/Aixixi.json"},
  36. {"key":"csp_xpath_auete_yh","name":"Auete影视(XP)","type":3,"api":"csp_XPathFilter","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/auete.json"},
  37. {"key":"csp_xpath_cokemv_yh","name":"Cokemv(XP)","type":3,"api":"csp_XPathFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/cokemv.json"},
  38. {"key":"csp_appysv2_CJT影院_yh","name":"CJT影院(M2)","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.cjt521.com/api.php/v1.vod"},
  39. {"key":"Gimy","name":"GimyTV(XPMac)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/Gimy.json"},
  40. {"key":"csp_xpath_libv_yh","name":"Libvio(XPMac)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/libv.json"},
  41. {"key":"csp_xpath_lezhutv_yh","name":"乐猪TV(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/lezhutv.json"},
  42. //{"key":"csp_xpath_saohuotv_yh","name":"骚火电影(XP)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/saohuotv2.json"},
  43. {"key":"csp_xpath_zxzj_yh","name":"在线之家(XPMac)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/zxzj.json"},
  44. {"key":"csp_xpath_pianba_yh","name":"片吧影院(XPMac)","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/pianba.json"},
  45. {"key":"人人迷蓝光","name":"人人迷蓝光","type":1,"api":"https://koko.renrenmi.cc/api.php/provide/vod/","playUrl":"https://www.66kdy.com/dmplay/?url=","searchable":1,"quickSearch":1,"categories":[]},
  46. {"key":"影世界","name":"影世界","type":1,"api":"https://video.yingworld.vip/api.php/provide/vod/","playUrl":"https://jx.zjmiao.com/?url=","searchable":1,"quickSearch":1,"categories":["电影","连续剧","综艺","动漫"]},
  47. {"key":"csp_xpath_age_yh","name":"AGE动漫(XP)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/agefans.json"},
  48. {"key":"csp_xpath_dm84_yh","name":"动漫巴士(XP)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/dm84.json"},
  49. {"key":"csp_xpath_dmw_yh","name":"动漫岛(XPMac)","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/dmw.json"},
  50. {"key":"csp_yinghua_yh","name":"樱花动漫(XP)","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/yinghua2.json"},
  51. {"key":"嘛哩嘛哩","name":"嘛哩嘛哩","type":1,"api":"https://malimali3.com/api.php/provide/vod/","playUrl":"https://jx.parwix.com:4433/player/?url=","searchable":1,"quickSearch":1,"categories":["国产动漫","日韩动漫","欧美动漫","港台动漫"]},
  52. {"key":"一拳动漫","name":"一拳动漫","type":1,"api":"http://47.97.68.224/api.php/provide/vod/","playUrl":"json:http://103.40.246.5:6881/byg/json.php?url=","searchable":1,"quickSearch":1,"categories":[]},
  53. //catvod
  54. {"key":"csp_xpath_94sm_L","name":"@94神马_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/94sm.json"},
  55. //{"key":"csp_xpath_jpys_L","name":"@极品_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/jpys.json"},
  56. {"key":"csp_xpath_age_L","name":"@AGE动漫_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/agefans.json"},
  57. //{"key":"csp_xpath_jpyszl_L","name":"@极品直链_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/jpys.json"},
  58. {"key":"csp_xpath_cjt_L","name":"@CJT影视_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/cjtys.json"},
  59. {"key":"csp_xpath_jumi_L","name":"@剧迷TV_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Jumi.json"},
  60. {"key":"csp_xpath_tvci_L","name":"@大师兄_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/tvci.json"},
  61. {"key":"csp_xpath_duboku_L","name":"@独播库_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Duboku.json"},
  62. {"key":"csp_xpath_duboku2_L","name":"@独播库2_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/duboku2.json"},
  63. {"key":"csp_xpath_saohuotv_L","name":"@骚火电影_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/saohuotv2.json"},
  64. {"key":"csp_xpath_dd520_L","name":"@多多_XP_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/dd520.json"},
  65. {"key":"csp_xpath_1010dy_L","name":"@1010dy_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/1010dy.json"},
  66. {"key":"csp_xpath_dm84_L","name":"@动漫巴士_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/dm84.json"},
  67. {"key":"csp_xpath_egg_L","name":"@蛋蛋影院_L","type":3,"api":"csp_XPathEgg","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/egg.json"},
  68. //{"key":"csp_yysdali_L","name":"@YYDS影视_L","type":3,"api":"csp_YydsAli","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/yyds.json"},
  69. {"key":"csp_xpath_555_L","name":"@555电影_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/555.json"},
  70. {"key":"csp_xpath_sky4k_L","name":"@天空4K_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Sky4k.json"},
  71. //{"key":"csp_xpath_4kyu_L","name":"@一只鱼4K_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/4kyu.json"},
  72. {"key":"csp_xpath_miniku_L","name":"@迷你库_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/miniku.json"},
  73. {"key":"csp_xpath_Ole_L","name":"@欧乐_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/olevod.json"},
  74. {"key":"csp_xpath_pianba_L","name":"@片吧影院_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/pianba.json"},
  75. //{"key":"csp_xpath_vipmv_L","name":"@追剧达人_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/vipmv.json"},
  76. {"key":"csp_xpath_gimytv_L","name":"@GimyTV_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Gimy.json"},
  77. {"key":"csp_xpath_Djx_L","name":"@瓜皮TV_L","type":3,"api":"csp_XPathFilter","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Djx.json"},
  78. {"key":"csp_xpath_lezhutv_L","name":"@乐猪TV_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/lezhutv.json"},
  79. {"key":"csp_xpath_Onedian_L","name":"@ONE影院_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/onedianshi.json"},
  80. {"key":"csp_yinghua_L","name":"@樱花动漫_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/yinghua.json"},
  81. {"key":"csp_xpath_xkys_L","name":"@星空_L","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/xkys.json"},
  82. {"key":"csp_xpath_axx_L","name":"@爱西西_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Aixixi.json"},
  83. {"key":"csp_xpath_fantuan_L","name":"@饭团_L","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/fantuan.json"},
  84. //{"key":"csp_xpath_Renjie_L","name":"@唐人街_L","type":3,"api":"csp_XPathMacFilter","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Renjie.json"},
  85. {"key":"csp_xpath_Nfuxs_L","name":"@南府_L","type":3,"api": "csp_XPathFilter","searchable":1,"quickSearch":0,"filterable":1,"ext": "https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/Nfuxs.json"},
  86. //{"key":"csp_xpath_cctv68_y","name":"狐狸影视_yh","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/cctv68.json"},
  87. //{"key":"csp_xpath_1090ys2_y","name":"1090影视_yh","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/1090ys2.json"},
  88. {"key":"csp_xpath_meiju56_y","name":"美剧网_yh","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/meiju56.json"},
  89. {"key":"csp_xpath_lranc_y","name":"天天影视_yh","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/lranc.json"},
  90. {"key":"csp_xpath_niumatv_h","name":"@牛马TV_08","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/hstsws008/mao@master/xpath/niumatv.json"},
  91. {"key":"csp_xpath_nmys_h","name":"@农民影视_08","type":3,"api":"csp_XPath","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/hstsws008/mao@master/xpath/nmys.json"},
  92. {"key":"csp_xpath_mua99s_h","name":"@99S_08","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/hstsws008/mao@master/xpath/mua99s.json"},
  93. {"key":"csp_xpath_czspp_h","name":"@厂长资源_08","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/hstsws008/mao@master/xpath/czspp.json"},
  94. {"key":"csp_xpath_rrviprw_hy","name":"@人人影视_hd","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/hyundaic/xpath@master/rrviprw.json"},
  95. {"key":"csp_xpath_smdyy_hy","name":"@神马影视_hd","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/hyundaic/xpath@master/smdyy.json"},
  96. {"key":"csp_xpath_waipian2","name":"歪片星球_yh","type":3,"api":"csp_XPathMac","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/YuanHsing/OneClickRun@master/xpath/waipian2.json"},
  97. {"key":"csp_xpath_age_WN","name":"AGE动漫_WN","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"http://fj365.ml/xpath/agemys.json"},
  98. //{"key":"csp_xpath_2345_hy","name":"@2345影视_hd","type":3,"api":"csp_XPath","searchable":1,"quickSearch":0,"filterable":0,"ext":"https://cdn.jsdelivr.net/gh/hyundaic/xpath@master/2345.json"},
  99. //以下M列表--0220327--更新
  100. {"key":"csp_appysv2_大熊","name":"大熊(M2)","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://dxys2233.com/mogai_api.php/v1.vod"},
  101. {"key":"csp_appysv2_流星","name":"流星(M2)","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://fkxs2233.com/mogai_api.php/v1.vod"},
  102. {"key":"csp_appysv2_全能","name":"全能(M2)","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://qnys5566.com/mogai_api.php/v1.vod"},
  103. {"key":"csp_appysv2_手指","name":"手指(M2)","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://szys5678.com/mogai_api.php/v1.vod"},
  104. {"key":"csp_appysv2_心爱","name":"心爱(M2)","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://xays6677.com/mogai_api.php/v1.vod"},
  105. {"key":"csp_appysv2_雪梨","name":"雪梨(M2)","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://zsb2233.com/mogai_api.php/v1.vod"},
  106. {"key":"csp_appysv2_杨桃","name":"杨桃(M2)","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://ytys3456.com/mogai_api.php/v1.vod"},
  107. {"key":"csp_appysv2_M2_星空影视","name":"星空影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://xkys.tv/xgapp.php/v1/"},
  108. {"key":"csp_appysv2_M2_饭团影视","name":"饭团影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://television.wkfile.com/api.php/app/"},
  109. {"key":"csp_appysv2_M2_嘀哩嘀哩","name":"嘀哩嘀哩_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://dilidili.la/api.php/app/"},
  110. {"key":"csp_appysv2_M2_天空影视","name":"天空影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://tkys.tv/xgapp.php/v1/"},
  111. {"key":"csp_appysv2_M2_手指影视","name":"手指影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://szys5678.com/mogai_api.php/v1.vod"},
  112. {"key":"csp_appysv2_M2_心爱影视","name":"心爱影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://xays6677.com/mogai_api.php/v1.vod"},
  113. {"key":"csp_appysv2_M2_913e影视","name":"913e影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://www.913e.net/xgapp.php/v1/"},
  114. {"key":"csp_appysv2_M2_柚子视频","name":"柚子视频_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://yz.26ys.cn/api.php/v1.vod"},
  115. {"key":"csp_appysv2_M2_无名影视","name":"无名影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://ccxg.xazhutu.com/xgapp.php/v1/"},
  116. {"key":"csp_appysv2_M2_思奇影视","name":"思奇影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://app.siqitv.vip/mogai_api.php/v1.vod"},
  117. {"key":"csp_appysv2_M2_艾特影视","name":"艾特影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.aitee.cc/api.php/v1.vod"},
  118. {"key":"csp_appysv2_M2_TV酷","name":"TV酷_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.u23c.com/api.php/app/"},
  119. {"key":"csp_appysv2_M2_橘子影视","name":"橘子影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://jz.juzidy.vip/mogai_api.php/v1.vod"},
  120. {"key":"csp_appysv2_M2_麻瓜视频","name":"麻瓜视频_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://aliyun.k8aa.com/mogai_api.php/v1.vod"},
  121. {"key":"csp_appysv2_M2_辉哥影视","name":"辉哥影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://app.y.hgyule8.com/api.php/v1.vod"},
  122. {"key":"csp_appysv2_M2_极光影院","name":"极光影院_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://app.winxz.cc/api.php/v1.vod"},
  123. {"key":"csp_appysv2_M2_美剧虫","name":"美剧虫_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://meijuchong.com/api.php/v1.vod"},
  124. {"key":"csp_appysv2_M2_vip影院","name":"vip影院_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://360yy.cn/api.php/app/"},
  125. {"key":"csp_appysv2_M2_爱迪影视","name":"爱迪影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://aidi.fun/xgapp.php/v1/"},
  126. {"key":"csp_appysv2_M2_看剧吧","name":"看剧吧_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://app.ishen520.com/api.php/v1.vod"},
  127. {"key":"csp_appysv2_M2_播放呀","name":"播放呀_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.bofangya.com/xgapp.php/v1/"},
  128. {"key":"csp_appysv2_M2_苍蓝资源","name":"苍蓝资源_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://vip.ruifenglb.com:4433/api.php/app/"},
  129. {"key":"csp_appysv2_M2_段友影视","name":"段友影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://js.66app.me/api.php/app/"},
  130. {"key":"csp_appysv2_M2_非凡TV","name":"非凡TV_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://app.feifan.live:2087/xgapp.php/v1/"},
  131. {"key":"csp_appysv2_M2_DC影视","name":"DC影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://chaorenbb.com/api.php/v1.vod"},
  132. {"key":"csp_appysv2_M2_HG影视","name":"HG影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://hgyx.vip/api.php/v1.vod"},
  133. {"key":"csp_appysv2_M2_神马影视","name":"神马影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://summ.vip/api.php/v1.vod"},
  134. {"key":"csp_appysv2_M2_追剧吧","name":"追剧吧_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://zhuiju8.vip/api.php/v1.vod"},
  135. {"key":"csp_appysv2_M2_海胆影视","name":"海胆影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://xf123.cc/api.php/app/"},
  136. {"key":"csp_appysv2_M2_海棠视频","name":"海棠视频_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.haitangsp.net/api.php/app/"},
  137. {"key":"csp_appysv2_M2_京广航","name":"京广航_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.jingguanhang.com/api.php/app/"},
  138. {"key":"csp_appysv2_M2_久九影视","name":"久九影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://api.58qxk.cn/xgapp.php/v1/"},
  139. {"key":"csp_appysv2_M2_冷视TV","name":"冷视TV_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://len.tv/api.php/v1.vod"},
  140. {"key":"csp_appysv2_M2_看365","name":"看365_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.kan365.xyz/api.php/app/"},
  141. {"key":"csp_appysv2_M2_快云影音","name":"快云影音_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.kuaiyunyy.com/api.php/app/"},
  142. {"key":"csp_appysv2_M2_灵狐影视","name":"灵狐影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://x.dmntv.com/api.php/app/"},
  143. {"key":"csp_appysv2_M2_抹茶猪","name":"抹茶猪_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.mczdyw.com/api.php/app/"},
  144. {"key":"csp_appysv2_M2_萌蛋蛋","name":"萌蛋蛋_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://app.mengdandan.com/xgapp.php/v1/"},
  145. {"key":"csp_appysv2_M2_莫扎兔","name":"莫扎兔_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://www.mozhatu.xyz/api.php/app/"},
  146. {"key":"csp_appysv2_M2_躺平影视","name":"躺平影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://www.lltpys.com/api.php/app/"},
  147. {"key":"csp_appysv2_M2_天神影视","name":"天神影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://deity.fun/api.php/app/"},
  148. {"key":"csp_appysv2_M2_我爱电影","name":"我爱电影_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://xg.5imv.net/api.php/app/"},
  149. {"key":"csp_appysv2_M2_小七影视","name":"小七影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://ys.kd60.cn/api.php/app/"},
  150. {"key":"csp_appysv2_M2_(无名)","name":"(无名)_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://ccxg.xazhutu.com/xgapp.php/v1/"},
  151. {"key":"csp_appysv2_M2_免费看","name":"免费看_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://freekan.vip/mogai_api.php/v1.vod"},
  152. {"key":"csp_appysv2_M2_暖光影视","name":"暖光影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://app.bl210.com/api.php/v1.vod"},
  153. {"key":"csp_appysv2_M2_小极影视","name":"小极影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://app.8d8q.com/api.php/v1.vod"},
  154. {"key":"csp_appysv2_M2_月色影视","name":"月色影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://69ty.cc/mogai_api.php/v1.vod"},
  155. {"key":"csp_appysv2_M2_影阅阁","name":"影阅阁_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://221.236.18.12:665/api.php/v1.vod"},
  156. {"key":"csp_appysv2_M2_U5影视","name":"U5影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://appx.uy07.com/api.php/v1.vod"},
  157. {"key":"csp_appysv2_M2_yoyo","name":"yoyo_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://jx.wnvod.net/ruifenglb_api.php/v1.vod"},
  158. {"key":"csp_appysv2_M2_爱影视","name":"爱影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.hzlff.cn/api.php/v1.vod"},
  159. {"key":"csp_appysv2_M2_比邻影视","name":"比邻影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://0hzy.cn:9990/mogai_api.php/v1.vod"},
  160. {"key":"csp_appysv2_M2_大头影视","name":"大头影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://dy.idsao.com/mogai_api.php/v1.vod"},
  161. {"key":"csp_appysv2_M2_豆渣影视","name":"豆渣影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://douzhayss.cc/api.php/v1.vod"},
  162. {"key":"csp_appysv2_M2_黄河影视","name":"黄河影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://i.ledu8.cn/api.php/v1.vod"},
  163. {"key":"csp_appysv2_M2_林谷影视","name":"林谷影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://ys.linguyy.xyz/mogai_api.php/v1.vod"},
  164. {"key":"csp_appysv2_M2_段友影视1","name":"段友影视1_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://shangjihuoke.com/api.php/v1.vod"},
  165. {"key":"csp_appysv2_M2_饭后电影","name":"饭后电影_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://summ.vip/api.php/v1.vod"},
  166. {"key":"csp_appysv2_M2_虎猫视频","name":"虎猫视频_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://humaosp.com/mogai_api.php/v1.vod"},
  167. {"key":"csp_appysv2_M2_绿箭影视","name":"绿箭影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://www.69ty.cc/mogai_api.php/v1.vod"},
  168. {"key":"csp_appysv2_M2_益达影院","name":"益达影院_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://luobu.yss6080.com/mogai_api.php/v1.vod"},
  169. {"key":"csp_appysv2_M2_蓝光视频","name":"蓝光视频_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://vip.91iqiyi.com/mogai_api.php/v1.vod"},
  170. {"key":"csp_appysv2_M2_美剧范","name":"美剧范_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://ttzmz.net/api.php/v1.vod"},
  171. {"key":"csp_appysv2_M2_皮皮动漫","name":"皮皮动漫_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://dm.muying.me/mogai_api.php/v1.vod"},
  172. {"key":"csp_appysv2_M2_视听星球","name":"视听星球_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://zjyapijzys.shynwlkj.com/api.php/v1.vod"},
  173. {"key":"csp_appysv2_M2_淘剧社","name":"淘剧社_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://app.shuhai99.com/api.php/v1.vod"},
  174. {"key":"csp_appysv2_M2_天天视频","name":"天天视频_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://app.qianju.cc/api.php/v1.vod"},
  175. {"key":"csp_appysv2_M2_兔子窝","name":"兔子窝_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://cj.huimaojia.com:12345/mogai_api.php/v1.vod"},
  176. {"key":"csp_appysv2_M2_吾爱影视","name":"吾爱影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://app.5lp.net/api.php/v1.vod"},
  177. {"key":"csp_appysv2_M2_小蜻蜓","name":"小蜻蜓_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://3ketv.com/mogai_api.php/v1.vod"},
  178. {"key":"csp_appysv2_M2_追剧猫","name":"追剧猫_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://tv.kmtvb.com/api.php/v1.vod"},
  179. {"key":"csp_appysv2_M2_猪猪影院","name":"猪猪影院_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://app.2zdyy.com/api.php/v1.vod"},
  180. {"key":"csp_appysv2_M2_渔渔影视","name":"渔渔影视_M2","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":1,"filterable":1,"ext":"http://luobo.yugenye.site/api.php/v1.vod"},
  181. //appysv1_M2L
  182. {"key":"csp_appys_xiaogui_M2L_3080影视","name":"3080影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://sv.3080l.me/api.php/app/"},
  183. {"key":"csp_appys_xiaogui_M2L_555电影","name":"555电影_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://w7tv.com/xgapp.php/v1/"},
  184. {"key":"csp_appys_xiaogui_M2L_5060影院","name":"5060影院_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://app.linzhiyuan.xyz/xgapp.php/v1/"},
  185. {"key":"csp_appys_xiaogui_M2L_913e影视","name":"913e影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://www.913e.net/xgapp.php/v1/"},
  186. {"key":"csp_appys_xiaogui_M2L_LIBVIO","name":"LIBVIO_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.mkys.me/api.php/app/"},
  187. {"key":"csp_appys_xiaogui_M2L_TV酷","name":"TV酷_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.u23c.com/api.php/app/"},
  188. {"key":"csp_appys_xiaogui_M2L_vip影院","name":"vip影院_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://360yy.cn/api.php/app/"},
  189. {"key":"csp_appys_xiaogui_M2L_爱迪影视","name":"爱迪影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://aidi.fun/xgapp.php/v1/"},
  190. {"key":"csp_appys_xiaogui_M2L_嗷呜动漫","name":"嗷呜动漫_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.aowufuns.com:1031/api.php/app/"},
  191. {"key":"csp_appys_xiaogui_M2L_哎呀影视","name":"哎呀影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.aisvod.tv/xgapp.php/v1/"},
  192. {"key":"csp_appys_xiaogui_M2L_安逸影视","name":"安逸影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://aytv.wchulian.com.cn:6633/api.php/app/"},
  193. {"key":"csp_appys_xiaogui_M2L_爱追剧","name":"爱追剧_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://4k.lqiyi.cn/api.php/app/"},
  194. {"key":"csp_appys_xiaogui_M2L_播放呀","name":"播放呀_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.bofangya.com/xgapp.php/v1/"},
  195. {"key":"csp_appys_xiaogui_M2L_畅看影视","name":"畅看影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://www.sxbrd.com/api.php/app/"},
  196. {"key":"csp_appys_xiaogui_M2L_畅视影视","name":"畅视影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.reboju.net/api.php/app/"},
  197. {"key":"csp_appys_xiaogui_M2L_迪迪影院","name":"迪迪影院_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://dd88.icu:6080/api.php/app/"},
  198. {"key":"csp_appys_xiaogui_M2L_嘀哩嘀哩","name":"嘀哩嘀哩_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://dilidili.la/api.php/app/"},
  199. {"key":"csp_appys_xiaogui_M2L_北墨影院","name":"北墨影院_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://beimotv.com/api.php/app/"},
  200. {"key":"csp_appys_xiaogui_M2L_苍蓝资源","name":"苍蓝资源_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://vip.ruifenglb.com:4433/api.php/app/"},
  201. {"key":"csp_appys_xiaogui_M2L_毒舌电影","name":"毒舌电影_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://cms.96ym.cn/api.php/app/"},
  202. {"key":"csp_appys_xiaogui_M2L_大鱼TV","name":"大鱼TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.dytv123.com/api.php/app/"},
  203. {"key":"csp_appys_xiaogui_M2L_段友影视","name":"段友影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://js.66app.me/api.php/app/"},
  204. {"key":"csp_appys_xiaogui_M2L_非凡TV","name":"非凡TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://app.feifan.live:2087/xgapp.php/v1/"},
  205. {"key":"csp_appys_xiaogui_M2L_饭团影院","name":"饭团影院_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://television.wkfile.com/api.php/app/"},
  206. {"key":"csp_appys_xiaogui_M2L_瓜皮TV","name":"瓜皮TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://www.dijiaxia.com/xgapp.php/v1/"},
  207. {"key":"csp_appys_xiaogui_M2L_海胆影视","name":"海胆影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://xf123.cc/api.php/app/"},
  208. {"key":"csp_appys_xiaogui_M2L_火箭影视","name":"火箭影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://huojian.wchulian.com.cn/api.php/app/"},
  209. {"key":"csp_appys_xiaogui_M2L_环球影视","name":"环球影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://hqystv.com/api.php/app/"},
  210. {"key":"csp_appys_xiaogui_M2L_海棠视频","name":"海棠视频_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.haitangsp.net/api.php/app/"},
  211. {"key":"csp_appys_xiaogui_M2L_京广航","name":"京广航_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.jingguanhang.com/api.php/app/"},
  212. {"key":"csp_appys_xiaogui_M2L_久九影视","name":"久九影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://api.58qxk.cn/xgapp.php/v1/"},
  213. {"key":"csp_appys_xiaogui_M2L_极客","name":"极客_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.i8k.cc/xgapp.php/v1/"},
  214. {"key":"csp_appys_xiaogui_M2L_看365","name":"看365_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.kan365.xyz/api.php/app/"},
  215. {"key":"csp_appys_xiaogui_M2L_酷扑TV","name":"酷扑TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.kupu.cc/api.php/app/"},
  216. {"key":"csp_appys_xiaogui_M2L_快云影音","name":"快云影音_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.kuaiyunyy.com/api.php/app/"},
  217. {"key":"csp_appys_xiaogui_M2L_灵狐影视","name":"灵狐影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://x.dmntv.com/api.php/app/"},
  218. {"key":"csp_appys_xiaogui_M2L_老韩综","name":"老韩综_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://zy.kmoonhh.com/api.php/app/"},
  219. {"key":"csp_appys_xiaogui_M2L_抹茶猪","name":"抹茶猪_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.mczdyw.com/api.php/app/"},
  220. {"key":"csp_appys_xiaogui_M2L_漫岛","name":"漫岛_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://a.mdaotv.cn/api.php/app/"},
  221. {"key":"csp_appys_xiaogui_M2L_萌蛋蛋","name":"萌蛋蛋_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.mengdandan.com/xgapp.php/v1/"},
  222. {"key":"csp_appys_xiaogui_M2L_苗点影视","name":"苗点影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.msdv.cn/api.php/app/"},
  223. {"key":"csp_appys_xiaogui_M2L_蜜果TV","name":"蜜果TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.miguotv.net/api.php/app/"},
  224. {"key":"csp_appys_xiaogui_M2L_麻花视频","name":"麻花视频_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.mahuashipin.com/api.php/app/"},
  225. {"key":"csp_appys_xiaogui_M2L_莫扎兔","name":"莫扎兔_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://www.mozhatu.xyz/api.php/app/"},
  226. {"key":"csp_appys_xiaogui_M2L_奈飞中文","name":"奈飞中文_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.naifei.org/api.php/app/"},
  227. {"key":"csp_appys_xiaogui_M2L_皮皮影视","name":"皮皮影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://pp.ig4.cn/api.php/app/"},
  228. {"key":"csp_appys_xiaogui_M2L_氢视频","name":"氢视频_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://h1080p.com/api.php/app/"},
  229. {"key":"csp_appys_xiaogui_M2L_思古影视","name":"思古影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://app.siguyy.com/xgapp.php/v1/"},
  230. {"key":"csp_appys_xiaogui_M2L_世界电影","name":"世界电影_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://app.lovetv.online/api.php/app/"},
  231. {"key":"csp_appys_xiaogui_M2L_神马影院","name":"神马影院_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.6080kan.cc/xgapp.php/v1/"},
  232. {"key":"csp_appys_xiaogui_M2L_天空影视","name":"天空影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.tkys.tv/api.php/app/"},
  233. {"key":"csp_appys_xiaogui_M2L_躺平影视","name":"躺平影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://www.lltpys.com/api.php/app/"},
  234. {"key":"csp_appys_xiaogui_M2L_天神影视","name":"天神影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://deity.fun/api.php/app/"},
  235. {"key":"csp_appys_xiaogui_M2L_我爱电影","name":"我爱电影_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://xg.5imv.net/api.php/app/"},
  236. {"key":"csp_appys_xiaogui_M2L_污妖动漫","name":"污妖动漫_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.wyydm.com/api.php/app/"},
  237. {"key":"csp_appys_xiaogui_M2L_小白视频","name":"小白视频_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://ccoyytv.com/api.php/app/"},
  238. {"key":"csp_appys_xiaogui_M2L_星空影视","name":"星空影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://xkys.tv/xgapp.php/v1/"},
  239. {"key":"csp_appys_xiaogui_M2L_小强TV","name":"小强TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://xqapp.hailanfj.com/xgapp.php/v1/"},
  240. {"key":"csp_appys_xiaogui_M2L_小七影视","name":"小七影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://ys.kd60.cn/api.php/app/"},
  241. {"key":"csp_appys_xiaogui_M2L_雪人影视","name":"雪人影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://qqtvapp.com/xgapp.php/v1/"},
  242. {"key":"csp_appys_xiaogui_M2L_雪人影视","name":"雪人影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://xg.qd234.cn/api.php/app/"},
  243. {"key":"csp_appys_xiaogui_M2L_小易影视","name":"小易影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://xy.irop.cn/api.php/app/"},
  244. {"key":"csp_appys_xiaogui_M2L_映迷","name":"映迷_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.inmi.app/xgapp.php/v1/"},
  245. {"key":"csp_appys_xiaogui_M2L_影视工场","name":"影视工场_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.ysgc.cc/xgapp.php/v1/"},
  246. {"key":"csp_appys_xiaogui_M2L_追剧达人","name":"追剧达人_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://vipmv.tv/xgapp.php/v1/"},
  247. {"key":"csp_appys_xiaogui_M2L_(无名)","name":"(无名)_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://ccxg.xazhutu.com/xgapp.php/v1/"},
  248. {"key":"csp_appys_v1_M2L_大熊影视","name":"大熊影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://dxys2233.com/mogai_api.php/v1.vod"},
  249. {"key":"csp_appys_v1_M2L_免费看","name":"免费看_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://freekan.vip/mogai_api.php/v1.vod"},
  250. {"key":"csp_appys_v1_M2L_全能影视","name":"全能影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://qnys5566.com/mogai_api.php/v1.vod"},
  251. {"key":"csp_appys_v1_M2L_手指影视","name":"手指影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://szys5678.com/mogai_api.php/v1.vod"},
  252. {"key":"csp_appys_v1_M2L_心爱影视","name":"心爱影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://xays6677.com/mogai_api.php/v1.vod"},
  253. {"key":"csp_appys_v1_M2L_雪梨视频","name":"雪梨视频_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://zsb2233.com/mogai_api.php/v1.vod"},
  254. {"key":"csp_appys_v1_M2L_杨桃影视","name":"杨桃影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://ytys3456.com/mogai_api.php/v1.vod"},
  255. {"key":"csp_appys_v1_M2L_1080p","name":"1080p_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://1080p.one/mogai_api.php/v1.vod"},
  256. {"key":"csp_appys_v1_M2L_4K影院","name":"4K影院_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://4kdytv.com/api.php/v1.vod"},
  257. {"key":"csp_appys_v1_M2L_80K影视","name":"80K影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://1080p.tv/api.php/v1.vod"},
  258. {"key":"csp_appys_v1_M2L_CJT影院","name":"CJT影院_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.cjt521.com/api.php/v1.vod"},
  259. {"key":"csp_appys_v1_M2L_DC影视","name":"DC影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://chaorenbb.com/api.php/v1.vod"},
  260. {"key":"csp_appys_v1_M2L_HG影视","name":"HG影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://hgyx.vip/api.php/v1.vod"},
  261. {"key":"csp_appys_v1_M2L_爱看美剧","name":"爱看美剧_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.uumjw.com/api.php/v1.vod"},
  262. {"key":"csp_appys_v1_M2L_爱西西","name":"爱西西_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.aixixi.vip/mogai_api.php/v1.vod"},
  263. {"key":"csp_appys_v1_M2L_阿姨追剧","name":"阿姨追剧_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.ayzhuiju.com/ruifenglb_api.php/v1.vod"},
  264. {"key":"csp_appys_v1_M2L_初心影视","name":"初心影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.18mv.club/api.php/v1.vod"},
  265. {"key":"csp_appys_v1_M2L_独播社","name":"独播社_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://35ys.cc/api.php/v1.vod"},
  266. {"key":"csp_appys_v1_M2L_段友影视","name":"段友影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://shangjihuoke.com/api.php/v1.vod"},
  267. {"key":"csp_appys_v1_M2L_饭后电影","name":"饭后电影_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://summ.vip/api.php/v1.vod"},
  268. {"key":"csp_appys_v1_M2L_飞捷影视","name":"飞捷影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.fj6080.com/api.php/v1.vod"},
  269. {"key":"csp_appys_v1_M2L_疯狂看","name":"疯狂看_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.fkkdy.vip/mogai_api.php/v1.vod"},
  270. {"key":"csp_appys_v1_M2L_汇聚库TV","name":"汇聚库TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.zzclove666.com/api.php/v1.vod"},
  271. {"key":"csp_appys_v1_M2L_虎猫视频","name":"虎猫视频_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://humaosp.com/mogai_api.php/v1.vod"},
  272. {"key":"csp_appys_v1_M2L_可米影视","name":"可米影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://www.kmysw.vip/api.php/v1.vod"},
  273. {"key":"csp_appys_v1_M2L_绿箭影视","name":"绿箭影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://www.69ty.cc/mogai_api.php/v1.vod"},
  274. {"key":"csp_appys_v1_M2L_漫岛影视","name":"漫岛影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.mdaotv.cn/mubai_api.php/m2.vod"},
  275. {"key":"csp_appys_v1_M2L_麻瓜视频","name":"麻瓜视频_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://aliyun.k8aa.com/mogai_api.php/v1.vod"},
  276. {"key":"csp_appys_v1_M2L_美剧虫","name":"美剧虫_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://meijuchong.com/api.php/v1.vod"},
  277. {"key":"csp_appys_v1_M2L_木子电影","name":"木子电影_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://www.muzidy.top/mogai_api.php/v1.vod"},
  278. {"key":"csp_appys_v1_M2L_暖光影视","name":"暖光影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://app.bl210.com/api.php/v1.vod"},
  279. {"key":"csp_appys_v1_M2L_奈非迷","name":"奈非迷_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://app.netflixmi.com/api.php/v1.vod"},
  280. {"key":"csp_appys_v1_M2L_南府影视","name":"南府影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.nfuxs.club/nfuxsapp.php/v1.vod"},
  281. {"key":"csp_appys_v1_M2L_柠柚影视","name":"柠柚影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://nu.e4tv.cn/lvdou_api.php/v1.vod"},
  282. {"key":"csp_appys_v1_M2L_瑞丰资源","name":"瑞丰资源_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://ts.yjhan.com:4433/ruifenglb_api.php/v1.vod"},
  283. {"key":"csp_appys_v1_M2L_温妮影视","name":"温妮影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.wenniys.com/mogai_api.php/v1.vod"},
  284. {"key":"csp_appys_v1_M2L_星辰视频","name":"星辰视频_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://m.hj0999.com/api.php/v1.vod"},
  285. {"key":"csp_appys_v1_M2L_小极影视","name":"小极影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.8d8q.com/api.php/v1.vod"},
  286. {"key":"csp_appys_v1_M2L_雪人资源","name":"雪人资源_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://zy.qd234.cn/mogai_api.php/v1.vod"},
  287. {"key":"csp_appys_v1_M2L_益达影院","name":"益达影院_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://luobu.yss6080.com/mogai_api.php/v1.vod"},
  288. {"key":"csp_appys_v1_M2L_雨果影视","name":"雨果影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://ygapp.xcys63.com/api.php/v1.vod"},
  289. {"key":"csp_appys_v1_M2L_月色影视","name":"月色影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://69ty.cc/mogai_api.php/v1.vod"},
  290. {"key":"csp_appys_v1_M2L_优视影视","name":"优视影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://cc.ysys.asia/api.php/v1.vod"},
  291. {"key":"csp_appys_v1_M2L_遗忘影视","name":"遗忘影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://www.bywdtk.vip/mogai_api.php/v1.vod"},
  292. {"key":"csp_appys_v1_M2L_影阅阁","name":"影阅阁_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://221.236.18.12:665/api.php/v1.vod"},
  293. {"key":"csp_appys_v1_M2L_追剧吧","name":"追剧吧_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://zhuiju8.vip/api.php/v1.vod"},
  294. {"key":"csp_appys_v1_M2L_80影视","name":"80影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://www.ccc8.net/api.php/v1.vod"},
  295. {"key":"csp_appys_v1_M2L_QC影视","name":"QC影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.qcsvip.com/api.php/v1.vod"},
  296. {"key":"csp_appys_v1_M2L_U5影视","name":"U5影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://appx.uy07.com/api.php/v1.vod"},
  297. {"key":"csp_appys_v1_M2L_yoyo","name":"yoyo_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://jx.wnvod.net/ruifenglb_api.php/v1.vod"},
  298. {"key":"csp_appys_v1_M2L_爱影视","name":"爱影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.hzlff.cn/api.php/v1.vod"},
  299. {"key":"csp_appys_v1_M2L_爱追剧","name":"爱追剧_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://81.71.18.95:520/lvdou_api.php/v1.vod"},
  300. {"key":"csp_appys_v1_M2L_艾特影视","name":"艾特影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.aitee.cc/api.php/v1.vod"},
  301. {"key":"csp_appys_v1_M2L_白菜追剧","name":"白菜追剧_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://lbapp.huimaojia.com:30119/mogai_api.php/v1.vod"},
  302. {"key":"csp_appys_v1_M2L_比邻影视","name":"比邻影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://0hzy.cn:9990/mogai_api.php/v1.vod"},
  303. {"key":"csp_appys_v1_M2L_百讯视频","name":"百讯视频_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://z.iopenyun.com:99/app_api.php/v1.vod"},
  304. {"key":"csp_appys_v1_M2L_菜鸟动漫","name":"菜鸟动漫_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://taikong.huangguay.com/mogai_api.php/v1.vod"},
  305. {"key":"csp_appys_v1_M2L_大头影视","name":"大头影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://dy.idsao.com/mogai_api.php/v1.vod"},
  306. {"key":"csp_appys_v1_M2L_段友影视","name":"段友影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://js.66app.me/api.php/v1.vod"},
  307. {"key":"csp_appys_v1_M2L_豆渣影视","name":"豆渣影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://douzhayss.cc/api.php/v1.vod"},
  308. {"key":"csp_appys_v1_M2L_二九影视","name":"二九影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://app.19kp.com/api.php/v1.vod"},
  309. {"key":"csp_appys_v1_M2L_辉哥影视","name":"辉哥影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://app.y.hgyule8.com/api.php/v1.vod"},
  310. {"key":"csp_appys_v1_M2L_黄河影视","name":"黄河影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://i.ledu8.cn/api.php/v1.vod"},
  311. {"key":"csp_appys_v1_M2L_盒子影院","name":"盒子影院_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://i.nihaohezi.com/api.php/v1.vod"},
  312. {"key":"csp_appys_v1_M2L_筋斗云","name":"筋斗云_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://tv.jindcloud.com/api.php/v1.vod"},
  313. {"key":"csp_appys_v1_M2L_极光影院","name":"极光影院_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.winxz.cc/api.php/v1.vod"},
  314. {"key":"csp_appys_v1_M2L_剧迷视频","name":"剧迷视频_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://pan.hzafw.com/api.php/v1.vod"},
  315. {"key":"csp_appys_v1_M2L_橘子影视","name":"橘子影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://jz.juzidy.vip/mogai_api.php/v1.vod"},
  316. {"key":"csp_appys_v1_M2L_看剧吧","name":"看剧吧_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.ishen520.com/api.php/v1.vod"},
  317. {"key":"csp_appys_v1_M2L_看看剧","name":"看看剧_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.kankanju.cn/api.php/v1.vod"},
  318. {"key":"csp_appys_v1_M2L_蓝光视频","name":"蓝光视频_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://vip.91iqiyi.com/mogai_api.php/v1.vod"},
  319. {"key":"csp_appys_v1_M2L_林谷影视","name":"林谷影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://ys.linguyy.xyz/mogai_api.php/v1.vod"},
  320. {"key":"csp_appys_v1_M2L_冷视TV","name":"冷视TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://len.tv/api.php/v1.vod"},
  321. {"key":"csp_appys_v1_M2L_美剧范","name":"美剧范_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://ttzmz.net/api.php/v1.vod"},
  322. {"key":"csp_appys_v1_M2L_喵乐影视","name":"喵乐影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://miaoleys.com/api.php/v1.vod"},
  323. {"key":"csp_appys_v1_M2L_名视影","name":"名视影_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.qqccv.com/mogai_api.php/v1.vod"},
  324. {"key":"csp_appys_v1_M2L_麻子追剧","name":"麻子追剧_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://b.2maz.cn/api.php/v1.vod"},
  325. {"key":"csp_appys_v1_M2L_皮皮动漫","name":"皮皮动漫_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://dm.muying.me/mogai_api.php/v1.vod"},
  326. {"key":"csp_appys_v1_M2L_奇趣影视","name":"奇趣影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://app.qiqu.me/mogai_api.php/v1.vod"},
  327. {"key":"csp_appys_v1_M2L_思奇影视","name":"思奇影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.siqitv.vip/mogai_api.php/v1.vod"},
  328. {"key":"csp_appys_v1_M2L_三日影院","name":"三日影院_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.3ri.net/api.php/v1.vod"},
  329. {"key":"csp_appys_v1_M2L_视听星球","name":"视听星球_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://zjyapijzys.shynwlkj.com/api.php/v1.vod"},
  330. {"key":"csp_appys_v1_M2L_土豆TV","name":"土豆TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://xiuxian.qd234.cn/mogai_api.php/v1.vod"},
  331. {"key":"csp_appys_v1_M2L_淘剧社","name":"淘剧社_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://app.shuhai99.com/api.php/v1.vod"},
  332. {"key":"csp_appys_v1_M2L_天天影视","name":"天天影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.at008.cn/api.php/v1.vod"},
  333. {"key":"csp_appys_v1_M2L_天天视频","name":"天天视频_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.qianju.cc/api.php/v1.vod"},
  334. {"key":"csp_appys_v1_M2L_兔子窝","name":"兔子窝_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://cj.huimaojia.com:12345/mogai_api.php/v1.vod"},
  335. {"key":"csp_appys_v1_M2L_我爱跟剧","name":"我爱跟剧_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.genmov.com/api.php/v1.vod"},
  336. {"key":"csp_appys_v1_M2L_吾爱影视","name":"吾爱影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.5lp.net/api.php/v1.vod"},
  337. {"key":"csp_appys_v1_M2L_吾爱影视","name":"吾爱影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://52ysw.xyz/mogai_api.php/v1.vod"},
  338. {"key":"csp_appys_v1_M2L_蜗牛动漫","name":"蜗牛动漫_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://woniudm.woniu.cyou:20000/mogai_api.php/v1.vod"},
  339. {"key":"csp_appys_v1_M2L_熊猫动漫","name":"熊猫动漫_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://dongman.k8aa.com/mogai_api.php/v1.vod"},
  340. {"key":"csp_appys_v1_M2L_玺娜影视","name":"玺娜影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://pp.wxina.cn/api.php/v1.vod"},
  341. {"key":"csp_appys_v1_M2L_小蜻蜓","name":"小蜻蜓_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://3ketv.com/mogai_api.php/v1.vod"},
  342. {"key":"csp_appys_v1_M2L_星球视频","name":"星球视频_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://119.29.121.48:8088/api.php/v1.vod"},
  343. {"key":"csp_appys_v1_M2L_玺心影视","name":"玺心影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://tv.arbd.cn/api.php/v1.vod"},
  344. {"key":"csp_appys_v1_M2L_新享影视","name":"新享影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.jiagan.cx/api.php/v1.vod"},
  345. {"key":"csp_appys_v1_M2L_星影相随","name":"星影相随_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.rootthree.top/mogai_api.php/v1.vod"},
  346. {"key":"csp_appys_v1_M2L_小易影视","name":"小易影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://xy.irop.cn/api.php/v1.vod"},
  347. {"key":"csp_appys_v1_M2L_樱花动漫","name":"樱花动漫_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://www.dmwu.cc/api.php/v1.vod"},
  348. {"key":"csp_appys_v1_M2L_月亮影视","name":"月亮影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://ys.13tv.top/acj_api.php/v1.vod"},
  349. {"key":"csp_appys_v1_M2L_影视大全","name":"影视大全_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://xc.xixi2yy.xyz/mogai_api.php/v1.vod"},
  350. {"key":"csp_appys_v1_M2L_影视热剧","name":"影视热剧_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://lb.26ys.cn/api.php/v1.vod"},
  351. {"key":"csp_appys_v1_M2L_渔渔影视","name":"渔渔影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://luobo.yugenye.site/api.php/v1.vod"},
  352. {"key":"csp_appys_v1_M2L_柚子视频","name":"柚子视频_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://yz.26ys.cn/api.php/v1.vod"},
  353. {"key":"csp_appys_v1_M2L_追剧猫","name":"追剧猫_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://tv.kmtvb.com/api.php/v1.vod"},
  354. {"key":"csp_appys_v1_M2L_宅男影院","name":"宅男影院_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://www.sexyy.top/api.php/v1.vod"},
  355. {"key":"csp_appys_v1_M2L_侦探影视","name":"侦探影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://ys.huangguay.com/mogai_api.php/v1.vod"},
  356. {"key":"csp_appys_v1_M2L_猪猪影院","name":"猪猪影院_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://app.2zdyy.com/api.php/v1.vod"},
  357. {"key":"csp_appys_iptv_M2L_2号币","name":"2号币_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://phoebe.cf/api.php/iptv/vod/"},
  358. {"key":"csp_appys_iptv_M2L_HG影视","name":"HG影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://api.hgyx.vip/api.php/iptv/vod/"},
  359. {"key":"csp_appys_iptv_M2L_傲视影院","name":"傲视影院_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://j.zjj.life:88/mv/api.php/Chengcheng/vod/"},
  360. {"key":"csp_appys_iptv_M2L_爱西西TV","name":"爱西西TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://tv.aixixi.vip/api.php/iptv/vod/"},
  361. {"key":"csp_appys_iptv_M2L_刺桐影视","name":"刺桐影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://tv.cttv.vip/api.php/iptv/vod/"},
  362. {"key":"csp_appys_iptv_M2L_尘梓TV","name":"尘梓TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://cztv.vip:83/api.php/chenziystv/vod/"},
  363. {"key":"csp_appys_iptv_M2L_嘀哩嘀哩","name":"嘀哩嘀哩_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://api.diliktv.xyz/api.php/Chengcheng/vod/"},
  364. {"key":"csp_appys_iptv_M2L_动力影视","name":"动力影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://www.love9989.com/api.php/iptv/vod/"},
  365. {"key":"csp_appys_iptv_M2L_大师兄","name":"大师兄_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://dsxtv.tv.ci/api.php/dsx/vod/"},
  366. {"key":"csp_appys_iptv_M2L_二货影视","name":"二货影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://d.zjj.life:88/mv/api.php/Chengcheng/vod/"},
  367. {"key":"csp_appys_iptv_M2L_黑龙影视","name":"黑龙影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://vip.ji-ding-he.site/api.php/iptv/vod/"},
  368. {"key":"csp_appys_iptv_M2L_聚多影视","name":"聚多影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://jdyy.weetai.cn/api.php/iptv/vod/"},
  369. {"key":"csp_appys_iptv_M2L_久久影院","name":"久久影院_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://l.bhtv.org.cn/mv/api.php/Chengcheng/vod/"},
  370. {"key":"csp_appys_iptv_M2L_乐酷TV","name":"乐酷TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://150.138.78.177:2021/api.php/Chengcheng/vod/"},
  371. {"key":"csp_appys_iptv_M2L_流星雨","name":"流星雨_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://nn.lxyyy.xyz:8/c/api.php/WAiLaowang/vod/"},
  372. {"key":"csp_appys_iptv_M2L_冷月TV","name":"冷月TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"https://tv.521x5.com/api.php/iptv/vod/"},
  373. {"key":"csp_appys_iptv_M2L_荔枝影视","name":"荔枝影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://api.zjys.vip/api.php/iptv/vod/"},
  374. {"key":"csp_appys_iptv_M2L_免费看TV","name":"免费看TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://www.freekan.vip/api.php/iptv/vod/"},
  375. {"key":"csp_appys_iptv_M2L_蜜果TV","name":"蜜果TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://vv.miguotv.net/m/api.php/Chengcheng/vod/"},
  376. {"key":"csp_appys_iptv_M2L_米来影视","name":"米来影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://42.51.37.161:2346/api.php/iptv/vod/"},
  377. {"key":"csp_appys_iptv_M2L_米奇TV","name":"米奇TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://www.s6ep3.top/api.php/iptv/vod/"},
  378. {"key":"csp_appys_iptv_M2L_思奇TV","name":"思奇TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://tv.siqitv.vip/api.php/iptv/vod/"},
  379. {"key":"csp_appys_iptv_M2L_双子星","name":"双子星_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://tv.diyoui.cc/api.php/iptv/vod/"},
  380. {"key":"csp_appys_iptv_M2L_山楂影视","name":"山楂影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://dy6.dcd1.cn/api.php/iptv/vod/"},
  381. {"key":"csp_appys_iptv_M2L_若惜影视","name":"若惜影视_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://rxw.ruoxinew.com/api.php/Sntv/vod/"},
  382. {"key":"csp_appys_iptv_M2L_虾皮视频","name":"虾皮视频_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://tv.cmt8.xyz/api.php/iptv/vod/"},
  383. {"key":"csp_appys_iptv_M2L_小极TV","name":"小极TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://api.8d8q.com/mmv/api.php/Chengcheng/vod/"},
  384. {"key":"csp_appys_iptv_M2L_小熊猫TV","name":"小熊猫TV_M2L","type":3,"api":"csp_AppYsV2","searchable":1,"quickSearch":0,"filterable":1,"ext":"http://tv2.hetaoys.vip/api.php/iptv/vod/"},
  385. //以下资源列表
  386. {"key":"九九美剧","name":"九九美剧","type":1,"api":"https://www.999meiju.tv/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":1,"categories":[]},
  387. {"key":"小蜻蜓APP","name":"小蜻蜓APP","type":1,"api":"http://3ketv.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":1,"categories":[]},
  388. {"key":"乐活影视","name":"乐活影视","type":1,"api":"https://lehootv.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":1,"categories":[]},
  389. {"key":"乐多资源1","name":"乐多资源1","type":0,"api":"http://cj.leduocaiji.com/inc/seacmsapi.php","playUrl":"https://ldy.jx.cn/wp-api/ifr.php?vid=","searchable":1,"quickSearch":1,"categories":[]},
  390. {"key":"乐多资源2","name":"乐多资源2","type":0,"api":"http://api.leduosj.com/inc/api.php","playUrl":"https://ldy.jx.cn/wp-api/ifr.php?vid=","searchable":1,"quickSearch":1,"categories":[]},
  391. {"key":"番茄资源","name":"番茄资源","type":1,"api":"http://api.fqzy.cc/api.php/provide/vod/","playUrl":"https://jx.fqzy.cc/jx.php?url=","searchable":1,"quickSearch":1,"categories":[]},
  392. {"key":"2A资源","name":"2A资源","type":1,"api":"http://zy.zcocc.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  393. {"key":"348电影网","name":"348电影网","type":1,"api":"https://348z.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  394. {"key":"39影视","name":"39影视","type":0,"api":"https://www.39kan.com/api.php/provide/vod/at/xml/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  395. {"key":"6U资源","name":"6U资源","type":1,"api":"http://zy.ataoju.com/inc/apijson_vod.php","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  396. //{"key":"8090资源","name":"8090资源","type":1,"api":"http://zy.yilans.net:8090/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  397. {"key":"88资源","name":"88资源","type":1,"api":"http://www.88zy.live/inc/apijson_vod.php","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  398. {"key":"BL视频","name":"BL视频","type":1,"api":"https://bljiex.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  399. {"key":"KK看剧","name":"KK看剧","type":1,"api":"https://www.kkkanju.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  400. //{"key":"M3U8.TV资源","name":"M3U8.TV资源","type":1,"api":"http://www.zycaiji.net:7788/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  401. {"key":"MBO影视","name":"MBO影视","type":0,"api":"https://www.mbomovie.com/api.php/provide/vod/at/xml/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  402. {"key":"OmoFun动漫","name":"OmoFun动漫","type":1,"api":"https://www.omofun.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":["动漫","剧场版","国产","欧美"]},
  403. {"key":"U酷资源","name":"U酷资源","type":1,"api":"http://ukuzy.com/api.php/provide/vod?ac=list","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  404. {"key":"YT影视","name":"YT影视","type":1,"api":"http://ytys.cc/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  405. {"key":"八戒资源","name":"八戒资源","type":1,"api":"http://cj.bajiecaiji.com/inc/apijson_vod.php","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  406. {"key":"三零资源","name":"三零资源","type":1,"api":"http://api.000zy.com/provide/vod/","playUrl":"https://jx.3jx.net/?url=","categories":[]},
  407. {"key":"千寻时光","name":"千寻时光","type":1,"api":"http://wy.dqyhg.cn/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  408. {"key":"大米蓝光","name":"大米蓝光","type":1,"api":"https://www.dmzyu.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  409. {"key":"飞鱼影视","name":"飞鱼影视","type":1,"api":"https://app.feiyu5.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  410. {"key":"飞速资源","name":"飞速资源","type":1,"api":"https://m3u8.feisuzyapi.com/vod/at/xml/","playUrl":"https://www.feisuplayer.com/m3u8/?url=","searchable":1,"quickSearch":0,"categories":[]},
  411. {"key":"不开门","name":"不开门","type":1,"api":"http://c.bukai.men/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  412. {"key":"天龙影院","name":"天龙影院","type":1,"api":"http://www.tl86dy.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  413. {"key":"天空资源","name":"天空资源","type":1,"api":"http://api.tiankongapi.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  414. {"key":"天堂资源","name":"天堂资源","type":1,"api":"http://vipmv.cc/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  415. //{"key":"无尽资源","name":"无尽资源","type":1,"api":"https://wuzy9.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":1,"categories":[]},
  416. {"key":"无极影院","name":"无极影院","type":1,"api":"http://wujiys.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  417. {"key":"木偶人","name":"木偶人","type":1,"api":"http://vip.muoutv.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  418. {"key":"比邻影视","name":"比邻影视","type":1,"api":"http://0hzy.cn:9990/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  419. {"key":"片库","name":"片库","type":1,"api":"https://pianku.wang/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  420. //{"key":"乐多资源1","name":"乐多资源1","type":0,"api":"http://cj.leduocaiji.com/inc/seacmsapi.php","playUrl":"https://ldy.jx.cn/wp-api/ifr.php?vid=","categories":[]},
  421. //{"key":"乐多资源2","name":"乐多资源2","type":0,"api":"http://api.leduosj.com/inc/api.php","playUrl":"https://ldy.jx.cn/wp-api/ifr.php?vid=","categories":[]},
  422. {"key":"乐活影视","name":"乐活影视","type":1,"api":"https://lehootv.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  423. {"key":"北斗星资源","name":"北斗星资源","type":1,"api":"https://v8.bdxzyapi.com/inc/apijson_vod.php","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  424. {"key":"瓜皮TV","name":"瓜皮TV","type":1,"api":"http://www.dijiaxia.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  425. {"key":"白联盟","name":"白联盟","type":1,"api":"https://www.hszbj.net/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  426. {"key":"闪电资源","name":"闪电资源","type":1,"api":"http://sdzyapi.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  427. {"key":"宅男影视","name":"宅男影视","type":1,"api":"http://www.sexyy.top/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  428. {"key":"江湖","name":"江湖","type":1,"api":"http://jhzy.jhdyw.vip:8091/api.php/provide/vod","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  429. {"key":"百度资源","name":"百度资源","type":1,"api":"https://api.apibdzy.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  430. {"key":"百搜资源","name":"百搜资源","type":1,"api":"https://vip.baisou.ltd/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  431. {"key":"红牛资源","name":"红牛资源","type":1,"api":"https://www.hongniuzy.com/inc/apijson_vod.php","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  432. {"key":"网民电影","name":"网民电影","type":1,"api":"https://www.prinevillesda.org/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  433. {"key":"艾特","name":"艾特","type":0,"api":"http://tv.aitesucai.xyz/api.php/provide/vod/at/xml","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  434. {"key":"西门影视","name":"西门影视","type":1,"api":"https://ximenys.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  435. {"key":"快看客栈","name":"快看客栈","type":1,"api":"https://www.vp1127.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  436. //{"key":"快播资源","name":"快播资源","type":1,"api":"http://www.kuaibozy.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  437. {"key":"我爱跟剧","name":"我爱跟剧","type":1,"api":"http://www.52gen.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  438. {"key":"每天看看","name":"每天看看","type":1,"api":"http://www.meitiankankan.cn:1234/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  439. {"key":"侦探APP","name":"侦探APP","type":1,"api":"http://ys.huangguay.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  440. {"key":"兔子窝","name":"兔子窝","type":1,"api":"http://cj.huimaojia.com:12345/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  441. {"key":"初心影视","name":"初心影视","type":1,"api":"https://18mv.club/api.php/provide/vod/","playUrl":"https://jx.renrenmi.cc/?url=","categories":[]},
  442. {"key":"奇乐(优剧)资源","name":"奇乐(优剧)资源","type":1,"api":"https://zy.ujuba.com/api.php/provide/vod/","playUrl":"https://zy.ujuba.com/play.php?url=","quickSearch":0,"categories":[]},
  443. {"key":"畅视影视","name":"畅视影视","type":1,"api":"http://app.reboju.net/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  444. {"key":"鱼乐资源","name":"鱼乐资源","type":1,"api":"https://api.ylzy1.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  445. {"key":"哇可可影视","name":"哇可可影视","type":1,"api":"https://www.zwcoco.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  446. {"key":"思乐影视","name":"思乐影视","type":1,"api":"https://www.4ltv.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  447. {"key":"思古影院","name":"思古影院","type":1,"api":"https://www.siguyy.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  448. {"key":"测试","name":"测试","type":1,"api":"http://107.150.5.146:39000/maccms10-main/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  449. {"key":"美剧星球","name":"美剧星球","type":1,"api":"https://www.meijuxq.tv/inc/apijson_vod.php","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  450. {"key":"英皇影城资源","name":"英皇影城资源","type":1,"api":"https://www.yhyczy.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  451. {"key":"唐人街","name":"唐人街","type":0,"api":"https://www.tangrenjie.tv/api.php/provide/vod/at/xml","playUrl":""},
  452. {"key":"晓峰影视","name":"晓峰影视","type":1,"api":"http://api.xxcr.tk/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  453. {"key":"热映网","name":"热映网","type":1,"api":"http://hl.reying.vip/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  454. {"key":"爱看啦","name":"爱看啦","type":0,"api":"http://v.aik.la/api.php/provide/vod/at/xml","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  455. {"key":"爱搜影院","name":"爱搜影院","type":1,"api":"http://yunbangcheng.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  456. {"key":"玺心影视","name":"玺心影视","type":1,"api":"https://tvcj.arbd.cn/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  457. {"key":"玺娜影视","name":"玺娜影视","type":1,"api":"https://www.yuxidy.cn/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  458. {"key":"清欢资源","name":"清欢资源","type":1,"api":"http://free.qinghuanzy.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  459. {"key":"清欢授权","name":"清欢授权","type":1,"api":"https://www.qinghuanzy.com/qinghuan.php/provide/vod/?token=m7DJcblgDs","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  460. {"key":"聆风资源","name":"聆风资源","type":1,"api":"http://maccms.bwcxvip.top/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  461. {"key":"速更资源","name":"速更资源","type":1,"api":"https://sugengzy.cn/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  462. {"key":"雪人官采","name":"雪人官采","type":1,"api":"https://zl.qd234.cn/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  463. //{"key":"番茄资源","name":"番茄资源","type":1,"api":"http://api.fqzy.cc/api.php/provide/vod/","playUrl":"https://jx.fqzy.cc/jx.php?url=","categories":[]},
  464. {"key":"舒渡影视","name":"舒渡影视","type":1,"api":"http://www.lovctv.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  465. {"key":"萌果资源","name":"萌果资源","type":1,"api":"http://api.appearoo.top/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  466. {"key":"嗨哆咪影视","name":"嗨哆咪影视","type":1,"api":"http://hdmys1.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  467. {"key":"想看资源","name":"想看资源","type":1,"api":"https://m3u8.xiangkanapi.com/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  468. {"key":"椰子资源","name":"椰子资源","type":1,"api":"https://zy.gbxy.net.cn/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  469. {"key":"随便看电影","name":"随便看电影","type":1,"api":"https://baobei666.com/inc/apijson_vod.php","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  470. {"key":"嘀哩嘀哩","name":"嘀哩嘀哩","type":1,"api":"http://api.diliktv.xyz/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  471. {"key":"酷点资源","name":"酷点资源","type":1,"api":"https://api.kuapi.cc/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  472. {"key":"樱花资源","name":"樱花资源","type":1,"api":"https://m3u8.apiyhzy.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  473. {"key":"趣看","name":"趣看","type":1,"api":"http://qkmp4.cn/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  474. {"key":"飘花电影","name":"飘花电影","type":1,"api":"http://www.zzrhgg.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  475. {"key":"飘花影院","name":"飘花影院","type":1,"api":"https://www.2mjtt.com/inc/apijson_vod.php","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  476. {"key":"橘猫影视","name":"橘猫影视","type":1,"api":"http://www.zitv.cc/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  477. {"key":"融兴bilibili","name":"融兴bilibili","type":1,"api":"https://bilibili.rongxingvr.cc/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  478. {"key":"麒麟资源","name":"麒麟资源","type":1,"api":"http://www.qilinzyz.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":0,"categories":[]},
  479. {"key":"迅播","name":"迅播qgvod","type":0,"api":"https://www.qgvod.com/api.php/provide/vod/at/xml/","playUrl":"https://jx.renrenmi.cc/?url=","searchable":1,"quickSearch":0,"filterable":0},
  480. {"key":"毒蜥蜴影視","name":"毒蜥蜴影視","type":0,"api":"https://www.duxiyi.com/api.php/provide/vod/at/xml/","playUrl":"https://jx.renrenmi.cc/?url=","searchable":1,"quickSearch":0,"filterable":0},
  481. {"key":"一点影视","name":"一点影视","type":1,"api":"https://m3u8.movurl.xyz/api.php/provide/vod/","playUrl":"https://jx.movurl.top/?url=","searchable":1,"quickSearch":1,"categories":[]},
  482. {"key":"星一官采","name":"星一官采","type":1,"api":"https://gcku.suboyun.vip/api.php/provide/vod/","playUrl":"https://www.xing1.vip/player/dp/?url=","searchable":1,"quickSearch":1,"categories":[]},
  483. {"key":"剧大神","name":"剧大神","type":1,"api":"http://judashen.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":1,"categories":[]},
  484. //以下为1-8限
  485. {"key":"环","name":"*环","type":0,"api":"http://wmcj8.com/inc/sapi.php?ac=videolist","playUrl":"","categories":[],"quickSearch":0},
  486. {"key":"狼","name":"狼","type":0,"api":"http://cjmygzy.com/inc/sapi.php?ac=videolist","playUrl":"","categories":[],"quickSearch":0},
  487. {"key":"富","name":"富","type":0,"api":"http://f2dcj6.com/sapi/?ac=videolist","playUrl":"","categories":[],"quickSearch":0},
  488. {"key":"美","name":"美","type":1,"api":"https://www.msnii.com/api/json.php","playUrl":"","categories":[],"quickSearch":0},
  489. {"key":"香","name":"香","type":1,"api":"https://www.gdlsp.com/api/json.php","playUrl":"","categories":[],"quickSearch":0},
  490. {"key":"花","name":"花","type":1,"api":"https://apihjzy.com/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
  491. {"key":"探","name":"探","type":1,"api":"https://apittzy.com/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
  492. {"key":"A","name":"A","type":0,"api":"http://m.7777688.com/inc/api.php","playUrl":"","categories":[],"quickSearch":0},
  493. {"key":"水","name":"水","type":1,"api":"https://www.xrbsp.com/api/json.php","playUrl":"","categories":[],"quickSearch":0},
  494. {"key":"佳","name":"佳","type":0,"api":"https://api.jializyzapi.com/inc/api.php","playUrl":"","categories":[],"quickSearch":0},
  495. {"key":"白","name":"白","type":1,"api":"https://www.kxgav.com/api/json.php","playUrl":"","categories":[],"quickSearch":0},
  496. {"key":"鲨","name":"鲨","type":1,"api":"https://shayuapi.com/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
  497. {"key":"袜","name":"袜","type":1,"api":"https://siwazyw.net/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
  498. {"key":"乐","name":"乐","type":1,"api":"https://lbapi9.com/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
  499. {"key":"字","name":"字","type":0,"api":"http://zmcj88.com/sapi?ac=videolist","playUrl":"","categories":[],"quickSearch":0},
  500. {"key":"J","name":"J","type":0,"api":"http://mygzycj.com/api.php?ac=list","playUrl":"","categories":[],"quickSearch":0},
  501. {"key":"S","name":"S","type":0,"api":"http://secj8.com/inc/sapi.php?ac=videolist","playUrl":"","categories":[],"quickSearch":0},
  502. {"key":"速","name":"速","type":0,"api":"http://www.ggmmzy.com:9999/inc/xml","playUrl":"","categories":[],"quickSearch":0,"searchable":0},
  503. {"key":"天","name":"天","type":0,"api":"http://bttcj.com/inc/sapi.php?ac=videolist","playUrl":"","categories":[],"quickSearch":0},
  504. {"key":"番","name":"番","type":1,"api":"http://fhapi9.com/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
  505. {"key":"来","name":"来","type":0,"api":"http://llzxcj.com/inc/sck.php?ac=videolist","playUrl":"","categories":[],"quickSearch":0},
  506. {"key":"玖","name":"玖","type":0,"api":"http://99zywcj.com/inc/sapi.php?ac=videolist","playUrl":"","categories":[],"quickSearch":0},
  507. {"key":"桃","name":"桃","type":1,"api":"https://api.taoseapi.com/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
  508. {"key":"秀","name":"秀","type":1,"api":"https://api.xiuseapi.com/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0},
  509. {"key":"CK","name":"CK","type":1,"api":"https://ckzy.me/api.php/provide/vod/","playUrl":"","categories":[],"quickSearch":0}
  510. ],
  511. //以下直播列表
  512. "lives": [
  513. //proxy加载列表
  514. //{"group":"redirect","channels":[
  515. //{"name":"live","urls":["proxy://do=live&type=txt&ext=aHR0cDovL2ZqMzY1Lm1sLzAvdHYudHh0"]}
  516. //]}
  517. //
  518. {"group": "CCTV","channels": [{"name":"反馈蜗牛ci.ci/672","urls":["http://dyscdnali1.douyucdn.cn/live/122402rK7MO9bXSq.flv?uuid="]},
  519. {"name":"李子柒","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="]},
  520. {"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"]},
  521. {"name":"CCTV-1","urls":["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"]},
  522. {"name":"CCTV-2","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225706/1/index.m3u8?fmt=ts2hls","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"]},
  523. {"name":"CCTV-3","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226008/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226040/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226263/1/index.m3u8?fmt=ts2hls","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"]},
  524. {"name":"CCTV-4","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225779/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221225744/1/index.m3u8?fmt=ts2hls","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"]},
  525. {"name":"CCTV-5","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226024/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226043/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226248/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226259/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226306/1/index.m3u8?fmt=ts2hls","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"]},
  526. {"name":"CCTV-5+","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226128/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226171/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226285/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226309/1/index.m3u8?fmt=ts2hls","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"]},
  527. {"name":"CCTV-6","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226011/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226046/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226250/1/index.m3u8?fmt=ts2hls","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"]},
  528. {"name":"CCTV-7","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225745/1/index.m3u8?fmt=ts2hls","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"]},
  529. {"name":"CCTV-8","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226005/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226060/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226244/1/index.m3u8?fmt=ts2hls","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"]},
  530. {"name":"CCTV-9","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226031/1/index.m3u8?fmt=ts2hls","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"]},
  531. {"name":"CCTV-10","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225685/1/index.m3u8?fmt=ts2hls","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"]},
  532. {"name":"CCTV-11","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225746/1/index.m3u8?fmt=ts2hls","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"]},
  533. {"name":"CCTV-12","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225747/1/index.m3u8?fmt=ts2hls","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"]},
  534. {"name":"CCTV-13","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225748/1/index.m3u8?fmt=ts2hls","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"]},
  535. {"name":"CCTV-14","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225727/1/index.m3u8?fmt=ts2hls","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"]},
  536. {"name":"CCTV-15","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225749/1/index.m3u8?fmt=ts2hls","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"]},
  537. {"name":"CCTV-16","urls":["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.136.12.4:6610/PLTV/88888888/224/3221226302/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226305/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"]},
  538. {"name":"CCTV-17","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226027/1/index.m3u8?fmt=ts2hls","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"]},
  539. {"name":"CCTV风云音乐","urls":["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"]},
  540. {"name":"CCTV女性时尚","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225699/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226104/1/index.m3u8?fmt=ts2hls","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"]},
  541. {"name":"CCTV兵器科技","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225676/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226111/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"]},
  542. {"name":"CCTV世界地理","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225733/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226071/1/index.m3u8?fmt=ts2hls","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"]},
  543. {"name":"CCTV风云足球","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225734/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226153/1/index.m3u8?fmt=ts2hls","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"]},
  544. {"name":"CCTV央视台球","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226117/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226156/1/index.m3u8?fmt=ts2hls","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"]},
  545. {"name":"CCTV高尔夫网球","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225674/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226114/1/index.m3u8?fmt=ts2hls","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"]},
  546. {"name":"CCTV电视指南","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225673/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226120/1/index.m3u8?fmt=ts2hls","http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226120/1/index.m3u8?fmt=ts2hls"]},
  547. {"name":"CCTV央视文化精品","urls":["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"]},
  548. {"name":"CCTV怀旧剧场","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225765/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226097/1/index.m3u8?fmt=ts2hls","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"]},
  549. {"name":"CCTV第一剧场","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225702/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226124/1/index.m3u8?fmt=ts2hls","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"]},
  550. {"name":"CCTV风云剧场","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221225700/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226107/1/index.m3u8?fmt=ts2hls","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"]},
  551. {"name":"CGTN","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226297/1/index.m3u8?fmt=ts2hls","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"]},
  552. {"name":"CGTN纪录","urls":["http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225645/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225602/index.m3u8","http://39.135.53.199/ott.fj.chinamobile.com/PLTV/88888888/224/3221225813/index.m3u8"]},
  553. {"name":"CCTV4EUO","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226266/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226268/1/index.m3u8?fmt=ts2hls"]},
  554. {"name":"CCTV4AME","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226269/1/index.m3u8?fmt=ts2hls","http://39.136.12.4:6610/PLTV/88888888/224/3221226300/1/index.m3u8?fmt=ts2hls"]},
  555. {"name":"CGTN法语","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226265/1/index.m3u8?fmt=ts2hls"]},
  556. {"name":"CGTN西班牙语","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226284/1/index.m3u8?fmt=ts2hls"]},
  557. {"name":"CGTN阿拉伯语","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226281/1/index.m3u8?fmt=ts2hls"]},
  558. {"name":"CGTN俄语","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226278/1/index.m3u8?fmt=ts2hls"]},
  559. {"name":"CGTNDocumentary","urls":["http://39.136.12.4:6610/PLTV/88888888/224/3221226271/1/index.m3u8?fmt=ts2hls"]},
  560. {"name":"中央新影-发现之旅","urls":["http://183.207.248.71/gitv/live1/G_FAXIANZL/G_FAXIANZL"]},
  561. {"name":"中央新影-中学生","urls":["http://39.136.18.76/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225663/1/index.m3u8?fmt=ts2hls"]},
  562. {"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"]},
  563. {"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"]},
  564. {"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"]},
  565. {"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"]}
  566. ]},
  567. {"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"]},
  568. {"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"]},
  569. {"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"]},
  570. {"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"]},
  571. {"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"]},
  572. {"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"]},
  573. {"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"]},
  574. {"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"]},
  575. {"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"]},
  576. {"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"]},
  577. {"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"]},
  578. {"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"]},
  579. {"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"]},
  580. {"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"]},
  581. {"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"]},
  582. {"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"]},
  583. {"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"]},
  584. {"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"]},
  585. {"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"]},
  586. {"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"]},
  587. {"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"]},
  588. {"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"]},
  589. {"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"]},
  590. {"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"]},
  591. {"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"]},
  592. {"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"]},
  593. {"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"]},
  594. {"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"]},
  595. {"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"]},
  596. {"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"]},
  597. {"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"]},
  598. {"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"]},
  599. {"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"]},
  600. {"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"]},
  601. {"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"]},
  602. {"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"]},
  603. {"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"]},
  604. {"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"]},
  605. {"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"]},
  606. {"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"]},
  607. {"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"]},
  608. {"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"]},
  609. {"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"]}
  610. ]},
  611. {"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://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"]},
  612. {"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://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"]},
  613. {"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"]},
  614. {"name":"凤凰电影台","urls":["http://iptv.tvfix.org/hls/fhdy.m3u8","http://v.mp.haue.edu.cn/hls/fhdy.m3u8","http://218.202.220.2:5000/nn_live.ts?id=NEWSASIA"]},
  615. {"name":"翡翠台","urls":["http://dllb.jxin122.top/jj.php?id=078&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://dllb.jxin122.top/jj.php?id=78&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://mmitv.top/pltv/gdgz.php?id=25&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=25&upt=604ef0611cb50f83","http://mmitv.top/pltv/gdgz.php?id=67&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=67&upt=604ef0611cb50f83","http://www.295ys.cf/abc.php?id=78","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://mmitv.top/pltv/gdgz.php?id=67&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=67-3&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=67-1&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=67-2&upt=63a44f4ef2f3c6ce","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://mmitv.top/pltv/gz.php?id=tvbfc","http://tyzb8081.weetai.cn:80/iptv-cdn/公众号=太阳视界/tyzb01.php?id=1350_1500"]},
  616. {"name":"明珠台","urls":["http://mmitv.top/pltv/gdgz.php?id=26&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=26&upt=604ef0611cb50f83","http://www.295ys.cf/abc.php?id=77","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://mmitv.top/pltv/gdgz.php?id=26&upt=7e4f8041b306488a","http://mmitv.top/pltv/gdgz.php?id=26-1&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=26-2&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=26-3&upt=63a44f4ef2f3c6ce","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","http://mmitv.top/pltv/gz.php?id=tvbfc","http://tyzb8081.weetai.cn:80/iptv-cdn/公众号=太阳视界/tyzb01.php?id=1351_1500"]},
  617. {"name":"TVB星河","urls":["http://dllb.jxin122.top/jj.php?id=76&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://dllb.jxin122.top/jj.php?id=076&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://mmitv.top/pltv/gdgz.php?id=135&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=135&upt=604ef0611cb50f83","http://www.295ys.cf/abc.php?id=76","http://mmitv.top/pltv/gdgz.php?id=135&upt=63a44f4ef2f3c6ce","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"]},
  618. {"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"]},
  619. {"name":"V音乐","urls":["http://mmitv.top/pltv/gdgz.php?id=88&upt=63a44f4ef2f3c6ce","http://mmitv.top/pltv/gdgz.php?id=88&upt=604ef0611cb50f83"]},
  620. {"name":"香港HKS","urls":["http://zhibo.hkstv.tv/livestream/mutfysrq.flv","http://anren.live/HK/BSJDUFpB.m3u8","http://zhibo.hkstv.tv/livestream/mutfysrq/playlist.m3u8","http://zhibo.hkstv.tv/livestream/mutfysrq.flv","http://zhibo.hkstv.tv:80/livestream/mutfysrq"]},
  621. {"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"]},
  622. {"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"]},
  623. {"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"]},
  624. {"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"]},
  625. {"name":"莲花卫视","urls":["http://nettvpro.live/hls/lotustv.php","http://anren.live/HK/BiIOU11uLA.m3u8"]},
  626. {"name":"民视","urls":["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"]},
  627. {"name":"台视","urls":["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"]},
  628. {"name":"中视","urls":["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"]},
  629. {"name":"华视","urls":["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"]},
  630. {"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"]},
  631. {"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"]},
  632. {"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"]},
  633. {"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"]},
  634. {"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"]},
  635. {"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"]},
  636. {"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"]},
  637. {"name":"卫视电影","urls":["http://dllb.jxin122.top/jj.php?id=4&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","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"]},
  638. {"name":"美亚电影","urls":["http://v3948069e.live.126.net/live/hodtv4003.flv","http://iptv5.phoves.com.cn/mytv/mitv.php?id=2"]},
  639. {"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"]},
  640. {"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"]},
  641. {"name":"邵氏电影","urls":["http://106.53.212.251/dl/tv.php?id=213"]},
  642. {"name":"龙华电影","urls":["http://220.134.196.147:8656/playlist.m3u8","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"]},
  643. {"name":"东森电影","urls":["http://mmitv.top/pltv/gdgz.php?id=dsdy&upt=604ef0611cb50f83","http://mmitv.top/pltv/gdgz.php?id=dsyp&upt=63a44f4ef2f3c6ce","http://66.90.88.132:8080/hls/ph00311/index.m3u8","http://anan.jxin122.top/cj.php?id=28&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://mmitv.top/pltv/gz.php?id=dsdy","rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d8a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  644. {"name":"龙翔电影","urls":["http://mmitv.top/pltv/gdgz.php?id=lxsd&upt=604ef0611cb50f83","http://www.295ys.cf/abc.php?id=13","http://anan.jxin122.top/cj.php?id=13&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://66.90.88.132:8080/hls/ph00314/index.m3u8"]},
  645. {"name":"东森洋片","urls":["http://mmitv.top/pltv/gdgz.php?id=dsyp&upt=604ef0611cb50f83"]},
  646. {"name":"M电影35","urls":["http://mmitv.top/pltv/gdgz.php?id=mdy35&upt=604ef0611cb50f83"]},
  647. {"name":"CCM","urls":["http://mmitv.top/pltv/gdgz.php?id=ccm&upt=604ef0611cb50f83"]},
  648. {"name":"纬来电影","urls":["http://211.23.114.106:8555/http/116.50.42.19:8081/hls/69/811/ch35.m3u8","http://211.23.114.106:8555/http/116.50.42.19:8081/hls/69/811/ch35.m3u8","http://66.90.88.132:8080/hls/ph00315/index.m3u8","rtmp://104.149.130.142/channel/60b4e50239e1b02e8b910c8c?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  649. {"name":"HBO","urls":["http://220.134.196.147:8657/playlist.m3u8","http://211.23.114.106:8511/http/116.50.42.19:8081/hls/71/813/ch41.m3u8","http://66.90.88.132:8080/hls/ph00231/index.m3u8","http://66.90.88.132:8080/hls/ph00211/index.m3u8","http://66.90.88.132:8080/hls/ph00232/index.m3u8","https://gratismkctv.net/film/hbo.m3u8","rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910cce","rtmp://45.92.126.226/channel/60c2f6ca961593122ebaf8dc","http://50.7.61.148:30080/Entry/hbo","rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910cce?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","rtmp://45.88.148.122/channel/60b4e50239e1b02e8b910caa?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","rtmp://104.149.130.142/channel/60b4e50239e1b02e8b910ccc?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","rtmp://104.149.188.82/channel/6162d414295d84395baff8bd?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  650. {"name":"AXN","urls":["http://220.134.196.147:8658/playlist.m3u8","http://211.23.114.106:8558/http/116.50.42.19:8081/hls/71/813/ch43.m3u8","http://66.90.88.132:8080/hls/ph00236/index.m3u8","http://50.7.61.148:30080/Entry/axn","http://50.7.61.148:30080/Entry/axn","rtmp://45.92.126.114/channel/61322915c6f62a25d2da21de?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","rtmp://45.88.148.114/channel/61322a00c6f62a25d2da21e4?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","rtmp://104.149.188.82/channel/6162d0c6295d84395baff01b?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  651. {"name":"FOX MOVIES","urls":["http://220.134.196.147:8660/playlist.m3u8","http://211.23.114.106:8560/http/116.50.42.19:8081/hls/62/804/ch08.m3u8","http://66.90.88.132:8080/hls/ph00238/index.m3u8","rtmp://104.149.130.142/channel/60b4e50239e1b02e8b910ca0?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","rtmp://45.88.148.114/channel/61322ac7c6f62a25d2da21ea?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910ca8","rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910ca8?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","rtmp://104.149.186.246/channel/6162c3f2295d84395bafd642?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","rtmp://104.149.184.98/channel/6162c327295d84395bafd4da?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  652. {"name":"CINEMAX","urls":["http://220.134.196.147:8659/playlist.m3u8","http://211.23.114.106:8559/http/116.50.42.19:8081/hls/71/813/ch42.m3u8","rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910cac?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://211.23.114.106:8516/http/61.221.81.94:8088/hls/70/812/ch39.m3u8","rtmp://104.149.191.182/channel/6162d63d295d84395baffed0?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","https://feed.play.mv/live/10005200/isU48qPZqV/master.m3u8"]},
  653. {"name":"国家地理","urls":["http://220.134.196.147:8619/playlist.m3u8","http://iptv.tvfix.org/hls/natlgeo.m3u8","rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910ca6","http://66.90.88.132:8080/hls/ph00242/index.m3u8","http://211.23.114.106:8509/http/61.221.81.94:8088/hls/61/803/ch01.m3u8","rtmp://45.88.148.122/channel/60b4e50239e1b02e8b910d70?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910d1e?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://50.7.161.82:8278/streams/d/Natgeowild/playlist.m3u8"]},
  654. {"name":"法国时尚","urls":["http://lb.streaming.sk/fashiontv/stream/chunklist.m3u8","rtmp://45.88.148.122/channel/60b4e50239e1b02e8b910c5c?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","rtmp://45.88.148.114/channel/61004184f0618408855f3758?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  655. {"name":"M20TV","urls":["http://m2otv-lh.akamaihd.net/i/m2oTv_1@186074/index_600_av-b.m3u8"]},
  656. {"name":"大爱一台","urls":["https://pulltv1.wanfudaluye.com/live/tv1.m3u8","rtmp://45.88.148.114/channel/60b4e50239e1b02e8b910c7a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  657. {"name":"大爱二台","urls":["https://pulltv2.wanfudaluye.com/live/tv2.m3u8","rtmp://45.88.148.122/channel/60c3441b961593122ebaf99a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  658. {"name":"大爱海外","urls":["https://pulltv3.wanfudaluye.com/live/tv3.m3u8"]},
  659. {"name":"三立台湾台","urls":["http://dllb.jxin122.top/jj.php?id=24&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://www.295ys.cf/abc.php?id=24","http://211.23.114.106:8521/http/60.251.39.91:8081/hls/65/807/ch20.m3u8","https://setlive-lh.akamaihd.net/i/settaiwan_1@301196/index_1080_av-b.m3u8?sd=10&rebase=on","https://setlive-lh.akamaihd.net/i/settaiwan_1@301196/index_1080_av-b.m3u8?sd=10&rebase=on","https://setlive-lh.akamaihd.net/i/settaiwan_1@301196/index_1080_av-b.m3u8","http://50.7.61.148:30080/Entry/settw-","rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910c78?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  660. {"name":"三立都会台","urls":["http://dllb.jxin122.top/jj.php?id=25&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://211.23.114.106:8522/http/60.251.39.91:8081/hls/65/807/ch19.m3u8","https://setlive-lh.akamaihd.net/i/setmetro_1@132201/index_1080_av-b.m3u8?sd=10&rebase=on","https://setlive-lh.akamaihd.net/i/setmetro_1@132201/index_1080_av-b.m3u8?sd=10&rebase=on","https://setlive-lh.akamaihd.net/i/setmetro_1@132201/index_1080_av-b.m3u8","rtmp://45.92.126.226/channel/60c53f4a961593122ebafa48?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  661. {"name":"卫视中文台","urls":["http://211.23.114.106:8514/http/60.251.39.91:8081/hls/62/804/ch05.m3u8","http://50.7.61.148:30080/Entry/starchinese","http://50.7.61.148:30080/Entry/starchinese"]},
  662. {"name":"龍華日韓台","urls":["http://220.134.196.147:8645/playlist.m3u8","http://211.23.114.106:8535/http/59.120.8.187:8066/hls/210/10011/cstv11.m3u8","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn11","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn11"]},
  663. {"name":"龍華戲劇台","urls":["http://220.134.196.147:8644/playlist.m3u8","http://211.23.114.106:8534/http/59.120.8.187:8066/hls/210/10010/cstv10.m3u8","rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d18?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","rtmp://45.88.148.114/channel/60b4e50239e1b02e8b910cc0?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn18","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn18"]},
  664. {"name":"龍華偶像台","urls":["http://220.134.196.147:8646/playlist.m3u8","http://211.23.114.106:8579/http/59.120.8.187:8066/hls/210/10012/cstv12.m3u8","rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d48?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn12","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn12"]},
  665. {"name":"龍華動畫台","urls":["http://220.134.196.147:8627/playlist.m3u8","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn01","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn01"]},
  666. {"name":"龍華經典台","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn21","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn21"]},
  667. {"name":"愛爾達綜合台","urls":["http://93.190.139.36:8278/streams/d/eltazonghe/playlist.m3u8"]},
  668. {"name":"MoMo綜合台","urls":["rtmp://59.124.75.138/sat/tv761","rtmp://9wv7.mine.nu/sat/tv761","rtmp://45.88.148.178/channel/60b4e50239e1b02e8b910cc8?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://58.99.33.16:1935/liveedge17/live_075_3.stream/chunklist.m3u8"]},
  669. {"name":"海豚綜合","urls":["http://58.99.33.16:1935/liveedge17/live_077_3.stream/chunklist.m3u8"]},
  670. {"name":"美麗人生","urls":["http://58.99.33.16:1935/liveedge17/live_070_3.stream/chunklist.m3u8"]},
  671. {"name":"東風衛視","urls":["http://211.23.114.106:8578/http/60.251.39.91:8081/hls/68/810/ch31.m3u8"]},
  672. {"name":"東森新聞","urls":["http://211.23.114.106:8540/http/60.251.39.91:8081/hls/63/805/ch10.m3u8","http://66.90.88.132:8080/hls/ph00319/index.m3u8","rtmp://45.88.148.178/channel/6100144cf0618408855f36e1?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  673. {"name":"東森綜合","urls":["http://220.134.196.147:8634/playlist.m3u8","http://211.23.114.106:8524/http/60.251.39.91:8081/hls/63/805/ch12.m3u8","rtmp://45.88.148.122/channel/60b4e50239e1b02e8b910d86?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  674. {"name":"東森超視","urls":["http://220.134.196.147:8635/playlist.m3u8","rtmp://9wv7.mine.nu/sat/tv521","http://211.23.114.106:8525/http/60.251.39.91:8081/hls/64/806/ch14.m3u8","rtmp://104.149.130.142/channel/60b4e50239e1b02e8b910d8e?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  675. {"name":"東森幼幼","urls":["http://211.23.114.106:8515/http/61.221.81.94:8088/hls/63/805/ch09.m3u8","rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d84?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  676. {"name":"東森戲劇","urls":["http://220.134.196.147:8640/playlist.m3u8","http://211.23.114.106:8530/http/60.251.39.91:8081/hls/64/806/ch13.m3u8","rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d88","rtmp://45.92.126.226/channel/60b4e50239e1b02e8b910d88?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  677. {"name":"東森財經","urls":["rtmp://9wv7.mine.nu/sat/tv571","rtmp://59.124.75.138/sat/tv571","http://211.23.114.106:8546/http/116.50.42.19:8081/hls/63/805/ch11.m3u8","rtmp://104.149.141.122/channel/60b4e50239e1b02e8b910c84?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  678. {"name":"JET綜合台","urls":["rtmp://45.88.148.178/channel/60b4e50239e1b02e8b910c74?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","rtmp://45.88.148.178/channel/60b4e50239e1b02e8b910c74","http://50.7.61.147:30080/Entry/jet"]},
  679. {"name":"緯來戲劇","urls":["http://220.134.196.147:8643/playlist.m3u8","http://211.23.114.106:8533/http/60.251.39.91:8081/hls/69/811/ch33.m3u8","rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910c9a?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  680. {"name":"緯來日本","urls":["http://220.134.196.147:8647/playlist.m3u8","rtmp://59.124.75.138/sat/tv771","rtmp://9wv7.mine.nu/sat/tv771","http://211.23.114.106:8537/http/60.251.39.91:8081/hls/69/811/ch34.m3u8","rtmp://45.92.126.114/channel/60c312ed961593122ebaf8f3?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://50.7.61.147:30080/Entry/vljp"]},
  681. {"name":"緯來綜合","urls":["http://220.134.196.147:8628/playlist.m3u8","http://211.23.114.106:8518/http/61.221.81.94:8088/hls/68/810/ch32.m3u8","rtmp://104.149.131.118/channel/60c312b7961593122ebaf8f1?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  682. {"name":"緯來育樂","urls":["http://220.134.196.147:8662/playlist.m3u8","rtmp://9wv7.mine.nu/sat/tv701","rtmp://45.92.126.226/channel/60c31357961593122ebaf8f8?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://211.23.114.106:8562/http/116.50.42.19:8081/hls/68/810/ch30.m3u8","rtmp://59.124.75.138/sat/tv701"]},
  683. {"name":"緯來精采","urls":["rtmp://104.149.131.118/channel/60b4e50239e1b02e8b910d2e?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  684. {"name":"緯來體育","urls":["http://211.23.114.106:8563/http/59.120.8.187:8081/hls/67/809/ch28.m3u8","rtmp://104.149.131.118/channel/60c3138a961593122ebaf8fa?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  685. {"name":"八大第一","urls":["http://220.134.196.147:8629/playlist.m3u8","http://www.295ys.cf/abc.php?id=21","http://211.23.114.106:8536/http/61.221.81.94:8088/hls/66/808/ch22.m3u8","rtmp://104.149.131.118/channel/60c31d07961593122ebaf92d?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  686. {"name":"八大綜合","urls":["http://220.134.196.147:8630/playlist.m3u8","http://www.295ys.cf/abc.php?id=22","http://211.23.114.106:8520/http/61.221.81.94:8088/hls/66/808/ch21.m3u8","rtmp://45.83.118.242/channel/60c31c5a961593122ebaf92b?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv039"]},
  687. {"name":"八大戲劇","urls":["http://220.134.196.147:8641/playlist.m3u8","http://211.23.114.106:8531/http/60.251.39.91:8081/hls/66/808/ch23.m3u8","rtmp://45.83.118.242/channel/60c31d53961593122ebaf92f?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  688. {"name":"八大娛樂","urls":["http://www.295ys.cf/abc.php?id=20","rtmp://45.88.148.122/channel/60c31db1961593122ebaf931?sign=epgg4bkSF4hx%2BZ5WNsuYKsEpljb%2FpPGYAqq21iv2vQJp%2B%2B%2FBLThgPxbdMeXbUy1XfWEH"]},
  689. {"name":"八大精彩","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv034"]},
  690. {"name":"TVBS","urls":["http://211.23.114.106:8545/http/116.50.42.19:8081/hls/64/806/ch15.m3u8","http://66.90.88.132:8080/hls/ph00316/index.m3u8"]},
  691. {"name":"TVBS新聞台","urls":["rtmp://9wv7.mine.nu/sat/tv551","rtmp://59.124.75.138/sat/tv551","http://211.23.114.106:8546/http/116.50.42.19:8081/hls/64/806/ch16.m3u8","http://66.90.88.132:8080/hls/ph00318/index.m3u8"]},
  692. {"name":"TVBS歡樂台","urls":["rtmp://9wv7.mine.nu/sat/tv421","rtmp://59.124.75.138/sat/tv421","rtmp://59.124.75.138:1935/sat/tv421","http://211.23.114.106:8532/http/60.251.39.91:8081/hls/65/807/ch17.m3u8","http://66.90.88.132:8080/hls/ph00317/index.m3u8","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv068"]},
  693. {"name":"WAKUWAKUJAPAN","urls":["http://211.23.114.106:8538/http/60.251.39.91:8081/hls/61/803/ch03.m3u8"]},
  694. {"name":"wbtv","urls":["http://66.90.88.132:8080/hls/ph00235/index.m3u8"]},
  695. {"name":"dmax","urls":["http://66.90.88.132:8080/hls/ph00241/index.m3u8"]},
  696. {"name":"wild","urls":["http://66.90.88.132:8080/hls/ph00243/index.m3u8"]},
  697. {"name":"H","urls":["http://66.90.88.132:8080/hls/ph00250/index.m3u8","http://66.90.88.132:8080/hls/ph00251/index.m3u8"]},
  698. {"name":"BBC","urls":["http://66.90.88.132:8080/hls/ph00249/index.m3u8"]},
  699. {"name":"年代新聞","urls":["http://dllb.jxin122.top/jj.php?id=7&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://211.23.114.106:8517/http/60.251.39.91:8081/hls/67/809/ch27.m3u8"]},
  700. {"name":"中天新聞","urls":["http://dllb.jxin122.top/jj.php?id=42&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://211.23.114.106:8541/http/60.251.39.91:8081/hls/78/80/ch63max.m3u8","http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv009"]},
  701. {"name":"民視新聞","urls":["http://dllb.jxin122.top/jj.php?id=5&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://211.23.114.106:8542/http/60.251.39.91:8081/hls/73/815/ch51.m3u8","http://66.90.88.132:8080/hls/ph00322/index.m3u8"]},
  702. {"name":"中視新聞","urls":["http://dllb.jxin122.top/jj.php?id=19&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://66.90.88.132:8080/hls/ph00323/index.m3u8"]},
  703. {"name":"台視新聞","urls":["http://66.90.88.132:8080/hls/ph00324/index.m3u8"]},
  704. {"name":"华視新聞","urls":["http://66.90.88.132:8080/hls/ph00325/index.m3u8"]},
  705. {"name":"三立新聞","urls":["http://220.134.196.147:8605/playlist.m3u8","http://211.23.114.106:8543/http/60.251.39.91:8081/hls/65/807/ch18.m3u8","http://66.90.88.132:8080/hls/ph00320/index.m3u8"]},
  706. {"name":"寰宇新聞","urls":["http://220.134.196.147:8609/playlist.m3u8","http://211.23.114.106:8547/http/116.50.42.19:8081/hls/76/818/ch62.m3u8","http://58.99.33.16:1935/liveedge17/live_163_3.stream/chunklist.m3u8", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn15", "http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn15"]},
  707. {"name":"壹新聞","urls":["http://dllb.jxin122.top/jj.php?id=34&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://211.23.114.106:8548/http/116.50.42.19:8081/hls/66/808/ch24.m3u8","http://50.7.61.147:30080/Entry/etv"]},
  708. {"name":"CNN新聞","urls":["http://211.23.114.106:8549/http/116.50.42.19:8081/hls/68/810/ch29.m3u8"]},
  709. {"name":"CNBC新聞","urls":["http://220.134.196.147:8650/playlist.m3u8","http://211.23.114.106:8550/http/116.50.42.19:8078/hls/24/80/cnbc90.m3u8"]},
  710. {"name":"Bloomberg","urls":["http://220.134.196.147:8651/playlist.m3u8","http://211.23.114.106:8551/http/116.50.42.19:8078/hls/43/80/bloomber.m3u8"]},
  711. {"name":"sky新聞","urls":["http://66.90.88.132:8080/hls/ph00212/index.m3u8"]},
  712. {"name":"NHK新聞","urls":["http://220.134.196.147:8652/playlist.m3u8","http://211.23.114.106:8552/http/116.50.42.19:8081/hls/62/804/ch06.m3u8"]}
  713. ]},
  714. {"group": "海外","channels": [{"name":"日·全天新闻","urls":["https://n24-cdn-live.ntv.co.jp/ch01/index.m3u8"]},
  715. {"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"]},
  716. {"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"]},
  717. {"name":"韩·KBC","urls":["http://119.200.131.11:1935/KBCTV/tv/playlist.m3u8","http://119.77.96.184:1935/chn05/chn05/chunklist_w644291506.m3u8"]},
  718. {"name":"韩·SBS","urls":["http://119.200.131.11:1935/KBCTV/tv/playlist.m3u8","http://1.245.74.5:1935/live/tv/.m3u8"]},
  719. {"name":"韩·KBS","urls":["http://luotuo.ycchenrong.cn/dl/youku.php?id=8034767"]},
  720. {"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"]},
  721. {"name":"韩·MTN","urls":["http://183.110.27.87/mtnlive/_definst_/720/chunklist.m3u8"]},
  722. {"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"]},
  723. {"name":"韩·KCTV","urls":["http://119.77.96.184:1935/chn21/chn21/chunklist_w252131137.m3u8"]},
  724. {"name":"韩·TBS","urls":["http://58.234.158.60:1935/catvlive/myStream/playlist.m3u8","http://58.234.158.60:1935/catvlive/myStream/playlist.m3u8"]},
  725. {"name":"韩·SBSCJB","urls":["http://1.222.207.80:1935/live/cjbtv/chunklist_w1357270949.m3u8"]},
  726. {"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"]},
  727. {"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"]},
  728. {"name":"韩·EBSE","urls":["http://ebsonairios.ebs.co.kr/plus3tablet500k/tablet500k/plus3tablet500k.index.m3u8","http://ebsonairios.ebs.co.kr/plus3tablet500k/tablet500k/plus3tablet500k.index.m3u8"]},
  729. {"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"]},
  730. {"name":"韩·KBSWorld","urls":["https://livecdn.fptplay.net/sdb/kbs_hls.smil/chunklist_b2500000.m3u8"]},
  731. {"name":"韩·SexyK-Pop","urls":["https://srv1.zcast.com.br/kpoptv/kpoptv/.m3u8"]},
  732. {"name":"韩·EBS少儿","urls":["http://ebsonairios.ebs.co.kr/ebsutablet500k/_definst_/tablet500k/chunklist_w1965791004.m3u8"]},
  733. {"name":"韩·BBS佛教","urls":["http://bbstv.clouducs.com:1935/bbstv-live/livestream/chunklist_w1403706733.m3u8"]},
  734. {"name":"韩·职业","urls":["http://live.worktv.or.kr:1935/live/wowtvlive1.sdp/playlist.m3u8"]},
  735. {"name":"韩·GOODTV","urls":["http://mobliestream.c3tv.com:554/live/goodtv.sdp/playlist.m3u8"]},
  736. {"name":"韩·YTNDMB","urls":["http://slive.ytn.co.kr:1935/dmb/ydlive_20140419_1/playlist.m3u8"]},
  737. {"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"]},
  738. {"name":"日·Animax HD","urls":["https://livecdn.fptplay.net/hda3/animaxport_hls.smil/chunklist.m3u8","https://livecdn.fptplay.net/hda3/animaxport_2000.stream/.m3u8"]},
  739. {"name":"日·Atx","urls":["https://sub2.neetball.net/live/neet.m3u8"]},
  740. {"name":"日·ウェザーニュース","urls":["https://movie.mcas.jp/mcas/smil:wn1.smil/master.m3u8","http://movie.mcas.jp/mcas/wn1_2/master.m3u8"]},
  741. {"name":"日·Gunma TV","urls":["https://movie.mcas.jp/switcher/smil:mcas8.smil/master.m3u8"]},
  742. {"name":"日·宝石GSTV","urls":["https://gemstv.wide-stream.net/gemstv01/smil:gemstv01.smil/chunklist_w1860888413_b600000.m3u8"]},
  743. {"name":"日·声优广播","urls":["http://www.uniqueradio.jp/agplayerf/hls/Active.m3u8"]},
  744. {"name":"日·QVC","urls":["http://cdn-live1.qvc.jp/iPhone/800/800.m3u8"]},
  745. {"name":"日·NHK华语","urls":["https://nhkw-zh-hlscomp.akamaized.net/8thz5iufork8wjip/playlist.m3u8"]},
  746. {"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"]},
  747. {"name":"Channel News Asia","urls":["https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_5.m3u8"]},
  748. {"name":"FTVLIVE","urls":["http://218.236.58.185:1935/FTVLIVE_MOBILE/Stream_mobile/playlist.m3u8"]},
  749. {"name":"新闻CBS News 1","urls":["http://cbsnewshd-lh.akamaihd.net/i/CBSNHD_7@199302/master.m3u8"]},
  750. {"name":"俄·IGITV蓝光","urls":["http://hls-igi.cdnvideo.ru/igi/igi_hq/playlist.m3u8"]},
  751. {"name":"俄·ТВTV蓝光","urls":["http://hls-video01.cdnvideo.ru/video01/smil:video01.smil/chunklist_b4128000.m3u8"]},
  752. {"name":"俄·NastoyashcheyeVremya","urls":["http://rfe-lh.akamaihd.net/i/rfe_tvmc5@383630/master.m3u8"]},
  753. {"name":"俄·RBC(Opt-1)","urls":["http://92.50.128.180/utv/1358/index.m3u8"]},
  754. {"name":"俄·音乐TROSoyuz","urls":["http://live2.mediacdn.ru/sr1/tro/playlist.m3u8"]},
  755. {"name":"俄·Euronews","urls":["http://evronovosti.mediacdn.ru/sr1/evronovosti/playlist_2m.m3u8"]},
  756. {"name":"和平HBTV","urls":["http://hoabinhtvlive.746b3ddb.cdnviet.com/hoabinhtv/playlist.m3u8"]},
  757. {"name":"KPRF","urls":["http://kprf-htlive.cdn.ngenix.net/live/_definst_/stream_high/chunklist.m3u8"]},
  758. {"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"]},
  759. {"name":"VOA卫视『蓝光』","urls":["https://voa-lh.akamaihd.net/i/voa_mpls_tvmc8@326847/master.m3u8"]},
  760. {"name":"Channel News Asia『蓝光』","urls":["http://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_5.m3u8"]},
  761. {"name":"CNBC 18","urls":["https://cnbctv18-lh.akamaihd.net/i/cnbctv18_1@174868/index_5_av-p.m3u8"]},
  762. {"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"]},
  763. {"name":"NDTV 24X7","urls":["https://ndtv24x7elemarchana.akamaized.net/hls/live/2003678/ndtv24x7/ndtv24x7master.m3u8"]},
  764. {"name":"VB","urls":["http://live.tv2bornholm.dk/stream/live/chunklist.m3u8"]},
  765. {"name":"半·新闻","urls":["http://live-hls-web-aja.getaj.net/AJA/02.m3u8"]},
  766. {"name":"美·彭博财经Bloomberg TV","urls":["http://liveproduseast.akamaized.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-1000-1_live.m3u8"]},
  767. {"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"]},
  768. {"name":"意·电台","urls":["http://radioitaliatv-lh.akamaihd.net/i/radioitaliatv_1@329645/index_720x480_av-p.m3u8"]},
  769. {"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"]},
  770. {"name":"Ytv","urls":["http://streams.sibinformburo.cdnvideo.ru/sibinformburo/sibinformburo.sdp/chunklist.m3u8"]},
  771. {"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"]},
  772. {"name":"新加坡","urls":["https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_4.m3u8"]},
  773. {"name":"赛马网","urls":["https://racingvic-i.akamaized.net/hls/live/598695/racingvic/268.m3u8"]},
  774. {"name":"HP音乐蓝光","urls":["http://hls-video01.cdnvideo.ru/video01/smil:video01.smil/chunklist_b4128000.m3u8"]},
  775. {"name":"彭博财经","urls":["http://liveproduseast.akamaized.net/us/Channel-USTV-AWS-virginia-1/Source-USTV-1000-1_live.m3u8"]},
  776. {"name":"美法·时尚音乐","urls":["http://lb.streaming.sk/fashiontv/stream/chunklist_w1702070444.m3u8"]},
  777. {"name":"模特音乐FashionTV(SK)","urls":["http://lb.streaming.sk/fashiontv/stream/chunklist_w1906011378.m3u8","http://95.67.47.115/hls/hdfashion_ua_low/index.m3u8"]},
  778. {"name":"音乐MusicTop","urls":["http://live-edge01.telecentro.net.ar/live/smil:musictop.smil/chunklist_w538311571_b364000_sleng.m3u8"]},
  779. {"name":"TVIkim音乐(1080p)","urls":["http://edge.vediostream.com/abr/tvikim/live/tvikim_source/playlist.m3u8"]},
  780. {"name":"CNA(1080p)","urls":["https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index.m3u8"]},
  781. {"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"]},
  782. {"name":"西·加利西亚欧洲体育电视台","urls":["http://europa-crtvg.flumotion.com/playlist.m3u8"]},
  783. {"name":"泰·THAIPBS","urls":["http://thaipbs-live.cdn.byteark.com/live-en/playlist_720p/index.m3u8"]},
  784. {"name":"美·CSBN","urls":["https://cbsnhls-i.akamaihd.net/hls/live/264710/cbsn_hlsprod_2/master_360.m3u8"]},
  785. {"name":"澳·赛马网","urls":["https://racingvic-i.akamaized.net/hls/live/598695/racingvic/268.m3u8"]},
  786. {"name":"西·CanalParlamento(Updated)","urls":["http://congresodirecto-f.akamaihd.net:80/i/congreso6_1@54665/master.m3u8"]},
  787. {"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"]},
  788. {"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"]},
  789. {"name":"墨·UnoTV(VOD)","urls":["http://ooyalahd2-f.akamaihd.net/i/UnoTV01_delivery@122640/master.m3u8"]},
  790. {"name":"哥斯达黎加ExtremaTV","urls":["http://livestreamcdn.net:1935/ExtremaTV/ExtremaTV/playlist.m3u8"]},
  791. {"name":"乌·M2音乐","urls":["http://live.m2.tv/hls3/stream.m3u8"]},
  792. {"name":"乌·100ws","urls":["http://85.238.112.40:8810/hls_sec/239.33.16.32-.m3u8"]},
  793. {"name":"乌·Lale","urls":["http://stream.atr.ua/lale//live/index.m3u8"]},
  794. {"name":"捷·音乐Retro(Opt-1)","urls":["http://stream.mediawork.cz/retrotv/retrotvHQ1/playlist.m3u8"]},
  795. {"name":"斯·TV8","urls":["http://109.74.145.11:1935/tv8/mp4:tv8.stream_360p/chunklist_w974670813.m3u8"]},
  796. {"name":"斯·TVNZ","urls":["http://s1.media-planet.sk:80/live/novezamky/BratuMarian.m3u8"]},
  797. {"name":"希·FoxTV","urls":["http://live.streams.ovh:1935/foxtv/foxtv/playlist.m3u8"]},
  798. {"name":"印·ABPAsmita","urls":["http://abpasmita-lh.akamaihd.net:80/i/abpasmita_1@77821/master.m3u8"]},
  799. {"name":"日·CGNTV","urls":["http://cgntv-glive.ofsdelivery.net/live/_definst_/cgntv_jp/chunklist_w564190259.m3u8"]},
  800. {"name":"越·ANTV","urls":["http://antvlive.ab5c6921.cdnviet.com/antv/playlist.m3u8"]},
  801. {"name":"阿尔巴利亚","urls":["http://tvsn-i.akamaihd.net/hls/live/261837/expo/expo_750.m3u8"]},
  802. {"name":"狗狗宠物","urls":["http://video.blivenyc.com/broadcast/prod/2061/22/file-3192k.m3u8"]},
  803. {"name":"西·Ⅰ中国环球","urls":["http://livees.cgtn.com/1000e/prog_index.m3u8"]},
  804. {"name":"VB","urls":["http://live.tv2bornholm.dk/stream/live/chunklist.m3u8"]},
  805. {"name":"THAIPBS-3","urls":["http://thaipbs-live.cdn.byteark.com/live/playlist_480p/index.m3u8"]},
  806. {"name":"France24Arabic","urls":["http://static.france24.com/live/F24_AR_LO_HLS/live_web.m3u8"]},
  807. {"name":"TV7+(Хмельн)","urls":["http://tv7plus.com/hls/tv7_site.m3u8"]},
  808. {"name":"新·Ⅰ亚洲新闻","urls":["http://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_4.m3u8"]},
  809. {"name":"ANTV","urls":["http://antvlive.ab5c6921.cdnviet.com/antv/playlist.m3u8"]},
  810. {"name":"泰·公共三台","urls":["http://thaipbs-live.cdn.byteark.com/live/playlist_1080p/index.m3u8"]},
  811. {"name":"TVIKIM44","urls":["http://edge.vediostream.com/abr/tvikim/live/tvikim_480p/playlist.m3u8"]},
  812. {"name":"45","urls":["http://edge.vediostream.com/abr/tvikim/live/tvikim_480p/chunks.m3u8"]},
  813. {"name":"ZEEALWAN50","urls":["http://ghaasiflu.online/Dijlah/tracks-v1a1/mono.m3u8"]},
  814. {"name":"越·HBTV","urls":["http://hoabinhtvlive.746b3ddb.cdnviet.com/hoabinhtv/playlist.m3u8"]}
  815. ]},
  816. {"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"]},
  817. {"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"]},
  818. {"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"]},
  819. {"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"]},
  820. {"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"]},
  821. {"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"]},
  822. {"name":"古天樂","urls":["http://117.148.179.176/PLTV/88888888/224/3221231645/index.m3u8","http://api.phoves.com.cn/iptv/huya.php?id=10871113"]},
  823. {"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"]},
  824. {"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"]},
  825. {"name":"甄子丹","urls":["https://hw.flv.huya.com/src/1423787820-1423787820-6115122123343134720-2847699096-10057-A-0-1-imgplus.m3u8"]},
  826. {"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"]},
  827. {"name":"五福星","urls":["https://hw.flv.huya.com/src/1356780980-1356780980-5827329936934830080-2713685416-10057-A-0-1.m3u8"]},
  828. {"name":"李小龙","urls":["https://hw.flv.huya.com/src/1449588725-1449588725-6225936166525337600-3048959678-10057-A-0-1.m3u8"]},
  829. {"name":"李连杰","urls":["https://hw.flv.huya.com/src/1394565196-1394565196-5989611908959830016-2789253848-10057-A-0-1-imgplus.m3u8"]},
  830. {"name":"女神系列","urls":["https://hw.flv.huya.com/src/1388451591-1388451591-5963354175424167936-2777026638-10057-A-0-1-imgplus.m3u8"]},
  831. {"name":"张柏芝","urls":["https://hw.flv.huya.com/src/1524434111-1524434111-6547394651651833856-3048991678-10057-A-0-1.m3u8"]},
  832. {"name":"北有谢","urls":["https://hw.flv.huya.com/src/1445653465-1445653465-6209034353524080640-2847699238-10057-A-0-1.m3u8"]},
  833. {"name":"刘涛","urls":["https://hw.flv.huya.com/src/1524418105-1524418105-6547325906405294080-3048959666-10057-A-0-1.m3u8"]},
  834. {"name":"大咖自黑","urls":["https://hw.flv.huya.com/src/1449572975-1449572975-6225868520790425600-2789274544-10057-A-0-1.m3u8"]},
  835. {"name":"极限挑战","urls":["https://hw.flv.huya.com/src/1423782086-1423782086-6115097496000659456-2847687628-10057-A-0-1-imgplus.m3u8"]},
  836. {"name":"【黑帮大片】","urls":["https://hw.flv.huya.com/src/1388472589-1388472589-5963444361147449344-2777068634-10057-A-0-1-imgplus.m3u8"]},
  837. {"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"]},
  838. {"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"]},
  839. {"name":"高分影院","urls":["http://117.148.179.182/PLTV/88888888/224/3221231699/index.m3u8"]},
  840. {"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"]},
  841. {"name":"郭富城","urls":["http://117.148.179.152/PLTV/88888888/224/3221231688/index.m3u8"]},
  842. {"name":"楊冪","urls":["http://117.148.179.183/PLTV/88888888/224/3221231556/index.m3u8"]},
  843. {"name":"劉亦菲","urls":["http://117.148.179.165/PLTV/88888888/224/3221231787/index.m3u8"]},
  844. {"name":"懷舊老片","urls":["http://117.148.179.146/PLTV/88888888/224/3221231513/index.m3u8"]},
  845. {"name":"午夜失眠劇場","urls":["http://117.148.179.141/PLTV/88888888/224/3221231516/index.m3u8"]},
  846. {"name":"雲上電影院","urls":["http://117.148.179.176/PLTV/88888888/224/3221231565/index.m3u8"]},
  847. {"name":"每日科幻電影","urls":["http://117.148.179.160/PLTV/88888888/224/3221231568/index.m3u8"]},
  848. {"name":"殭屍劇場","urls":["http://117.148.179.165/PLTV/88888888/224/3221231742/index.m3u8","https://3954-quic.liveplay.myqcloud.com/live/3954_363783415.flv"]},
  849. {"name":"TVB劇場","urls":["http://117.148.179.157/PLTV/88888888/224/3221231733/index.m3u8"]},
  850. {"name":"新片放映廳","urls":["http://117.148.179.160/PLTV/88888888/224/3221231640/index.m3u8"]},
  851. {"name":"盜墓","urls":["http://117.148.179.164/PLTV/88888888/224/3221231652/index.m3u8"]},
  852. {"name":"試膽大會","urls":["http://117.148.179.166/PLTV/88888888/224/3221231672/index.m3u8"]},
  853. {"name":"高能燒腦時刻","urls":["http://117.148.179.169/PLTV/88888888/224/3221231504/index.m3u8"]},
  854. {"name":"4K劇場","urls":["http://117.148.179.161/PLTV/88888888/224/3221231624/index.m3u8"]},
  855. {"name":"愛情公寓","urls":["http://117.148.179.160/PLTV/88888888/224/3221231583/index.m3u8"]},
  856. {"name":"軍旅劇場","urls":["http://117.148.179.145/PLTV/88888888/224/3221231585/index.m3u8"]},
  857. {"name":"SNH48劇場公演","urls":["http://117.148.179.139/PLTV/88888888/224/3221231622/index.m3u8"]},
  858. {"name":"少林劇場","urls":["http://117.148.179.160/PLTV/88888888/224/3221231628/index.m3u8"]},
  859. {"name":"神探狄仁傑","urls":["http://117.148.179.139/PLTV/88888888/224/3221231634/index.m3u8"]},
  860. {"name":"黃金劇場","urls":["http://117.148.179.183/PLTV/88888888/224/3221231637/index.m3u8"]},
  861. {"name":"追劇少女","urls":["http://117.148.179.179/PLTV/88888888/224/3221231643/index.m3u8"]},
  862. {"name":"古龍作品集","urls":["http://117.148.179.160/PLTV/88888888/224/3221231657/index.m3u8"]},
  863. {"name":"經典賀歲片","urls":["http://117.148.179.159/PLTV/88888888/224/3221231679/index.m3u8"]},
  864. {"name":"每日薦影","urls":["http://117.148.179.162/PLTV/88888888/224/3221231727/index.m3u8"]},
  865. {"name":"武俠劇場","urls":["http://117.148.179.160/PLTV/88888888/224/3221231763/index.m3u8"]},
  866. {"name":"漫威DC★动作喜剧★经典电影 梦剧場","urls":["http://111.6.242.36/txpcdn.liveplay.egame.qq.com/live/3954_616645877_4000.flv"]},
  867. {"name":"国外影院","urls":["http://111.6.242.36/txpcdn.liveplay.egame.qq.com/live/3954_382971876_4000.flv"]},
  868. {"name":"头文字D","urls":["http://183.232.171.91/tx.hls.huya.com/src/1423782053-1423782053-6115097354266738688-2847687562-10057-A-0-1.m3u8"]},
  869. {"name":"KK_经典好剧","urls":["http://hpull.kktv8.com/livekktv/153793844/playlist.m3u8"]},
  870. {"name":"KK_科幻怪兽","urls":["http://hpull.kktv8.com/livekktv/143960119/playlist.m3u8"]},
  871. {"name":"KK_喜剧电影","urls":["http://hpull.kktv8.com/livekktv/99592190/playlist.m3u8"]},
  872. {"name":"KK_女神影院","urls":["http://hpull.kktv8.com/livekktv/99350550/playlist.m3u8"]},
  873. {"name":"BesTv影院1","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226757/45949783.smil"]},
  874. {"name":"Bestv影院2","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226816/48629572.smil"]},
  875. {"name":"Bestv影院3","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226748/45950069.smil"]},
  876. {"name":"Bestv影院4","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226797/47878049.smil"]},
  877. {"name":"Bestv电视剧1","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226761/45973212.smil"]},
  878. {"name":"Bestv电视剧2","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226022/10000100000000060000000002296864_0.smil"]},
  879. {"name":"Bestv电视剧3","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226752/45973624.smil"]},
  880. {"name":"Bestv动画1","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226756/45973923.smil"]},
  881. {"name":"Bestv动画2","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226917/57526342.smil"]}
  882. ]},
  883. {"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"]},
  884. {"name":"超级电视剧","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225716/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225637/index.m3u8"]},
  885. {"name":"超级综艺","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225714/index.m3u8","http://39.134.66.66/PLTV/88888888/224/3221225642/index.m3u8"]},
  886. {"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"]},
  887. {"name":"欢乐剧场","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225742/index.m3u8"]},
  888. {"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"]},
  889. {"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"]},
  890. {"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"]},
  891. {"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"]},
  892. {"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"]},
  893. {"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"]},
  894. {"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"]},
  895. {"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"]},
  896. {"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"]},
  897. {"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"]},
  898. {"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"]},
  899. {"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"]},
  900. {"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"]},
  901. {"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"]},
  902. {"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"]},
  903. {"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"]},
  904. {"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"]},
  905. {"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"]},
  906. {"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"]},
  907. {"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"]},
  908. {"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"]},
  909. {"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"]},
  910. {"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"]},
  911. {"name":"1·超级体育","urls":["http://39.134.66.66/PLTV/88888888/224/3221225635/index.m3u8"]}
  912. ]},
  913. {"group": "iHOT-0220220","channels": [{"name":"爱院线","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000030630&livemode=1&stbId=3&channel-id=wasusyt"]},{"name":"爱电竞","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000230630&livemode=1&stbId=3&channel-id=wasusyt"]},
  914. {"name":"爱动漫","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000280630&livemode=1&stbId=3&channel-id=wasusyt"]},
  915. {"name":"爱都市","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000080630&livemode=1&stbId=3&channel-id=wasusyt"]},
  916. {"name":"爱谍战","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000070630&livemode=1&stbId=3&channel-id=wasusyt"]},
  917. {"name":"爱怀旧","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000260630&livemode=1&stbId=3&channel-id=wasusyt"]},
  918. {"name":"爱经典","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000060630&livemode=1&stbId=3&channel-id=wasusyt"]},
  919. {"name":"爱江湖","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000110630&livemode=1&stbId=3&channel-id=wasusyt"]},
  920. {"name":"爱解密","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000200630&livemode=1&stbId=3&channel-id=wasusyt"]},
  921. {"name":"爱喜剧","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000010630&livemode=1&stbId=3&channel-id=wasusyt"]},
  922. {"name":"爱军武","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000170630&livemode=1&stbId=3&channel-id=wasusyt"]},
  923. {"name":"爱科学","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000160630&livemode=1&stbId=3&channel-id=wasusyt"]},
  924. {"name":"爱猎奇","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000190630&livemode=1&stbId=3&channel-id=wasusyt"]},
  925. {"name":"爱历史","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000150630&livemode=1&stbId=3&channel-id=wasusyt"]},
  926. {"name":"爱旅行","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000250630&livemode=1&stbId=3&channel-id=wasusyt"]},
  927. {"name":"爱美食","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000120630&livemode=1&stbId=3&channel-id=wasusyt"]},
  928. {"name":"爱青春","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000100630&livemode=1&stbId=3&channel-id=wasusyt"]},
  929. {"name":"爱奇谈","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000270630&livemode=1&stbId=3&channel-id=wasusyt"]},
  930. {"name":"爱赛车","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000240630&livemode=1&stbId=3&channel-id=wasusyt"]},
  931. {"name":"爱世界","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000210630&livemode=1&stbId=3&channel-id=wasusyt"]},
  932. {"name":"爱时尚","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000140630&livemode=1&stbId=3&channel-id=wasusyt"]},
  933. {"name":"爱探索","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000300630&livemode=1&stbId=3&channel-id=wasusyt"]},
  934. {"name":"爱体育","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000290630&livemode=1&stbId=3&channel-id=wasusyt"]},
  935. {"name":"爱玩具","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000220630&livemode=1&stbId=3&channel-id=wasusyt"]},
  936. {"name":"爱悬疑","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000050630&livemode=1&stbId=3&channel-id=wasusyt"]},
  937. {"name":"爱幼教","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000180630&livemode=1&stbId=3&channel-id=wasusyt"]},
  938. {"name":"爱娱乐","urls":["http://39.134.30.217/0000000000001000/1.m3u8?Contentid=6000000006000130630&livemode=1&stbId=3&channel-id=wasusyt"]}
  939. ]},
  940. {"group": "CIBN","channels": [{"name":"综合CIBN","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226420/index.m3u8"]},
  941. {"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"]},
  942. {"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"]},
  943. {"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"]},
  944. {"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"]},
  945. {"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"]},
  946. {"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"]},
  947. {"name":"时尚生活","urls":["http://117.148.179.183/PLTV/88888888/224/3221231489/index.m3u8"]},
  948. {"name":"风尚运动","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226429/index.m3u8"]},
  949. {"name":"真人秀","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226416/index.m3u8"]},
  950. {"name":"动画乐园","urls":["http://211.94.219.178:18080/PLTV/68/224/3221226406/index.m3u8"]},
  951. {"name":"SiTV全纪实","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226580/index.m3u8"]},
  952. {"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"]},
  953. {"name":"SiTV游戏风云","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226579/index.m3u8"]},
  954. {"name":"SiTV都市剧场","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226581/index.m3u8"]}
  955. ]},
  956. {"group": "风景区","channels": [{"name":"全国风景总览","urls":["https://gcalic.v.myalicdn.com/gc/wgw05_1/index.m3u8?contentid=2820180516001"]},
  957. {"name":"北京-南宫温泉休闲度假区","urls":["http://gcalic.v.myalicdn.com/gc/tyhjntyz_1/index.m3u8?contentid=2820180516001"]},
  958. {"name":"北京-水立方","urls":["http://gcalic.v.myalicdn.com/gc/gccntv241-slf01_1/index.m3u8?contentid=2820180516001"]},
  959. {"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"]},
  960. {"name":"北京-八达岭长城南七楼","urls":["http://gcalic.v.myalicdn.com/gc/bgws7_1/index.m3u8?contentid=2820180516001"]},
  961. {"name":"北京-中央电视塔东","urls":["http://gcalic.v.myalicdn.com/gc/ztd_1/index.m3u8?contentid=2820180516001"]},
  962. {"name":"天津-天津之眼","urls":["https://gcalic.v.myalicdn.com/gc/tjhh01_1/index.m3u8?contentid=2820180516001"]},
  963. {"name":"天津-天津海河","urls":["https://gcalic.v.myalicdn.com/gc/tjhh02_1/index.m3u8?contentid=2820180516001"]},
  964. {"name":"山西-悬空寺全景","urls":["https://gcalic.v.myalicdn.com/gc/hsxksqj_1/index.m3u8?contentid=2820180516001"]},
  965. {"name":"辽宁-沈阳金廊","urls":["https://gcalic.v.myalicdn.com/gc/zsslsjjfsd_1/index.m3u8?contentid=2820180516001"]},
  966. {"name":"黑龙江-雪乡梦幻家园","urls":["https://gcalic.v.myalicdn.com/gc/mdjxxmhjyxj_1/index.m3u8?contentid=2820180516001"]},
  967. {"name":"江苏-无锡鼋头渚长春桥","urls":["https://gcksc.v.kcdnvip.com/gc/dlst02_1/index.m3u8?BR=md®ion=beijing"]},
  968. {"name":"江苏-无锡鼋头渚赏樱阁","urls":["https://gcalic.v.myalicdn.com/gc/pshdxg01_1/index.m3u8?contentid=2820180516001"]},
  969. {"name":"江苏-南京牛首山","urls":["https://gcalic.v.myalicdn.com/gc/nss01_1/index.m3u8?contentid=2820180516001"]},
  970. {"name":"江苏-南京玄武湖公园","urls":["https://gcalic.v.myalicdn.com/gc/xwh01_1/index.m3u8?contentid=2820180516001"]},
  971. {"name":"江苏-徐州云龙湖观景台西","urls":["https://gcalic.v.myalicdn.com/gc/ylh04_1/index.m3u8?contentid=2820180516001"]},
  972. {"name":"江苏-徐州云龙湖观景台南","urls":["https://gcalic.v.myalicdn.com/gc/ylh03_1/index.m3u8?contentid=2820180516001"]},
  973. {"name":"江苏-兴化千垛景区","urls":["https://mlivecncc.v.wscdns.com/mlive/mlive_djy02_1/index.m3u8?contentid=2820180516001"]},
  974. {"name":"浙江-云栖小镇","urls":["https://gcalic.v.myalicdn.com/gc/hnttpgsz_1/index.m3u8?contentid=2820180516001"]},
  975. {"name":"浙江-千岛湖","urls":["https://gcalic.v.myalicdn.com/gc/caqdh_1/index.m3u8?contentid=2820180516001"]},
  976. {"name":"浙江-普陀山","urls":["https://gcalic.v.myalicdn.com/gc/pts01_1/index.m3u8?contentid=2820180516001"]},
  977. {"name":"浙江-舟山东极岛","urls":["https://gcalic.v.myalicdn.com/gc/djd01_1/index.m3u8?contentid=2820180516001"]},
  978. {"name":"浙江-丽水仙都风景区","urls":["https://gcalic.v.myalicdn.com/gc/xdfjq01_1/index.m3u8?contentid=2820180516001"]},
  979. {"name":"浙江-乌镇蓝印花布","urls":["https://gcalic.v.myalicdn.com/gc/zjwzlyhb_1/index.m3u8?contentid=2820180516001"]},
  980. {"name":"浙江-乌镇全景","urls":["https://gcalic.v.myalicdn.com/gc/zjwzblt_1/index.m3u8?contentid=2820180516001"]},
  981. {"name":"浙江-乌镇西市河","urls":["https://gcalic.v.myalicdn.com/gc/zjwzbblh_1/index.m3u8?contentid=2820180516001"]},
  982. {"name":"浙江-乌镇龙形田","urls":["https://gcalic.v.myalicdn.com/gc/zjwzlxt_1/index.m3u8?contentid=2820180516001"]},
  983. {"name":"安徽-西递牌坊","urls":["https://gcalic.v.myalicdn.com/gc/yxxdpf_1/index.m3u8?contentid=2820180516001"]},
  984. {"name":"安徽-宏村月沼","urls":["https://gcalic.v.myalicdn.com/gc/yxhcyz_1/index.m3u8?contentid=2820180516001"]},
  985. {"name":"安徽-西递半山亭","urls":["https://gcalic.v.myalicdn.com/gc/yxxdbst_1/index.m3u8?contentid=2820180516001"]},
  986. {"name":"安徽-黟县芦村远眺","urls":["https://gcalic.v.myalicdn.com/gc/yxlcyt_1/index.m3u8?contentid=2820180516001"]},
  987. {"name":"安徽-宏村南湖","urls":["https://gcalic.v.myalicdn.com/gc/yxhcnh_1/index.m3u8?contentid=2820180516001"]},
  988. {"name":"安徽-黄山","urls":["https://gcalic.v.myalicdn.com/gc/ahhs01_1/index.m3u8?contentid=2820180516001"]},
  989. {"name":"安徽-黄山始信新道","urls":["https://gcalic.v.myalicdn.com/gc/hsyg_1/index.m3u8?contentid=2820180516001"]},
  990. {"name":"安徽-黄山卧云峰","urls":["https://gcalic.v.myalicdn.com/gc/hswlf_1/index.m3u8?contentid=2820180516001"]},
  991. {"name":"安徽-黄山梦笔生花","urls":["https://gcalic.v.myalicdn.com/gc/hsmbsh_1/index.m3u8?contentid=2820180516001"]},
  992. {"name":"安徽-黄山光明顶","urls":["https://gcalic.v.myalicdn.com/gc/hsgmd_1/index.m3u8?contentid=2820180516001"]},
  993. {"name":"安徽-黄山飞来石","urls":["https://gcalic.v.myalicdn.com/gc/hsptgy_1/index.m3u8?contentid=2820180516001"]},
  994. {"name":"安徽-黄山平天矼","urls":["https://gcalic.v.myalicdn.com/gc/hsptgz_1/index.m3u8?contentid=2820180516001"]},
  995. {"name":"安徽-黄山排云亭","urls":["https://gcalic.v.myalicdn.com/gc/hspyt_1/index.m3u8?contentid=2820180516001"]},
  996. {"name":"安徽-九华山拜经台","urls":["https://gcalic.v.myalicdn.com/gc/jhs02_1/index.m3u8?contentid=2820180516001"]},
  997. {"name":"安徽-九华山","urls":["https://gcalic.v.myalicdn.com/gc/jhs05_1/index.m3u8?contentid=2820180516001"]},
  998. {"name":"安徽-九华山花台","urls":["https://gcalic.v.myalicdn.com/gc/jhs01_1/index.m3u8?contentid=2820180516001"]},
  999. {"name":"福建-厦门鼓浪屿","urls":["https://gcalic.v.myalicdn.com/gc/gly01_1/index.m3u8?contentid=2820180516001"]},
  1000. {"name":"福建-武夷山玉女峰","urls":["https://gcalic.v.myalicdn.com/gc/wysynf_1/index.m3u8?contentid=2820180516001"]},
  1001. {"name":"福建-宁德太姥山景区","urls":["https://gcalic.v.myalicdn.com/gc/tms01_1/index.m3u8?contentid=2820180516001"]},
  1002. {"name":"福建-漳州六鳌翡翠湾","urls":["https://gcalic.v.myalicdn.com/gc/fcw01_1/index.m3u8?contentid=2820180516001"]},
  1003. {"name":"福建-醉美沙滩翡翠湾","urls":["https://gcalic.v.myalicdn.com/gc/fcw03_1/index.m3u8?contentid=2820180516001"]},
  1004. {"name":"江西-婺源江岭2号观景台","urls":["https://gcalic.v.myalicdn.com/gc/wygjt2_1/index.m3u8?contentid=2820180516001"]},
  1005. {"name":"江西-婺源江岭1号观景台","urls":["https://gcalic.v.myalicdn.com/gc/wygjt1_1/index.m3u8?contentid=2820180516001"]},
  1006. {"name":"江西-龙虎山-中间水泡","urls":["https://gcalic.v.myalicdn.com/gc/lhszjsp_1/index.m3u8?contentid=2820180516001"]},
  1007. {"name":"山东-泰山","urls":["https://gcalic.v.myalicdn.com/gc/taishan04_1/index.m3u8?contentid=2820180516001"]},
  1008. {"name":"山东-泰山主峰","urls":["https://gcalic.v.myalicdn.com/gc/taishan01_1/index.m3u8?contentid=2820180516001"]},
  1009. {"name":"山东-瞻鲁台","urls":["https://gcalic.v.myalicdn.com/gc/hkts06_1/index.m3u8?contentid=2820180516001"]},
  1010. {"name":"山东-泰山十八盘","urls":["https://gcalic.v.myalicdn.com/gc/taishan05_1/index.m3u8?contentid=2820180516001"]},
  1011. {"name":"山东-玉皇顶西","urls":["https://gcalic.v.myalicdn.com/gc/hkts11_1/index.m3u8?contentid=2820180516001"]},
  1012. {"name":"山东-玉皇顶东","urls":["https://gcalic.v.myalicdn.com/gc/hkts10_1/index.m3u8?contentid=2820180516001"]},
  1013. {"name":"山东-太平岭","urls":["https://gcalic.v.myalicdn.com/gc/hkts09_1/index.m3u8?contentid=2820180516001"]},
  1014. {"name":"山东-扇子崖","urls":["https://gcalic.v.myalicdn.com/gc/hkts08_1/index.m3u8?contentid=2820180516001"]},
  1015. {"name":"山东-南天门","urls":["https://gcalic.v.myalicdn.com/gc/hkts07_1/index.m3u8?contentid=2820180516001"]},
  1016. {"name":"山东-开山","urls":["https://gcalic.v.myalicdn.com/gc/hkts05_1/index.m3u8?contentid=2820180516001"]},
  1017. {"name":"山东-经石峪","urls":["https://gcalic.v.myalicdn.com/gc/hkts04_1/index.m3u8?contentid=2820180516001"]},
  1018. {"name":"山东-碧霞祠","urls":["https://gcalic.v.myalicdn.com/gc/hkts03_1/index.m3u8?contentid=2820180516001"]},
  1019. {"name":"山东-白云亭悬崖","urls":["https://gcalic.v.myalicdn.com/gc/hkts02_1/index.m3u8?contentid=2820180516001"]},
  1020. {"name":"山东-拱北日出","urls":["https://gcalic.v.myalicdn.com/gc/hkts01_1/index.m3u8?contentid=2820180516001"]},
  1021. {"name":"山东-泰山天街","urls":["https://gcalic.v.myalicdn.com/gc/taishan07_1/index.m3u8?contentid=2820180516001"]},
  1022. {"name":"山东-泰山玉皇顶","urls":["https://gcalic.v.myalicdn.com/gc/taishan06_1/index.m3u8?contentid=2820180516001"]},
  1023. {"name":"山东-泰山大观峰","urls":["https://gcalic.v.myalicdn.com/gc/taishan03_1/index.m3u8?contentid=2820180516001"]},
  1024. {"name":"河南-郑东新区千玺广场","urls":["https://gcalic.v.myalicdn.com/gc/zdxq01_1/index.m3u8?contentid=2820180516001"]},
  1025. {"name":"河南-少林寺广场","urls":["https://gcalic.v.myalicdn.com/gc/zsslsgc_1/index.m3u8?contentid=2820180516001"]},
  1026. {"name":"河南-云台山小寨沟","urls":["https://gcalic.v.myalicdn.com/gc/ytsxzg_1/index.m3u8?contentid=2820180516001"]},
  1027. {"name":"河南-云台山百家岩","urls":["https://gcalic.v.myalicdn.com/gc/ytsbjy_1/index.m3u8?contentid=2820180516001"]},
  1028. {"name":"河南-云台山红石峡","urls":["https://gcalic.v.myalicdn.com/gc/ytshsx_1/index.m3u8?contentid=2820180516001"]},
  1029. {"name":"河南-云台山茱萸峰","urls":["https://gcalic.v.myalicdn.com/gc/ytszyf_1/index.m3u8?contentid=2820180516001"]},
  1030. {"name":"河南-八里沟桃花湾瀑布","urls":["https://gcalic.v.myalicdn.com/gc/blg05_1/index.m3u8?contentid=2820180516001"]},
  1031. {"name":"河南-八里沟天界山玻璃栈道","urls":["https://gcalic.v.myalicdn.com/gc/blg03_1/index.m3u8?contentid=2820180516001"]},
  1032. {"name":"湖北-武汉黄鹤楼","urls":["https://gcalic.v.myalicdn.com/gc/qdls02_1/index.m3u8?contentid=2820180516001"]},
  1033. {"name":"湖北-龙王庙","urls":["https://gcalic.v.myalicdn.com/gc/hnttbdjd_1/index.m3u8?contentid=2820180516001"]},
  1034. {"name":"湖北-武汉长江大桥","urls":["https://gcalic.v.myalicdn.com/gc/qdls04_1/index.m3u8?contentid=2820180516001"]},
  1035. {"name":"湖北-金丝猴01","urls":["https://gcalic.v.myalicdn.com/gc/jshhd01_1/index.m3u8?contentid=2820180516001"]},
  1036. {"name":"湖南-天门山天门洞","urls":["https://gcalic.v.myalicdn.com/gc/tmstmd01_1/index.m3u8?contentid=2820180516001"]},
  1037. {"name":"湖南-天门山天空步道","urls":["https://gcalic.v.myalicdn.com/gc/tms02_1/index.m3u8?contentid=2820180516001"]},
  1038. {"name":"湖南-天门山西线玻璃栈道","urls":["https://gcalic.v.myalicdn.com/gc/tms05_1/index.m3u8?contentid=2820180516001"]},
  1039. {"name":"湖南-天门山云梦仙顶","urls":["https://gcalic.v.myalicdn.com/gc/tms04_1/index.m3u8?contentid=2820180516001"]},
  1040. {"name":"湖南-十八洞村","urls":["https://gcalic.v.myalicdn.com/gc/sbd01_1/index.m3u8?contentid=2820180516001"]},
  1041. {"name":"湖南-凤凰古城南华山","urls":["https://gcalic.v.myalicdn.com/gc/fhgcdnhs_1/index.m3u8?contentid=2820180516001"]},
  1042. {"name":"湖南-凤凰古城东关门","urls":["https://gcalic.v.myalicdn.com/gc/fhgcdgm_1/index.m3u8?contentid=2820180516001"]},
  1043. {"name":"湖南-张家界水绕四门","urls":["https://gcalic.v.myalicdn.com/gc/zjjsrsm_1/index.m3u8?contentid=2820180516001"]},
  1044. {"name":"湖南-张家界将军列队","urls":["https://gcalic.v.myalicdn.com/gc/zjjjjdl_1/index.m3u8?contentid=2820180516001"]},
  1045. {"name":"湖南-阿凡达悬浮山","urls":["https://gcalic.v.myalicdn.com/gc/zjjafdxfs_1/index.m3u8?contentid=2820180516001"]},
  1046. {"name":"湖南-张家界迷魂台","urls":["https://gcalic.v.myalicdn.com/gc/zjjmht_1/index.m3u8?contentid=2820180516001"]},
  1047. {"name":"湖南-宝峰湖","urls":["https://gcalic.v.myalicdn.com/gc/zjjbfh_1/index.m3u8?contentid=2820180516001"]},
  1048. {"name":"广东-东莞中心广场","urls":["https://gcalic.v.myalicdn.com/gc/zsslstpt_1/index.m3u8?contentid=2820180516001"]},
  1049. {"name":"广东-深圳世界之窗","urls":["https://gcalic.v.myalicdn.com/gc/sjzc01_1/index.m3u8?contentid=2820180516001"]},
  1050. {"name":"广东-丹霞山丹梯铁锁","urls":["https://gcalic.v.myalicdn.com/gc/dxsdtts_1/index.m3u8?contentid=2820180516001"]},
  1051. {"name":"都江堰青青","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao20_1/index.m3u8"]},
  1052. {"name":"都江堰妃妃","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao13_1/index.m3u8"]},
  1053. {"name":"都江堰娅祥","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao15_1/index.m3u8"]},
  1054. {"name":"都江堰瑞瑞","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao11_1/index.m3u8"]},
  1055. {"name":"都江堰英英","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao16_1/index.m3u8"]},
  1056. {"name":"都江堰壹壹玖玖","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao14_1/index.m3u8"]},
  1057. {"name":"都江堰水秀","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao12_1/index.m3u8"]},
  1058. {"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"]},
  1059. {"name":"怡然②","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao18_1/index.m3u8"]},
  1060. {"name":"基地幼年园①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao03_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao04_1/index.m3u8"]},
  1061. {"name":"基地母子园①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao07_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao08_1/index.m3u8"]},
  1062. {"name":"基地幼儿园①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao05_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao06_1/index.m3u8"]},
  1063. {"name":"基地成年园①","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao01_1/index.m3u8","http://gcalic.v.myalicdn.com/gc/xiongmao02_1/index.m3u8"]},
  1064. {"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"]},
  1065. {"name":"核桃坪","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao19_1/index.m3u8"]},
  1066. {"name":"卧龙臭水","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao17_1/index.m3u8"]},
  1067. {"name":"大丰麋鹿","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao23_1/index.m3u8"]},
  1068. {"name":"白马雪山","urls":["http://gcalic.v.myalicdn.com/gc/xiongmao24_1/index.m3u8"]},
  1069. {"name":"成都高清","urls":["http://gcalic.v.myalicdn.com/gc/ipanda_1td/index.m3u8"]},
  1070. {"name":"都江堰高清","urls":["http://gcalic.v.myalicdn.com/gc/ipanda1000_1td/index.m3u8"]}
  1071. ]},
  1072. {"group": "临时源","channels": [{"name":"凤凰中文","urls":["http://59.44.10.113:9901/tsfile/live/1079_1.m3u8"]},
  1073. {"name":"凤凰资讯","urls":["http://59.44.10.113:9901/tsfile/live/1078_1.m3u8"]},
  1074. {"name":"凤凰香港","urls":["http://59.44.10.113:9901/tsfile/live/1080_1.m3u8"]},
  1075. {"name":"CCTV1","urls":["http://59.44.10.113:9901/tsfile/live/1018_1.m3u8"]},
  1076. {"name":"CCTV2","urls":["http://59.44.10.113:9901/tsfile/live/1001_1.m3u8"]},
  1077. {"name":"CCTV3","urls":["http://59.44.10.113:9901/tsfile/live/1050_1.m3u8"]},
  1078. {"name":"CCTV4","urls":["http://59.44.10.113:9901/tsfile/live/1045_1.m3u8"]},
  1079. {"name":"CCTV5","urls":["http://59.44.10.113:9901/tsfile/live/1051_1.m3u8"]},
  1080. {"name":"CCTV6","urls":["http://59.44.10.113:9901/tsfile/live/1052_1.m3u8"]},
  1081. {"name":"CCTV7","urls":["http://59.44.10.113:9901/tsfile/live/1070_1.m3u8"]},
  1082. {"name":"CCTV8","urls":["http://59.44.10.113:9901/tsfile/live/1053_1.m3u8"]},
  1083. {"name":"CCTV9","urls":["http://59.44.10.113:9901/tsfile/live/1002_1.m3u8"]},
  1084. {"name":"CCTV10","urls":["http://59.44.10.113:9901/tsfile/live/1004_1.m3u8"]},
  1085. {"name":"CCTV11","urls":["http://59.44.10.113:9901/tsfile/live/1043_1.m3u8"]},
  1086. {"name":"CCTV12","urls":["http://59.44.10.113:9901/tsfile/live/1007_1.m3u8"]},
  1087. {"name":"CCTV13","urls":["http://59.44.10.113:9901/tsfile/live/1083_1.m3u8"]},
  1088. {"name":"CCTV14","urls":["http://59.44.10.113:9901/tsfile/live/1008_1.m3u8"]},
  1089. {"name":"CCTV15","urls":["http://59.44.10.113:9901/tsfile/live/1044_1.m3u8"]},
  1090. {"name":"CCTV17","urls":["http://59.44.10.113:9901/tsfile/live/1000_1.m3u8"]},
  1091. {"name":"CCTV5+","urls":["http://59.44.10.113:9901/tsfile/live/1038_1.m3u8"]},
  1092. {"name":"安徽卫视","urls":["http://59.44.10.113:9901/tsfile/live/1057_1.m3u8"]},
  1093. {"name":"北京卫视","urls":["http://59.44.10.113:9901/tsfile/live/1012_1.m3u8"]},
  1094. {"name":"东方卫视","urls":["http://59.44.10.113:9901/tsfile/live/1055_1.m3u8"]},
  1095. {"name":"动漫秀场","urls":["http://59.44.10.113:9901/tsfile/live/1086_1.m3u8"]},
  1096. {"name":"广东卫视","urls":["http://59.44.10.113:9901/tsfile/live/1022_1.m3u8"]},
  1097. {"name":"贵州卫视","urls":["http://59.44.10.113:9901/tsfile/live/1065_1.m3u8"]},
  1098. {"name":"河北卫视","urls":["http://59.44.10.113:9901/tsfile/live/1058_1.m3u8"]},
  1099. {"name":"黑龙江卫视","urls":["http://59.44.10.113:9901/tsfile/live/1013_1.m3u8"]},
  1100. {"name":"湖北卫视","urls":["http://59.44.10.113:9901/tsfile/live/1040_1.m3u8"]},
  1101. {"name":"湖南卫视","urls":["http://59.44.10.113:9901/tsfile/live/1059_1.m3u8"]},
  1102. {"name":"湖南卫视","urls":["http://59.44.10.113:9901/tsfile/live/1106_1.m3u8"]},
  1103. {"name":"吉林卫视","urls":["http://59.44.10.113:9901/tsfile/live/1060_1.m3u8"]},
  1104. {"name":"江苏卫视","urls":["http://59.44.10.113:9901/tsfile/live/1010_1.m3u8"]},
  1105. {"name":"江西卫视","urls":["http://59.44.10.113:9901/tsfile/live/1056_1.m3u8"]},
  1106. {"name":"金鹰卡通","urls":["http://59.44.10.113:9901/tsfile/live/1063_1.m3u8"]},
  1107. {"name":"辽宁卫视","urls":["http://59.44.10.113:9901/tsfile/live/1061_1.m3u8"]},
  1108. {"name":"山东卫视","urls":["http://59.44.10.113:9901/tsfile/live/1039_1.m3u8"]},
  1109. {"name":"深圳卫视","urls":["http://59.44.10.113:9901/tsfile/live/1023_1.m3u8"]},
  1110. {"name":"四川卫视","urls":["http://59.44.10.113:9901/tsfile/live/1067_1.m3u8"]},
  1111. {"name":"天津卫视","urls":["http://59.44.10.113:9901/tsfile/live/1011_1.m3u8"]},
  1112. {"name":"浙江卫视","urls":["http://59.44.10.113:9901/tsfile/live/1021_1.m3u8"]},
  1113. {"name":"重庆卫视","urls":["http://59.44.10.113:9901/tsfile/live/1020_1.m3u8"]},
  1114. {"name":"台视","urls":["http://220.134.196.147:8611/playlist.m3u8"]},
  1115. {"name":"中视","urls":["http://220.134.196.147:8612/playlist.m3u8"]},
  1116. {"name":"华视","urls":["http://220.134.196.147:8613/playlist.m3u8"]},
  1117. {"name":"民视","urls":["http://220.134.196.147:8614/playlist.m3u8"]},
  1118. {"name":"公视","urls":["http://220.134.196.147:8615/playlist.m3u8","http://220.134.196.147:8654/playlist.m3u8"]},
  1119. {"name":"FOXMOVIES","urls":["http://220.134.196.147:8655/playlist.m3u8"]},
  1120. {"name":"龙华电影","urls":["http://220.134.196.147:8656/playlist.m3u8"]},
  1121. {"name":"HBO","urls":["http://220.134.196.147:8657/playlist.m3u8"]},
  1122. {"name":"AXN","urls":["http://220.134.196.147:8658/playlist.m3u8"]},
  1123. {"name":"CINEMAX","urls":["http://220.134.196.147:8659/playlist.m3u8"]},
  1124. {"name":"FOXMOVIES","urls":["http://220.134.196.147:8660/playlist.m3u8"]},
  1125. {"name":"FOX","urls":["http://220.134.196.147:8661/playlist.m3u8"]},
  1126. {"name":"国家地理频道(台湾)","urls":["http://220.134.196.147:8619/playlist.m3u8"]},
  1127. {"name":"Discovery","urls":["http://220.134.196.147:8620/playlist.m3u8"]},
  1128. {"name":"TLC旅游生活频道","urls":["http://220.134.196.147:8621/playlist.m3u8"]},
  1129. {"name":"动物星球","urls":["http://220.134.196.147:8622/playlist.m3u8"]},
  1130. {"name":"亚洲旅游台","urls":["http://220.134.196.147:8623/playlist.m3u8"]},
  1131. {"name":"BabyTV","urls":["http://220.134.196.147:8624/playlist.m3u8"]},
  1132. {"name":"东森幼幼台","urls":["http://220.134.196.147:8625/playlist.m3u8"]},
  1133. {"name":"Animax","urls":["http://220.134.196.147:8626/playlist.m3u8"]},
  1134. {"name":"龙华卡通","urls":["http://220.134.196.147:8627/playlist.m3u8"]},
  1135. {"name":"纬来综合台","urls":["http://220.134.196.147:8628/playlist.m3u8"]},
  1136. {"name":"八大第一台","urls":["http://220.134.196.147:8629/playlist.m3u8"]},
  1137. {"name":"八大综合台","urls":["http://220.134.196.147:8630/playlist.m3u8"]},
  1138. {"name":"三立台湾台","urls":["http://220.134.196.147:8631/playlist.m3u8"]},
  1139. {"name":"三立都会台","urls":["http://220.134.196.147:8632/playlist.m3u8"]},
  1140. {"name":"卫视中文台","urls":["http://220.134.196.147:8633/playlist.m3u8"]},
  1141. {"name":"东森综合台","urls":["http://220.134.196.147:8634/playlist.m3u8"]},
  1142. {"name":"东森超视","urls":["http://220.134.196.147:8635/playlist.m3u8"]},
  1143. {"name":"中天综合台","urls":["http://220.134.196.147:8636/playlist.m3u8"]},
  1144. {"name":"中天娱乐台","urls":["http://220.134.196.147:8637/playlist.m3u8"]},
  1145. {"name":"东风卫视","urls":["http://220.134.196.147:8638/playlist.m3u8"]},
  1146. {"name":"年代MUCH","urls":["http://220.134.196.147:8639/playlist.m3u8"]},
  1147. {"name":"东森戏剧台","urls":["http://220.134.196.147:8640/playlist.m3u8"]},
  1148. {"name":"八大戏剧台","urls":["http://220.134.196.147:8641/playlist.m3u8"]},
  1149. {"name":"纬来戏剧台","urls":["http://220.134.196.147:8643/playlist.m3u8"]},
  1150. {"name":"龙华戏剧","urls":["http://220.134.196.147:8644/playlist.m3u8"]},
  1151. {"name":"龙华日韩台","urls":["http://220.134.196.147:8645/playlist.m3u8"]},
  1152. {"name":"龙华偶像","urls":["http://220.134.196.147:8646/playlist.m3u8"]},
  1153. {"name":"纬来日本台","urls":["http://220.134.196.147:8647/playlist.m3u8"]},
  1154. {"name":"wakuwaku","urls":["http://220.134.196.147:8648/playlist.m3u8"]},
  1155. {"name":"CNBCHongKong","urls":["http://220.134.196.147:8650/playlist.m3u8"]},
  1156. {"name":"BloombergTV","urls":["http://220.134.196.147:8651/playlist.m3u8"]},
  1157. {"name":"NHK","urls":["http://220.134.196.147:8652/playlist.m3u8"]},
  1158. {"name":"龙华戏剧","urls":["http://220.134.196.147:8653/playlist.m3u8"]},
  1159. {"name":"纬来育乐台","urls":["http://220.134.196.147:8662/playlist.m3u8"]},
  1160. {"name":"纬来体育台","urls":["http://220.134.196.147:8663/playlist.m3u8"]},
  1161. {"name":"博斯运动一台","urls":["http://220.134.196.147:8664/playlist.m3u8"]},
  1162. {"name":"momo综合台","urls":["http://220.134.196.147:8665/playlist.m3u8"]},
  1163. {"name":"ELEVEN体育一台","urls":["http://220.134.196.147:8666/playlist.m3u8"]},
  1164. {"name":"ELEVEN体育二台","urls":["http://220.134.196.147:8667/playlist.m3u8"]},
  1165. {"name":"年代新闻台","urls":["http://220.134.196.147:8601/playlist.m3u8"]},
  1166. {"name":"东森新闻台","urls":["http://220.134.196.147:8602/playlist.m3u8"]},
  1167. {"name":"中天新闻","urls":["http://220.134.196.147:8603/playlist.m3u8"]},
  1168. {"name":"民视新闻台","urls":["http://220.134.196.147:8604/playlist.m3u8"]},
  1169. {"name":"三立新闻台","urls":["http://220.134.196.147:8605/playlist.m3u8"]},
  1170. {"name":"非凡新闻台","urls":["http://220.134.196.147:8606/playlist.m3u8"]},
  1171. {"name":"非凡商业台","urls":["http://220.134.196.147:8607/playlist.m3u8"]},
  1172. {"name":"东森财经新闻台","urls":["http://220.134.196.147:8608/playlist.m3u8"]},
  1173. {"name":"寰宇新闻","urls":["http://220.134.196.147:8609/playlist.m3u8"]},
  1174. {"name":"壹电视新闻台","urls":["http://220.134.196.147:8610/playlist.m3u8"]},
  1175. //以下失效
  1176. {"name":"中视","urls":["http://211.23.114.106:8502/http/61.221.81.94:8088/hls/72/814/ch47.m3u8"]},
  1177. {"name":"华视","urls":["http://211.23.114.106:8503/http/61.221.81.94:8088/hls/72/814/ch48.m3u8"]},
  1178. {"name":"民视","urls":["http://211.23.114.106:8504/http/61.221.81.94:8088/hls/73/815/ch49.m3u8"]},
  1179. {"name":"公视","urls":["http://211.23.114.106:8505/http/61.221.81.94:8088/hls/73/815/ch50.m3u8"]},
  1180. {"name":"卫视电影台","urls":["http://211.23.114.106:8553/http/116.50.42.19:8081/hls/62/804/ch07.m3u8"]},
  1181. {"name":"好莱坞电影","urls":["http://211.23.114.106:8554/http/116.50.42.19:8081/hls/74/816/ch55.m3u8"]},
  1182. {"name":"纬来电影台","urls":["http://211.23.114.106:8555/http/116.50.42.19:8081/hls/69/811/ch35.m3u8"]},
  1183. {"name":"龙华电影台","urls":["http://211.23.114.106:8556/http/116.50.42.19:8066/hls/210/10014/cstv14.m3u8"]},
  1184. {"name":"HBO HD","urls":["http://211.23.114.106:8511/http/116.50.42.19:8081/hls/71/813/ch41.m3u8"]},
  1185. {"name":"AXN电影","urls":["http://211.23.114.106:8558/http/116.50.42.19:8081/hls/71/813/ch43.m3u8"]},
  1186. {"name":"Cinemax","urls":["http://211.23.114.106:8559/http/116.50.42.19:8081/hls/71/813/ch42.m3u8"]},
  1187. {"name":"FOXmovies","urls":["http://211.23.114.106:8560/http/116.50.42.19:8081/hls/62/804/ch08.m3u8"]},
  1188. {"name":"FOX频道","urls":["http://211.23.114.106:8561/http/116.50.42.19:8081/hls/61/803/ch02.m3u8"]},
  1189. {"name":"国家地理","urls":["http://211.23.114.106:8509/http/61.221.81.94:8088/hls/61/803/ch01.m3u8"]},
  1190. {"name":"Discovery","urls":["http://211.23.114.106:8510/http/61.221.81.94:8088/hls/71/813/ch44.m3u8"]},
  1191. {"name":"旅游生活","urls":["http://211.23.114.106:8570/http/61.221.81.94:8088/hls/70/812/ch38.m3u8"]},
  1192. {"name":"动物星球","urls":["http://211.23.114.106:8512/http/61.221.81.94:8088/hls/70/812/ch37.m3u8"]},
  1193. {"name":"八大综合","urls":["http://211.23.114.106:8520/http/61.221.81.94:8088/hls/66/808/ch21.m3u8"]},
  1194. {"name":"亚洲旅游","urls":["http://211.23.114.106:8513/http/61.221.81.94:8088/hls/76/818/ch61.m3u8"]},
  1195. {"name":"迪士尼","urls":["http://211.23.114.106:8581/http/61.221.81.94:8088/hls/70/812/ch40.m3u8"]},
  1196. {"name":"东森幼幼","urls":["http://211.23.114.106:8515/http/61.221.81.94:8088/hls/63/805/ch09.m3u8"]},
  1197. {"name":"ANIMAX","urls":["http://211.23.114.106:8516/http/61.221.81.94:8088/hls/70/812/ch39.m3u8"]},
  1198. {"name":"龙华卡通","urls":["http://211.23.114.106:8528/http/59.120.8.187:8066/hls/210/10013/cstv13.m3u8"]},
  1199. {"name":"纬来综合","urls":["http://211.23.114.106:8518/http/61.221.81.94:8088/hls/68/810/ch32.m3u8"]},
  1200. {"name":"八大第一","urls":["http://211.23.114.106:8536/http/61.221.81.94:8088/hls/66/808/ch22.m3u8"]},
  1201. {"name":"八大综合","urls":["http://211.23.114.106:8520/http/61.221.81.94:8088/hls/66/808/ch21.m3u8"]},
  1202. {"name":"三立台湾","urls":["http://211.23.114.106:8521/http/60.251.39.91:8081/hls/65/807/ch20.m3u8"]},
  1203. {"name":"三立都会","urls":["http://211.23.114.106:8522/http/60.251.39.91:8081/hls/65/807/ch19.m3u8"]},
  1204. {"name":"卫视中文","urls":["http://211.23.114.106:8514/http/60.251.39.91:8081/hls/62/804/ch05.m3u8"]},
  1205. {"name":"东森综合","urls":["http://211.23.114.106:8524/http/60.251.39.91:8081/hls/63/805/ch12.m3u8"]},
  1206. {"name":"东森超视","urls":["http://211.23.114.106:8525/http/60.251.39.91:8081/hls/64/806/ch14.m3u8"]},
  1207. {"name":"中天综合","urls":["http://211.23.114.106:8526/http/60.251.39.91:8081/hls/67/809/ch25.m3u8"]},
  1208. {"name":"中天娱乐","urls":["http://211.23.114.106:8527/http/60.251.39.91:8081/hls/67/809/ch26.m3u8"]},
  1209. {"name":"东风卫视","urls":["http://211.23.114.106:8578/http/60.251.39.91:8081/hls/68/810/ch31.m3u8"]},
  1210. {"name":"MuchTV","urls":["http://211.23.114.106:8529/http/60.251.39.91:8081/hls/72/814/ch45.m3u8"]},
  1211. {"name":"东森戏剧","urls":["http://211.23.114.106:8530/http/60.251.39.91:8081/hls/64/806/ch13.m3u8"]},
  1212. {"name":"八大戏剧","urls":["http://211.23.114.106:8531/http/60.251.39.91:8081/hls/66/808/ch23.m3u8"]},
  1213. {"name":"TVBS欢乐","urls":["http://211.23.114.106:8532/http/60.251.39.91:8081/hls/65/807/ch17.m3u8"]},
  1214. {"name":"纬来戏剧","urls":["http://211.23.114.106:8533/http/60.251.39.91:8081/hls/69/811/ch33.m3u8"]},
  1215. {"name":"龙华戏剧","urls":["http://211.23.114.106:8534/http/59.120.8.187:8066/hls/210/10010/cstv10.m3u8"]},
  1216. {"name":"龙华日韩","urls":["http://211.23.114.106:8535/http/59.120.8.187:8066/hls/210/10011/cstv11.m3u8"]},
  1217. {"name":"龙华偶像","urls":["http://211.23.114.106:8579/http/59.120.8.187:8066/hls/210/10012/cstv12.m3u8"]},
  1218. {"name":"纬来日本","urls":["http://211.23.114.106:8537/http/60.251.39.91:8081/hls/69/811/ch34.m3u8"]},
  1219. {"name":"WAKUWAKU JAPAN","urls":["http://211.23.114.106:8538/http/60.251.39.91:8081/hls/61/803/ch03.m3u8"]},
  1220. {"name":"年代新闻","urls":["http://211.23.114.106:8517/http/60.251.39.91:8081/hls/67/809/ch27.m3u8"]},
  1221. {"name":"东森新闻","urls":["http://211.23.114.106:8540/http/60.251.39.91:8081/hls/63/805/ch10.m3u8"]},
  1222. {"name":"中天新闻","urls":["http://211.23.114.106:8541/http/60.251.39.91:8081/hls/78/80/ch63max.m3u8"]},
  1223. {"name":"民视新闻","urls":["http://211.23.114.106:8542/http/60.251.39.91:8081/hls/73/815/ch51.m3u8"]},
  1224. {"name":"三立新闻","urls":["http://211.23.114.106:8543/http/60.251.39.91:8081/hls/65/807/ch18.m3u8"]},
  1225. {"name":"TVBS新闻","urls":["http://211.23.114.106:8546/http/116.50.42.19:8081/hls/64/806/ch16.m3u8"]},
  1226. {"name":"TVBS HD","urls":["http://211.23.114.106:8545/http/116.50.42.19:8081/hls/64/806/ch15.m3u8"]},
  1227. {"name":"东森财经","urls":["http://211.23.114.106:8546/http/116.50.42.19:8081/hls/63/805/ch11.m3u8"]},
  1228. {"name":"寰宇新闻","urls":["http://211.23.114.106:8547/http/116.50.42.19:8081/hls/76/818/ch62.m3u8"]},
  1229. {"name":"壹新闻台","urls":["http://211.23.114.106:8548/http/116.50.42.19:8081/hls/66/808/ch24.m3u8"]},
  1230. {"name":"CNN新闻","urls":["http://211.23.114.106:8549/http/116.50.42.19:8081/hls/68/810/ch29.m3u8"]},
  1231. {"name":"CNBC新闻","urls":["http://211.23.114.106:8550/http/116.50.42.19:8078/hls/24/80/cnbc90.m3u8"]},
  1232. {"name":"Bloomberg","urls":["http://211.23.114.106:8551/http/116.50.42.19:8078/hls/43/80/bloomber.m3u8"]},
  1233. {"name":"NHK新闻","urls":["http://211.23.114.106:8552/http/116.50.42.19:8081/hls/62/804/ch06.m3u8"]},
  1234. {"name":"纬来育乐","urls":["http://211.23.114.106:8562/http/116.50.42.19:8081/hls/68/810/ch30.m3u8"]},
  1235. {"name":"人间卫视","urls":["http://211.23.114.106:8506/http/61.221.81.94:8088/hls/69/811/ch36.m3u8"]},
  1236. {"name":"大爱","urls":["http://211.23.114.106:8507/http/61.221.81.94:8088/hls/73/815/ch52.m3u8"]},
  1237. {"name":"好消息","urls":["http://211.23.114.106:8508/http/61.221.81.94:8088/hls/74/816/ch53.m3u8"]},
  1238. {"name":"纬来体育","urls":["http://211.23.114.106:8563/http/59.120.8.187:8081/hls/67/809/ch28.m3u8"]},
  1239. {"name":"博斯运动1","urls":["http://211.23.114.106:8564/http/59.120.8.187:8066/hls/210/10018/cstv18.m3u8"]},
  1240. {"name":"博斯运动2","urls":["http://211.23.114.106:8565/http/59.120.8.187:8081/hls/61/803/ch04.m3u8"]},
  1241. {"name":"ELEVEN SPORTS 1","urls":["http://211.23.114.106:8566/http/59.120.8.187:8078/hls/25/80/esport.m3u8"]},
  1242. {"name":"TVB明珠","urls":["http://www.295ys.cf/abc.php?id=77"]},
  1243. {"name":"TVB星河","urls":["http://www.295ys.cf/abc.php?id=76"]},
  1244. {"name":"TVBS新闻","urls":["http://www.295ys.cf/abc.php?id=37"]},
  1245. {"name":"TVB翡翠台","urls":["http://www.295ys.cf/abc.php?id=78"]},
  1246. {"name":"ViVTV","urls":["http://www.295ys.cf/abc.php?id=94"]},
  1247. {"name":"八大第一","urls":["http://www.295ys.cf/abc.php?id=21"]},
  1248. {"name":"八大娱乐","urls":["http://www.295ys.cf/abc.php?id=20"]},
  1249. {"name":"八大综合","urls":["http://www.295ys.cf/abc.php?id=22"]},
  1250. {"name":"港台32","urls":["http://www.295ys.cf/abc.php?id=97"]},
  1251. {"name":"龙翔时代","urls":["http://www.295ys.cf/abc.php?id=13"]},
  1252. {"name":"民视新闻","urls":["http://www.295ys.cf/abc.php?id=5"]},
  1253. {"name":"三立台湾","urls":["http://www.295ys.cf/abc.php?id=24"]},
  1254. {"name":"天映电影","urls":["http://www.295ys.cf/abc.php?id=15"]},
  1255. {"name":"纬来体育","urls":["http://www.295ys.cf/abc.php?id=11"]},
  1256. {"name":"纬来综合","urls":["http://www.295ys.cf/abc.php?id=12"]},
  1257. {"name":"中视新闻","urls":["http://www.295ys.cf/abc.php?id=19"]},
  1258. {"name":"中天新闻","urls":["http://www.295ys.cf/abc.php?id=42"]},
  1259. {"name":"ELEVEN SPORTS 2","urls":["http://211.23.114.106:8567/http/59.120.8.187:8078/hls/26/80/esport2.m3u8"]}
  1260. ]},
  1261. {"group": "临时源一","channels": [{"name":"民视","urls":["http://59.125.101.187:8586/playlist.m3u8","http://211.23.114.106:8614/playlist.m3u8","rtmp://59.124.75.138/sat/tv051","rtmp://59.124.75.157/sat/tv051"]},
  1262. {"name":"华视","urls":["http://59.125.101.187:8593/playlist.m3u8","http://59.125.101.187:8544/playlist.m3u8","rtmp://59.124.75.138/sat/tv111","rtmp://59.124.75.157/sat/tv111"]},
  1263. {"name":"台视","urls":["http://59.125.101.187:8594/playlist.m3u8","http://59.125.101.187:8501/playlist.m3u8","http://211.23.114.106:8616/playlist.m3u8","rtmp://59.124.75.138/sat/tv071","rtmp://59.124.75.157/sat/tv071"]},
  1264. {"name":"中视","urls":["http://59.125.101.187:8595/playlist.m3u8","http://59.125.101.187:8581/playlist.m3u8","rtmp://59.124.75.138/sat/tv091","rtmp://59.124.75.157/sat/tv091"]},
  1265. {"name":"公视","urls":["http://59.125.101.187:8592/playlist.m3u8"]},
  1266. {"name":"FOXMOVIES","urls":["http://59.125.101.187:8500/playlist.m3u8","http://59.125.101.187:8616/playlist.m3u8"]},
  1267. {"name":"好莱坞电影台","urls":["http://59.125.101.187:8550/playlist.m3u8"]},
  1268. {"name":"HBO","urls":["http://59.125.101.187:8615/playlist.m3u8"]},
  1269. {"name":"AXN","urls":["http://59.125.101.187:8617/playlist.m3u8"]},
  1270. {"name":"FOX","urls":["http://59.125.101.187:8618/playlist.m3u8"]},
  1271. {"name":"龙华电影","urls":["http://59.125.101.187:8619/playlist.m3u8"]},
  1272. {"name":"Discovery","urls":["http://59.125.101.187:8578/playlist.m3u8","http://59.125.101.187:8582/playlist.m3u8"]},
  1273. {"name":"卫视电影台","urls":["http://59.125.101.187:8598/playlist.m3u8","http://59.125.101.187:8599/playlist.m3u8"]},
  1274. {"name":"龙华日韩台","urls":["http://59.125.101.187:8535/playlist.m3u8"]},
  1275. {"name":"wakuwaku","urls":["http://59.125.101.187:8538/playlist.m3u8"]},
  1276. {"name":"民视新闻台","urls":["http://59.125.101.187:8539/playlist.m3u8"]},
  1277. {"name":"八大戏剧台","urls":["http://59.125.101.187:8583/playlist.m3u8"]},
  1278. {"name":"龙华戏剧","urls":["http://59.125.101.187:8585/playlist.m3u8"]},
  1279. {"name":"龙华偶像","urls":["http://59.125.101.187:8587/playlist.m3u8"]},
  1280. {"name":"FOXMOVIES","urls":["http://59.125.101.187:8588/playlist.m3u8"]},
  1281. {"name":"年代MUCH","urls":["http://59.125.101.187:8589/playlist.m3u8"]},
  1282. {"name":"中天新闻","urls":["http://211.23.114.106:8629/playlist.m3u8"]},
  1283. {"name":"非凡新闻台","urls":["http://59.125.101.187:8591/playlist.m3u8"]},
  1284. {"name":"三立新闻台","urls":["http://59.125.101.187:8590/playlist.m3u8"]},
  1285. {"name":"中天综合台","urls":["http://59.125.101.187:8596/playlist.m3u8","http://211.23.114.106:8626/playlist.m3u8"]},
  1286. {"name":"中天娱乐台","urls":["http://59.125.101.187:8597/playlist.m3u8","http://211.23.114.106:8627/playlist.m3u8","http://60.250.91.85:8585/playlist.m3u8"]},
  1287. {"name":"纬来体育台","urls":["http://59.125.101.187:8600/playlist.m3u8"]},
  1288. {"name":"海峡卫视","urls":["http://59.125.101.187:8601/playlist.m3u8"]},
  1289. {"name":"纬来日本台","urls":["http://59.125.101.187:8608/playlist.m3u8"]},
  1290. {"name":"年代新闻台","urls":["http://59.125.101.187:8609/playlist.m3u8"]},
  1291. {"name":"民视新闻台","urls":["http://59.125.101.187:8610/playlist.m3u8"]},
  1292. {"name":"非凡商业台","urls":["http://59.125.101.187:8611/playlist.m3u8"]},
  1293. {"name":"壹电视新闻台","urls":["http://59.125.101.187:8613/playlist.m3u8"]},
  1294. {"name":"寰宇新闻","urls":["http://59.125.101.187:8528/playlist.m3u8"]},
  1295. {"name":"博斯运动一台","urls":["http://59.125.101.187:8621/playlist.m3u8"]},
  1296. {"name":"东森幼幼台","urls":["http://59.125.101.187:8506/playlist.m3u8","http://59.125.101.187:8515/playlist.m3u8","http://211.23.114.106:8615/playlist.m3u8"]},
  1297. {"name":"大爱一台","urls":["http://211.23.114.106:8617/playlist.m3u8"]},
  1298. {"name":"GoodTV","urls":["http://211.23.114.106:8618/playlist.m3u8"]},
  1299. {"name":"国家地理频道(台湾)","urls":["http://211.23.114.106:8619/playlist.m3u8"]},
  1300. {"name":"八大综合台","urls":["http://211.23.114.106:8620/playlist.m3u8"]},
  1301. {"name":"动物星球","urls":["http://211.23.114.106:8622/playlist.m3u8"]},
  1302. {"name":"亚洲旅游台","urls":["http://211.23.114.106:8623/playlist.m3u8"]},
  1303. {"name":"东森综合台","urls":["http://211.23.114.106:8624/playlist.m3u8"]},
  1304. {"name":"东森超视","urls":["http://211.23.114.106:8625/playlist.m3u8"]},
  1305. {"name":"龙华卡通","urls":["http://211.23.114.106:8628/playlist.m3u8"]},
  1306. {"name":"三立台湾台","urls":["http://59.125.101.187:8519/playlist.m3u8","http://211.23.114.106:8621/playlist.m3u8","http://easy_001.ztpfuoodzsthwn.xyz:8888/mylive/103/333290/index.m3u8","http://211.23.114.106:8631/playlist.m3u8"]},
  1307. {"name":"三立都会台","urls":["http://59.125.101.187:8522/playlist.m3u8","http://easy_001.ztpfuoodzsthwn.xyz:8888/mylive/103/333300/index.m3u8","http://59.125.101.187:8605/playlist.m3u8"]},
  1308. {"name":"东森戏剧台","urls":["http://easy_001.ztpfuoodzsthwn.xyz:8888/mylive/103/333540/index.m3u8"]},
  1309. {"name":"卫视中文台","urls":["http://easy_001.ztpfuoodzsthwn.xyz:8888/mylive/103/333660/index.m3u8"]},
  1310. {"name":"原住民频道","urls":["http://streamipcf.akamaized.net/live/_definst_/live_720/key_b1500.m3u8"]},
  1311. {"name":"TVBS欢乐台","urls":["rtmp://59.124.75.138/sat/tv421","rtmp://59.124.75.157/sat/tv421"]},
  1312. {"name":"MoMo综合台","urls":["rtmp://59.124.75.138/sat/tv761","rtmp://59.124.75.157/sat/tv761"]},
  1313. {"name":"纬来育乐台","urls":["rtmp://59.124.75.138/sat/tv701","rtmp://59.124.75.157/sat/tv701"]},
  1314. {"name":"纬来日本台","urls":["rtmp://59.124.75.138/sat/tv771","rtmp://59.124.75.157/sat/tv771"]},
  1315. {"name":"华视","urls":["http://59.125.101.187:8544/playlist.m3u8"]},
  1316. {"name":"华视","urls":["http://59.125.101.187:8593/playlist.m3u8"]},
  1317. {"name":"台视","urls":["http://59.125.101.187:8594/playlist.m3u8"]},
  1318. {"name":"动物星球","urls":["http://59.125.101.187:8501/playlist.m3u8"]},
  1319. {"name":"好莱坞电影台","urls":["http://59.125.101.187:8506/playlist.m3u8"]},
  1320. {"name":"HBO","urls":["http://59.125.101.187:8615/playlist.m3u8","http://59.125.101.187:8589/playlist.m3u8"]},
  1321. {"name":"FOXMOVIES","urls":["http://59.125.101.187:8616/playlist.m3u8"]},
  1322. {"name":"AXN","urls":["http://59.125.101.187:8617/playlist.m3u8"]},
  1323. {"name":"FOX","urls":["http://59.125.101.187:8618/playlist.m3u8"]},
  1324. {"name":"龙华电影","urls":["http://59.125.101.187:8619/playlist.m3u8"]},
  1325. {"name":"东森幼幼台","urls":["http://59.125.101.187:8515/playlist.m3u8"]},
  1326. {"name":"三立台湾台","urls":["http://59.125.101.187:8519/playlist.m3u8"]},
  1327. {"name":"三立都会台","urls":["http://59.125.101.187:8522/playlist.m3u8"]},
  1328. {"name":"寰宇新闻","urls":["http://59.125.101.187:8528/playlist.m3u8"]},
  1329. {"name":"龙华日韩台","urls":["http://59.125.101.187:8535/playlist.m3u8"]},
  1330. {"name":"wakuwaku","urls":["http://59.125.101.187:8538/playlist.m3u8"]},
  1331. {"name":"八大戏剧台","urls":["http://59.125.101.187:8539/playlist.m3u8"]},
  1332. {"name":"CNBCHongKong","urls":["http://59.125.101.187:8550/playlist.m3u8"]},
  1333. {"name":"东风卫视","urls":["http://59.125.101.187:8578/playlist.m3u8"]},
  1334. {"name":"MOMO亲子台","urls":["http://59.125.101.187:8581/playlist.m3u8"]},
  1335. {"name":"龙华卡通","urls":["http://59.125.101.187:8582/playlist.m3u8"]},
  1336. {"name":"纬来综合台","urls":["http://59.125.101.187:8583/playlist.m3u8"]},
  1337. {"name":"龙华戏剧","urls":["http://59.125.101.187:8585/playlist.m3u8"]},
  1338. {"name":"龙华日韩台","urls":["http://59.125.101.187:8586/playlist.m3u8"]},
  1339. {"name":"龙华偶像","urls":["http://59.125.101.187:8587/playlist.m3u8"]},
  1340. {"name":"东森新闻台","urls":["http://59.125.101.187:8588/playlist.m3u8"]},
  1341. {"name":"三立新闻台","urls":["http://59.125.101.187:8590/playlist.m3u8"]},
  1342. {"name":"非凡新闻台","urls":["http://59.125.101.187:8591/playlist.m3u8"]},
  1343. {"name":"TLC旅游生活频道","urls":["http://59.125.101.187:8592/playlist.m3u8"]},
  1344. {"name":"东森综合台","urls":["http://59.125.101.187:8595/playlist.m3u8"]},
  1345. {"name":"中天综合台","urls":["http://59.125.101.187:8596/playlist.m3u8"]},
  1346. {"name":"中天娱乐台","urls":["http://59.125.101.187:8597/playlist.m3u8"]},
  1347. {"name":"Discovery","urls":["http://59.125.101.187:8598/playlist.m3u8"]},
  1348. {"name":"八大第一台","urls":["http://59.125.101.187:8599/playlist.m3u8"]},
  1349. {"name":"国兴卫视","urls":["http://59.125.101.187:8600/playlist.m3u8"]},
  1350. {"name":"东森财经新闻台","urls":["http://59.125.101.187:8601/playlist.m3u8"]},
  1351. {"name":"三立都会台","urls":["http://59.125.101.187:8605/playlist.m3u8"]},
  1352. {"name":"纬来日本台","urls":["http://59.125.101.187:8608/playlist.m3u8"]},
  1353. {"name":"年代新闻台","urls":["http://59.125.101.187:8609/playlist.m3u8"]},
  1354. {"name":"民视新闻台","urls":["http://59.125.101.187:8610/playlist.m3u8"]},
  1355. {"name":"非凡商业台","urls":["http://59.125.101.187:8611/playlist.m3u8"]},
  1356. {"name":"壹电视新闻台","urls":["http://59.125.101.187:8613/playlist.m3u8"]},
  1357. {"name":"博斯运动一台","urls":["http://59.125.101.187:8621/playlist.m3u8"]},
  1358. //
  1359. {"name":"凤凰中文","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227222/index.m3u8?servicetype=1"]},
  1360. {"name":"凤凰资讯","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227226/index.m3u8?servicetype=1"]},
  1361. {"name":"中国天气","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227210/index.m3u8?servicetype=1"]},
  1362. {"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"]},
  1363. {"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"]},
  1364. {"name":"CCTV3","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227055/index.m3u8?servicetype=1"]},
  1365. {"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"]},
  1366. {"name":"CCTV5","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227170/index.m3u8?servicetype=1"]},
  1367. {"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"]},
  1368. {"name":"CCTV6","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227137/index.m3u8?servicetype=1"]},
  1369. {"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"]},
  1370. {"name":"CCTV8","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227174/index.m3u8?servicetype=1"]},
  1371. {"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"]},
  1372. {"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"]},
  1373. {"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"]},
  1374. {"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"]},
  1375. {"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"]},
  1376. {"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"]},
  1377. {"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"]},
  1378. {"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"]},
  1379. {"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"]},
  1380. {"name":"中国教育1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227067/index.m3u8?servicetype=1"]},
  1381. {"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"]},
  1382. {"name":"东南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227156/index.m3u8?servicetype=1"]},
  1383. {"name":"海峡卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227198/index.m3u8?servicetype=1"]},
  1384. {"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"]},
  1385. {"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"]},
  1386. {"name":"云南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227181/index.m3u8?servicetype=1"]},
  1387. {"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"]},
  1388. {"name":"吉林卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227099/index.m3u8?servicetype=1"]},
  1389. {"name":"四川卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227182/index.m3u8?servicetype=1"]},
  1390. {"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"]},
  1391. {"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"]},
  1392. {"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"]},
  1393. {"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"]},
  1394. {"name":"广西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227250/index.m3u8?servicetype=1"]},
  1395. {"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"]},
  1396. {"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"]},
  1397. {"name":"河北卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227063/index.m3u8?servicetype=1"]},
  1398. {"name":"河南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227095/index.m3u8?servicetype=1"]},
  1399. {"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"]},
  1400. {"name":"海南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227216/index.m3u8?servicetype=1"]},
  1401. {"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"]},
  1402. {"name":"甘肃卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227262/index.m3u8?servicetype=1"]},
  1403. {"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"]},
  1404. {"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"]},
  1405. {"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"]},
  1406. {"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"]},
  1407. {"name":"厦门卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226781/index.m3u8?servicetype=1"]},
  1408. {"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"]},
  1409. {"name":"厦门2","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226777/index.m3u8?servicetype=1"]},
  1410. {"name":"厦门3","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226760/index.m3u8?servicetype=1"]},
  1411. {"name":"福建乡村振兴公共","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227153/index.m3u8?servicetype=1"]},
  1412. {"name":"福建少儿","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227194/index.m3u8?servicetype=1"]},
  1413. {"name":"福建教育","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227202/index.m3u8?servicetype=1"]},
  1414. {"name":"福建文体","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227188/index.m3u8?servicetype=1"]},
  1415. {"name":"福建新闻","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227180/index.m3u8?servicetype=1"]},
  1416. {"name":"福建旅游","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227190/index.m3u8?servicetype=1"]},
  1417. {"name":"福建电视剧","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227079/index.m3u8?servicetype=1"]},
  1418. {"name":"福建经济","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227184/index.m3u8?servicetype=1"]},
  1419. {"name":"福建综合","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227149/index.m3u8?servicetype=1"]},
  1420. {"name":"南平1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227066/index.m3u8?servicetype=1"]},
  1421. {"name":"南平2","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226956/index.m3u8?servicetype=1"]},
  1422. {"name":"宁德1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227196/index.m3u8?servicetype=1"]},
  1423. {"name":"龙岩综合","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227200/index.m3u8?servicetype=1"]},
  1424. {"name":"黑莓动画","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225878/index.m3u8?servicetype=1"]},
  1425. {"name":"黑莓电影","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225891/index.m3u8?servicetype=1"]},
  1426. {"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"]},
  1427. {"name":"NewTV中国功夫","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225896/index.m3u8?servicetype=1"]},
  1428. {"name":"NewTV军事评论","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225890/index.m3u8?servicetype=1"]},
  1429. {"name":"NewTV军旅剧场","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225887/index.m3u8?servicetype=1"]},
  1430. {"name":"NewTV动作电影","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225879/index.m3u8?servicetype=1"]},
  1431. {"name":"NewTV古装剧场","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225880/index.m3u8?servicetype=1"]},
  1432. {"name":"NewTV家庭剧场","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225882/index.m3u8?servicetype=1"]},
  1433. {"name":"NewTV怡伴健康","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225883/index.m3u8?servicetype=1"]},
  1434. {"name":"NewTV惊悚悬疑","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225885/index.m3u8?servicetype=1"]},
  1435. {"name":"NewTV武搏世界","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225895/index.m3u8?servicetype=1"]},
  1436. {"name":"NewTV海外剧场","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225881/index.m3u8?servicetype=1"]},
  1437. {"name":"NewTV潮妈辣婆","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226107/index.m3u8?servicetype=1"]},
  1438. {"name":"NewTV炫舞未来","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226699/index.m3u8?servicetype=1"]},
  1439. {"name":"NewTV爱情喜剧","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225877/index.m3u8?servicetype=1"]},
  1440. {"name":"NewTV精品体育","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225886/index.m3u8?servicetype=1"]},
  1441. {"name":"NewTV精品大剧","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225889/index.m3u8?servicetype=1"]},
  1442. {"name":"NewTV精品纪录","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225888/index.m3u8?servicetype=1"]},
  1443. {"name":"NewTV金牌综艺","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225884/index.m3u8?servicetype=1"]},
  1444. {"name":"SiTV极速汽车","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227052/index.m3u8?servicetype=1"]},
  1445. {"name":"SiTV七彩戏剧","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227212/index.m3u8?servicetype=1"]},
  1446. {"name":"SiTV东方财经","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227087/index.m3u8?servicetype=1"]},
  1447. {"name":"SiTV全纪实","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227083/index.m3u8?servicetype=1"]},
  1448. {"name":"SiTV动漫秀场","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227071/index.m3u8?servicetype=1"]},
  1449. {"name":"SiTV极速汽车","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227186/index.m3u8?servicetype=1"]},
  1450. {"name":"SiTV欢笑剧场","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227145/index.m3u8?servicetype=1"]},
  1451. {"name":"SiTV法治天地","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227176/index.m3u8?servicetype=1"]},
  1452. {"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"]},
  1453. {"name":"SiTV生活时尚","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227091/index.m3u8?servicetype=1"]},
  1454. {"name":"SiTV都市剧场","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227204/index.m3u8?servicetype=1"]},
  1455. {"name":"SiTV金色学堂","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227208/index.m3u8?servicetype=1"]},
  1456. {"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"]},
  1457. {"name":"北京冬奥纪实","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225944/index.m3u8?servicetype=1"]},
  1458. {"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"]},
  1459. {"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"]},
  1460. {"name":"湖南金鹰卡通","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227018/index.m3u8?servicetype=1"]},
  1461. {"name":"江西陶瓷","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227234/index.m3u8?servicetype=1"]},
  1462. {"name":"CGTN","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226980/index.m3u8?servicetype=1"]},
  1463. {"name":"CGTN","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225822/index.m3u8?servicetype=1"]},
  1464. {"name":"CGTN纪录","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225813/index.m3u8?servicetype=1"]},
  1465. {"name":"CGTN俄语","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227103/index.m3u8?servicetype=1"]},
  1466. {"name":"CGTN法语","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227220/index.m3u8?servicetype=1"]},
  1467. {"name":"CGTN西语","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227238/index.m3u8?servicetype=1"]},
  1468. {"name":"CGTN阿语","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227224/index.m3u8?servicetype=1"]},
  1469. {"name":"中国教育1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225869/index.m3u8?servicetype=1"]},
  1470. {"name":"中国教育2","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227206/index.m3u8?servicetype=1"]},
  1471. {"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"]},
  1472. {"name":"东南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225833/index.m3u8?servicetype=1"]},
  1473. {"name":"云南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225853/index.m3u8?servicetype=1"]},
  1474. {"name":"内蒙古卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225846/index.m3u8?servicetype=1"]},
  1475. {"name":"内蒙古卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226933/index.m3u8?servicetype=1"]},
  1476. {"name":"内蒙古卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227244/index.m3u8?servicetype=1"]},
  1477. {"name":"厦门卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226964/index.m3u8?servicetype=1"]},
  1478. {"name":"吉林卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225851/index.m3u8?servicetype=1"]},
  1479. {"name":"四川卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225835/index.m3u8?servicetype=1"]},
  1480. {"name":"宁夏卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225849/index.m3u8?servicetype=1"]},
  1481. {"name":"宁夏卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226843/index.m3u8?servicetype=1"]},
  1482. {"name":"宁夏卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227254/index.m3u8?servicetype=1"]},
  1483. {"name":"山西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225839/index.m3u8?servicetype=1"]},
  1484. {"name":"山西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226839/index.m3u8?servicetype=1"]},
  1485. {"name":"山西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227258/index.m3u8?servicetype=1"]},
  1486. {"name":"广西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225836/index.m3u8?servicetype=1"]},
  1487. {"name":"广西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226925/index.m3u8?servicetype=1"]},
  1488. {"name":"新疆卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225852/index.m3u8?servicetype=1"]},
  1489. {"name":"新疆卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226936/index.m3u8?servicetype=1"]},
  1490. {"name":"新疆卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227248/index.m3u8?servicetype=1"]},
  1491. {"name":"河北卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225837/index.m3u8?servicetype=1"]},
  1492. {"name":"河南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225842/index.m3u8?servicetype=1"]},
  1493. {"name":"海南卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225855/index.m3u8?servicetype=1"]},
  1494. {"name":"甘肃卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225845/index.m3u8?servicetype=1"]},
  1495. {"name":"甘肃卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226932/index.m3u8?servicetype=1"]},
  1496. {"name":"西藏卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226847/index.m3u8?servicetype=1"]},
  1497. {"name":"西藏卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227217/index.m3u8?servicetype=1"]},
  1498. {"name":"贵州卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225838/index.m3u8?servicetype=1"]},
  1499. {"name":"陕西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225850/index.m3u8?servicetype=1"]},
  1500. {"name":"陕西卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227221/index.m3u8?servicetype=1"]},
  1501. {"name":"青海卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225841/index.m3u8?servicetype=1"]},
  1502. {"name":"青海卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227119/index.m3u8?servicetype=1"]},
  1503. {"name":"四川康巴卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225856/index.m3u8?servicetype=1"]},
  1504. {"name":"山东教育卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225873/index.m3u8?servicetype=1"]},
  1505. {"name":"广东南方卫视上星","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227214/index.m3u8?servicetype=1"]},
  1506. {"name":"新疆兵团卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227168/index.m3u8?servicetype=1"]},
  1507. {"name":"海南三沙卫视","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227172/index.m3u8?servicetype=1"]},
  1508. {"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"]},
  1509. {"name":"广东嘉佳卡通","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227230/index.m3u8?servicetype=1"]},
  1510. {"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"]},
  1511. {"name":"江苏优漫卡通","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221225874/index.m3u8?servicetype=1"]},
  1512. {"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"]},
  1513. {"name":"福建教育","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221226981/index.m3u8?servicetype=1"]},
  1514. {"name":"三明1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227173/index.m3u8?servicetype=1"]},
  1515. {"name":"平潭综合","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227218/index.m3u8?servicetype=1"]},
  1516. {"name":"泉州1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227165/index.m3u8?servicetype=1"]},
  1517. {"name":"漳州","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227169/index.m3u8?servicetype=1"]},
  1518. {"name":"福州1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227157/index.m3u8?servicetype=1"]},
  1519. {"name":"莆田1","urls":["http://zterr.hvs.fj.chinamobile.com:6060/PLTV/88888888/224/3221227161/index.m3u8?servicetype=1"]},
  1520. //以下失效
  1521. {"name":"凤凰中文","urls":["http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8","http://183.207.248.170/ott.js.chinamobile.com/PLTV/3/224/3221226922/index.m3u8"]},
  1522. {"name":"凤凰资讯","urls":["http://223.110.235.4/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8","http://183.207.249.143/ott.js.chinamobile.com/PLTV/3/224/3221226923/index.m3u8"]},
  1523. {"name":"凤凰香港","urls":["http://223.110.235.11/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8","http://183.207.249.208/ott.js.chinamobile.com/PLTV/3/224/3221226975/index.m3u8"]},
  1524. {"name":"黑莓电影","urls":["http://183.207.249.143/ott.js.chinamobile.com/PLTV/3/224/3221227520/index.m3u8","http://223.110.236.17/ott.js.chinamobile.com/PLTV/3/224/3221225567/index.m3u8"]},
  1525. {"name":"CCTV1","urls":["http://223.110.235.32/ott.js.chinamobile.com/PLTV/3/224/3221228245/index.m3u8","http://223.110.235.35/ott.js.chinamobile.com/PLTV/3/224/3221227375/index.m3u8","http://183.207.249.208/ott.js.chinamobile.com/PLTV/3/224/3221227641/index.m3u8","http://183.207.248.135/ott.js.chinamobile.com/PLTV/3/224/3221227494/index.m3u8","http://223.110.235.38/ott.js.chinamobile.com/PLTV/3/224/3221225530/index.m3u8","http://183.207.249.236/ott.js.chinamobile.com/PLTV/3/224/3221226316/index.m3u8","http://223.110.235.14/ott.js.chinamobile.com/PLTV/3/224/3221227644/index.m3u8","http://223.110.236.9/ott.js.chinamobile.com/PLTV/3/224/3221228146/index.m3u8","http://223.110.235.38/ott.js.chinamobile.com/PLTV/3/224/3221227675/index.m3u8","http://223.110.235.34/ott.js.chinamobile.com/PLTV/3/224/3221227462/index.m3u8","http://183.207.249.102/ott.js.chinamobile.com/PLTV/3/224/3221227431/index.m3u8","http://223.110.236.54/ott.js.chinamobile.com/PLTV/3/224/3221227634/index.m3u8","http://223.110.235.8/ott.js.chinamobile.com/PLTV/3/224/3221228049/index.m3u8","http://223.110.236.5/ott.js.chinamobile.com/PLTV/3/224/3221228075/index.m3u8","http://223.110.235.32/ott.js.chinamobile.com/PLTV/3/224/3221227725/index.m3u8","http://223.110.236.53/ott.js.chinamobile.com/PLTV/3/224/3221228213/index.m3u8","http://223.110.235.36/ott.js.chinamobile.com/PLTV/3/224/3221227467/index.m3u8","http://223.110.236.8/ott.js.chinamobile.com/PLTV/3/224/3221228149/index.m3u8"]},
  1526. {"name":"CCTV2","urls":["http://223.110.236.20/ott.js.chinamobile.com/PLTV/3/224/3221228094/index.m3u8","http://223.110.235.37/ott.js.chinamobile.com/PLTV/3/224/3221228248/index.m3u8","http://183.207.249.143/ott.js.chinamobile.com/PLTV/3/224/3221226993/index.m3u8","http://183.207.248.176/ott.js.chinamobile.com/PLTV/3/224/3221227207/index.m3u8","http://223.110.236.10/ott.js.chinamobile.com/PLTV/3/224/3221227708/index.m3u8","http://183.207.249.167/ott.js.chinamobile.com/PLTV/3/224/3221227427/index.m3u8","http://223.110.235.14/ott.js.chinamobile.com/PLTV/3/224/3221227696/index.m3u8","http://223.110.236.12/ott.js.chinamobile.com/PLTV/3/224/3221227569/index.m3u8","http://223.110.235.36/ott.js.chinamobile.com/PLTV/3/224/3221228118/index.m3u8","http://183.207.248.133/ott.js.chinamobile.com/PLTV/3/224/3221227543/index.m3u8"]},
  1527. {"name":"CCTV3","urls":["http://223.110.235.38/ott.js.chinamobile.com/PLTV/3/224/3221228174/index.m3u8","http://223.110.235.20/ott.js.chinamobile.com/PLTV/3/224/3221225588/index.m3u8","http://223.110.236.6/ott.js.chinamobile.com/PLTV/3/224/3221227481/index.m3u8","http://183.207.248.133/ott.js.chinamobile.com/PLTV/3/224/3221227295/index.m3u8","http://223.110.235.6/ott.js.chinamobile.com/PLTV/3/224/3221227650/index.m3u8","http://223.110.235.14/ott.js.chinamobile.com/PLTV/3/224/3221227623/index.m3u8","http://183.207.249.165/ott.js.chinamobile.com/PLTV/3/224/3221227424/index.m3u8","http://223.110.235.38/ott.js.chinamobile.com/PLTV/3/224/3221228188/index.m3u8","http://183.207.249.174/ott.js.chinamobile.com/PLTV/3/224/3221227546/index.m3u8","http://223.110.235.24/ott.js.chinamobile.com/PLTV/3/224/3221228126/index.m3u8"]},
  1528. {"name":"CCTV4","urls":["http://223.110.235.35/ott.js.chinamobile.com/PLTV/3/224/3221228142/index.m3u8","http://183.207.249.105/ott.js.chinamobile.com/PLTV/3/224/3221227378/index.m3u8","http://183.207.248.143/ott.js.chinamobile.com/PLTV/3/224/3221225534/index.m3u8","http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221227658/index.m3u8","http://183.207.249.137/ott.js.chinamobile.com/PLTV/3/224/3221227683/index.m3u8","http://223.110.235.35/ott.js.chinamobile.com/PLTV/3/224/3221228156/index.m3u8","http://183.207.248.144/ott.js.chinamobile.com/PLTV/3/224/3221227489/index.m3u8","http://223.110.236.24/ott.js.chinamobile.com/PLTV/3/224/3221227549/index.m3u8","http://223.110.236.16/ott.js.chinamobile.com/PLTV/3/224/3221228091/index.m3u8","http://223.110.236.8/ott.js.chinamobile.com/PLTV/3/224/3221228242/index.m3u8"]},
  1529. {"name":"CCTV5","urls":["http://183.207.248.172/ott.js.chinamobile.com/PLTV/3/224/3221227298/index.m3u8","http://223.110.235.32/ott.js.chinamobile.com/PLTV/3/224/3221227478/index.m3u8","http://223.110.235.22/ott.js.chinamobile.com/PLTV/3/224/3221227452/index.m3u8","http://183.207.249.111/ott.js.chinamobile.com/PLTV/3/224/3221227166/index.m3u8","http://223.110.235.36/ott.js.chinamobile.com/PLTV/3/224/3221227640/index.m3u8","http://223.110.235.37/ott.js.chinamobile.com/PLTV/3/224/3221227661/index.m3u8","http://223.110.236.59/ott.js.chinamobile.com/PLTV/3/224/3221228082/index.m3u8","http://223.110.236.5/ott.js.chinamobile.com/PLTV/3/224/3221228173/index.m3u8","http://183.207.248.139/ott.js.chinamobile.com/PLTV/3/224/3221227466/index.m3u8","http://183.207.249.200/ott.js.chinamobile.com/PLTV/3/224/3221227401/index.m3u8","http://183.207.249.102/ott.js.chinamobile.com/PLTV/3/224/3221227686/index.m3u8","http://183.207.249.134/ott.js.chinamobile.com/PLTV/3/224/3221227537/index.m3u8","http://183.207.249.137/ott.js.chinamobile.com/PLTV/3/224/3221227617/index.m3u8","http://223.110.235.16/ott.js.chinamobile.com/PLTV/3/224/3221228179/index.m3u8"]},
  1530. {"name":"CCTV50","urls":["http://183.207.248.143/ott.js.chinamobile.com/PLTV/3/224/3221227381/index.m3u8","http://223.110.236.54/ott.js.chinamobile.com/PLTV/3/224/3221225604/index.m3u8","http://183.207.249.229/ott.js.chinamobile.com/PLTV/3/224/3221227522/index.m3u8","http://223.110.236.55/ott.js.chinamobile.com/PLTV/3/224/3221227714/index.m3u8","http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221227685/index.m3u8","http://223.110.235.24/ott.js.chinamobile.com/PLTV/3/224/3221228076/index.m3u8","http://223.110.236.53/ott.js.chinamobile.com/PLTV/3/224/3221228114/index.m3u8","http://223.110.235.32/ott.js.chinamobile.com/PLTV/3/224/3221227480/index.m3u8","http://183.207.249.134/ott.js.chinamobile.com/PLTV/3/224/3221227463/index.m3u8","http://223.110.236.55/ott.js.chinamobile.com/PLTV/3/224/3221227631/index.m3u8","http://223.110.236.58/ott.js.chinamobile.com/PLTV/3/224/3221227502/index.m3u8","http://223.110.236.20/ott.js.chinamobile.com/PLTV/3/224/3221228176/index.m3u8"]},
  1531. {"name":"CCTV6","urls":["http://223.110.235.6/ott.js.chinamobile.com/PLTV/3/224/3221227209/index.m3u8","http://183.207.249.139/ott.js.chinamobile.com/PLTV/3/224/3221227301/index.m3u8","http://183.207.248.135/ott.js.chinamobile.com/PLTV/3/224/3221225548/index.m3u8","http://223.110.235.32/ott.js.chinamobile.com/PLTV/3/224/3221227664/index.m3u8","http://223.110.235.16/ott.js.chinamobile.com/PLTV/3/224/3221227581/index.m3u8","http://223.110.236.57/ott.js.chinamobile.com/PLTV/3/224/3221228185/index.m3u8","http://183.207.248.170/ott.js.chinamobile.com/PLTV/3/224/3221227430/index.m3u8","http://183.207.248.176/ott.js.chinamobile.com/PLTV/3/224/3221227505/index.m3u8","http://223.110.236.16/ott.js.chinamobile.com/PLTV/3/224/3221228123/index.m3u8"]},
  1532. {"name":"CCTV7","urls":["http://183.207.248.167/ott.js.chinamobile.com/PLTV/3/224/3221227314/index.m3u8","http://183.207.249.136/ott.js.chinamobile.com/PLTV/3/224/3221225546/index.m3u8","http://223.110.235.16/ott.js.chinamobile.com/PLTV/3/224/3221227642/index.m3u8","http://183.207.248.172/ott.js.chinamobile.com/PLTV/3/224/3221227626/index.m3u8","http://223.110.236.22/ott.js.chinamobile.com/PLTV/3/224/3221227690/index.m3u8"]},
  1533. {"name":"CCTV8","urls":["http://183.207.248.142/ott.js.chinamobile.com/PLTV/3/224/3221227304/index.m3u8","http://223.110.235.6/ott.js.chinamobile.com/PLTV/3/224/3221227205/index.m3u8","http://223.110.236.10/ott.js.chinamobile.com/PLTV/3/224/3221227204/index.m3u8","http://223.110.235.10/ott.js.chinamobile.com/PLTV/3/224/3221227667/index.m3u8","http://183.207.248.174/ott.js.chinamobile.com/PLTV/3/224/3221227750/index.m3u8","http://223.110.235.18/ott.js.chinamobile.com/PLTV/3/224/3221228079/index.m3u8","http://183.207.248.167/ott.js.chinamobile.com/PLTV/3/224/3221227433/index.m3u8","http://223.110.235.22/ott.js.chinamobile.com/PLTV/3/224/3221227629/index.m3u8","http://183.207.249.104/ott.js.chinamobile.com/PLTV/3/224/3221227473/index.m3u8","http://223.110.236.26/ott.js.chinamobile.com/PLTV/3/224/3221228194/index.m3u8"]},
  1534. {"name":"CCTV9","urls":["http://183.207.249.174/ott.js.chinamobile.com/PLTV/3/224/3221225532/index.m3u8","http://223.110.236.7/ott.js.chinamobile.com/PLTV/3/224/3221227659/index.m3u8","http://183.207.249.208/ott.js.chinamobile.com/PLTV/3/224/3221227704/index.m3u8","http://223.110.236.23/ott.js.chinamobile.com/PLTV/3/224/3221227614/index.m3u8"]},
  1535. {"name":"CCTV10","urls":["http://223.110.235.14/ott.js.chinamobile.com/PLTV/3/224/3221227317/index.m3u8","http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221225550/index.m3u8","http://223.110.236.24/ott.js.chinamobile.com/PLTV/3/224/3221227717/index.m3u8","http://223.110.235.14/ott.js.chinamobile.com/PLTV/3/224/3221227620/index.m3u8","http://223.110.235.10/ott.js.chinamobile.com/PLTV/3/224/3221228078/index.m3u8"]},
  1536. {"name":"CCTV11","urls":["http://223.110.236.9/ott.js.chinamobile.com/PLTV/3/224/3221227524/index.m3u8","http://183.207.249.200/ott.js.chinamobile.com/PLTV/3/224/3221227384/index.m3u8","http://223.110.236.7/ott.js.chinamobile.com/PLTV/3/224/3221227720/index.m3u8"]},
  1537. {"name":"CCTV12","urls":["http://183.207.249.237/ott.js.chinamobile.com/PLTV/3/224/3221225556/index.m3u8","http://223.110.235.10/ott.js.chinamobile.com/PLTV/3/224/3221227655/index.m3u8","http://223.110.235.14/ott.js.chinamobile.com/PLTV/3/224/3221227637/index.m3u8"]},
  1538. {"name":"CCTV13","urls":["http://223.110.235.26/ott.js.chinamobile.com/PLTV/3/224/3221228121/index.m3u8","http://183.207.249.102/ott.js.chinamobile.com/PLTV/3/224/3221225560/index.m3u8","http://223.110.235.23/ott.js.chinamobile.com/PLTV/3/224/3221228224/index.m3u8","http://183.207.248.174/ott.js.chinamobile.com/PLTV/3/224/3221227387/index.m3u8"]},
  1539. {"name":"CCTV14","urls":["http://183.207.249.105/ott.js.chinamobile.com/PLTV/3/224/3221227201/index.m3u8","http://223.110.235.10/ott.js.chinamobile.com/PLTV/3/224/3221227656/index.m3u8","http://223.110.235.14/ott.js.chinamobile.com/PLTV/3/224/3221227693/index.m3u8"]},
  1540. {"name":"CCTV15","urls":["http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227538/index.m3u8","http://223.110.235.10/ott.js.chinamobile.com/PLTV/3/224/3221227723/index.m3u8"]},
  1541. {"name":"CCTV16","urls":["http://223.110.236.59/ott.js.chinamobile.com/PLTV/3/224/3221228112/index.m3u8","http://223.110.236.55/ott.js.chinamobile.com/PLTV/3/224/3221228144/index.m3u8","http://223.110.235.9/ott.js.chinamobile.com/PLTV/3/224/3221228168/index.m3u8","http://223.110.235.24/ott.js.chinamobile.com/PLTV/3/224/3221228127/index.m3u8"]},
  1542. {"name":"CCTV17","urls":["http://223.110.235.16/ott.js.chinamobile.com/PLTV/3/224/3221227578/index.m3u8","http://223.110.236.12/ott.js.chinamobile.com/PLTV/3/224/3221227592/index.m3u8","http://223.110.235.23/ott.js.chinamobile.com/PLTV/3/224/3221227589/index.m3u8","http://223.110.235.10/ott.js.chinamobile.com/PLTV/3/224/3221227726/index.m3u8"]},
  1543. {"name":"CCTV发现之旅","urls":["http://183.207.248.136/ott.js.chinamobile.com/PLTV/3/224/3221227030/index.m3u8"]},
  1544. {"name":"CCTV女性时尚","urls":["http://183.207.249.199/ott.js.chinamobile.com/PLTV/3/224/3221227026/index.m3u8"]},
  1545. {"name":"CCTV老故事","urls":["http://223.110.235.8/ott.js.chinamobile.com/PLTV/3/224/3221227043/index.m3u8"]},
  1546. {"name":"CCTV高尔夫网球","urls":["http://223.110.236.24/ott.js.chinamobile.com/PLTV/3/224/3221228138/index.m3u8","http://223.110.235.14/ott.js.chinamobile.com/PLTV/3/224/3221227601/index.m3u8"]},
  1547. {"name":"CGTN","urls":["http://223.110.235.10/ott.js.chinamobile.com/PLTV/3/224/3221228095/index.m3u8","http://183.207.249.136/ott.js.chinamobile.com/PLTV/3/224/3221225917/index.m3u8"]},
  1548. {"name":"CGTN纪录","urls":["http://223.110.235.25/ott.js.chinamobile.com/PLTV/3/224/3221227574/index.m3u8"]},
  1549. {"name":"湖南卫视","urls":["http://223.110.236.26/ott.js.chinamobile.com/PLTV/3/224/3221228177/index.m3u8","http://223.110.235.10/ott.js.chinamobile.com/PLTV/3/224/3221227320/index.m3u8","http://183.207.249.136/ott.js.chinamobile.com/PLTV/3/224/3221227220/index.m3u8","http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221227735/index.m3u8","http://183.207.249.176/ott.js.chinamobile.com/PLTV/3/224/3221227698/index.m3u8","http://223.110.236.24/ott.js.chinamobile.com/PLTV/3/224/3221228227/index.m3u8","http://223.110.236.10/ott.js.chinamobile.com/PLTV/3/224/3221227191/index.m3u8","http://183.207.248.133/ott.js.chinamobile.com/PLTV/3/224/3221227404/index.m3u8","http://223.110.235.23/ott.js.chinamobile.com/PLTV/3/224/3221227482/index.m3u8"]},
  1550. {"name":"东南卫视","urls":["http://223.110.235.24/ott.js.chinamobile.com/PLTV/3/224/3221227553/index.m3u8","http://223.110.245.150/ott.js.chinamobile.com/PLTV/3/224/3221227670/index.m3u8","http://183.207.248.174/ott.js.chinamobile.com/PLTV/3/224/3221225816/index.m3u8"]},
  1551. {"name":"广东卫视","urls":["http://183.207.249.103/ott.js.chinamobile.com/PLTV/3/224/3221227399/index.m3u8","http://183.207.248.136/ott.js.chinamobile.com/PLTV/3/224/3221227249/index.m3u8","http://223.110.235.7/ott.js.chinamobile.com/PLTV/3/224/3221227591/index.m3u8","http://223.110.245.141/ott.js.chinamobile.com/PLTV/3/224/3221227673/index.m3u8","http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221227691/index.m3u8","http://223.110.236.8/ott.js.chinamobile.com/PLTV/3/224/3221228230/index.m3u8","http://183.207.249.140/ott.js.chinamobile.com/PLTV/3/224/3221227445/index.m3u8","http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221227476/index.m3u8"]},
  1552. {"name":"江苏卫视","urls":["http://223.110.235.9/ott.js.chinamobile.com/PLTV/3/224/3221228251/index.m3u8","http://183.207.249.135/ott.js.chinamobile.com/PLTV/3/224/3221227402/index.m3u8","http://223.110.235.16/ott.js.chinamobile.com/PLTV/3/224/3221227736/index.m3u8","http://223.110.235.16/ott.js.chinamobile.com/PLTV/3/224/3221227739/index.m3u8","http://223.110.235.16/ott.js.chinamobile.com/PLTV/3/224/3221227792/index.m3u8","http://223.110.236.6/ott.js.chinamobile.com/PLTV/3/224/3221227255/index.m3u8","http://223.110.236.5/ott.js.chinamobile.com/PLTV/3/224/3221227561/index.m3u8","http://223.110.243.158/ott.js.chinamobile.com/PLTV/3/224/3221227668/index.m3u8","http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221227689/index.m3u8","http://183.207.248.172/ott.js.chinamobile.com/PLTV/3/224/3221227185/index.m3u8","http://183.207.249.103/ott.js.chinamobile.com/PLTV/3/224/3221227439/index.m3u8","http://223.110.235.24/ott.js.chinamobile.com/PLTV/3/224/3221228099/index.m3u8","http://183.207.249.203/ott.js.chinamobile.com/PLTV/3/224/3221227552/index.m3u8","http://223.110.236.24/ott.js.chinamobile.com/PLTV/3/224/3221228097/index.m3u8","http://223.110.235.23/ott.js.chinamobile.com/PLTV/3/224/3221228052/index.m3u8"]},
  1553. {"name":"深圳卫视","urls":["http://183.207.249.102/ott.js.chinamobile.com/PLTV/3/224/3221227307/index.m3u8","http://223.110.236.20/ott.js.chinamobile.com/PLTV/3/224/3221227624/index.m3u8","http://223.110.245.155/ott.js.chinamobile.com/PLTV/3/224/3221227677/index.m3u8","http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221227695/index.m3u8","http://223.110.235.24/ott.js.chinamobile.com/PLTV/3/224/3221228236/index.m3u8","http://183.207.248.139/ott.js.chinamobile.com/PLTV/3/224/3221227442/index.m3u8","http://183.207.248.142/ott.js.chinamobile.com/PLTV/3/224/3221227217/index.m3u8","http://183.207.248.166/ott.js.chinamobile.com/PLTV/3/224/3221227555/index.m3u8"]},
  1554. {"name":"浙江卫视","urls":["http://223.110.236.16/ott.js.chinamobile.com/PLTV/3/224/3221228180/index.m3u8","http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227393/index.m3u8","http://183.207.249.133/ott.js.chinamobile.com/PLTV/3/224/3221227215/index.m3u8","http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221227744/index.m3u8","http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227692/index.m3u8","http://223.110.235.10/ott.js.chinamobile.com/PLTV/3/224/3221228147/index.m3u8","http://183.207.248.139/ott.js.chinamobile.com/PLTV/3/224/3221225544/index.m3u8","http://223.110.236.26/ott.js.chinamobile.com/PLTV/3/224/3221228204/index.m3u8","http://183.207.248.170/ott.js.chinamobile.com/PLTV/3/224/3221227491/index.m3u8"]},
  1555. {"name":"广东南方卫视","urls":["http://223.110.235.17/ott.js.chinamobile.com/PLTV/3/224/3221227587/index.m3u8","http://183.207.249.110/ott.js.chinamobile.com/PLTV/3/224/3221227005/index.m3u8"]},
  1556. {"name":"东方卫视","urls":["http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221228145/index.m3u8","http://183.207.248.136/ott.js.chinamobile.com/PLTV/3/224/3221227396/index.m3u8","http://223.110.235.24/ott.js.chinamobile.com/PLTV/3/224/3221227597/index.m3u8","http://223.110.235.10/ott.js.chinamobile.com/PLTV/3/224/3221227732/index.m3u8","http://223.110.245.164/ott.js.chinamobile.com/PLTV/3/224/3221227688/index.m3u8","http://223.110.235.26/ott.js.chinamobile.com/PLTV/3/224/3221228150/index.m3u8","http://223.110.235.6/ott.js.chinamobile.com/PLTV/3/224/3221227208/index.m3u8","http://183.207.249.135/ott.js.chinamobile.com/PLTV/3/224/3221227486/index.m3u8","http://183.207.248.144/ott.js.chinamobile.com/PLTV/3/224/3221227511/index.m3u8"]},
  1557. {"name":"云南卫视","urls":["http://223.110.236.27/ott.js.chinamobile.com/PLTV/3/224/3221228169/index.m3u8","http://223.110.236.17/ott.js.chinamobile.com/PLTV/3/224/3221225591/index.m3u8","http://223.110.235.25/ott.js.chinamobile.com/PLTV/3/224/3221227571/index.m3u8","http://223.110.236.12/ott.js.chinamobile.com/PLTV/3/224/3221225838/index.m3u8"]},
  1558. {"name":"北京卫视","urls":["http://183.207.249.143/ott.js.chinamobile.com/PLTV/3/224/3221227390/index.m3u8","http://183.207.249.237/ott.js.chinamobile.com/PLTV/3/224/3221227246/index.m3u8","http://223.110.235.18/ott.js.chinamobile.com/PLTV/3/224/3221227652/index.m3u8","http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221227694/index.m3u8","http://223.110.235.18/ott.js.chinamobile.com/PLTV/3/224/3221228115/index.m3u8","http://223.110.235.14/ott.js.chinamobile.com/PLTV/3/224/3221227436/index.m3u8","http://183.207.249.170/ott.js.chinamobile.com/PLTV/3/224/3221225574/index.m3u8","http://183.207.249.236/ott.js.chinamobile.com/PLTV/3/224/3221227508/index.m3u8"]},
  1559. {"name":"吉林卫视","urls":["http://183.207.248.107/ott.js.chinamobile.com/PLTV/3/224/3221228130/index.m3u8","http://223.110.235.7/ott.js.chinamobile.com/PLTV/3/224/3221228028/index.m3u8","http://223.110.236.13/ott.js.chinamobile.com/PLTV/3/224/3221225883/index.m3u8"]},
  1560. {"name":"四川卫视","urls":["http://183.207.248.108/ott.js.chinamobile.com/PLTV/3/224/3221228171/index.m3u8","http://223.110.236.16/ott.js.chinamobile.com/PLTV/3/224/3221225814/index.m3u8","http://223.110.235.7/ott.js.chinamobile.com/PLTV/3/224/3221227556/index.m3u8"]},
  1561. {"name":"天津卫视","urls":["http://183.207.249.142/ott.js.chinamobile.com/PLTV/3/224/3221227382/index.m3u8","http://223.110.235.6/ott.js.chinamobile.com/PLTV/3/224/3221227633/index.m3u8","http://183.207.249.199/ott.js.chinamobile.com/PLTV/3/224/3221227212/index.m3u8","http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221227741/index.m3u8","http://223.110.245.146/ott.js.chinamobile.com/PLTV/3/224/3221227756/index.m3u8","http://223.110.236.24/ott.js.chinamobile.com/PLTV/3/224/3221228239/index.m3u8","http://223.110.245.164/ott.js.chinamobile.com/PLTV/3/224/3221227407/index.m3u8","http://183.207.249.206/ott.js.chinamobile.com/PLTV/3/224/3221227488/index.m3u8","http://183.207.249.143/ott.js.chinamobile.com/PLTV/3/224/3221225808/index.m3u8"]},
  1562. {"name":"安徽卫视","urls":["http://183.207.249.173/ott.js.chinamobile.com/PLTV/3/224/3221225634/index.m3u8","http://223.110.235.18/ott.js.chinamobile.com/PLTV/3/224/3221227653/index.m3u8","http://223.110.235.23/ott.js.chinamobile.com/PLTV/3/224/3221227759/index.m3u8","http://223.110.236.23/ott.js.chinamobile.com/PLTV/3/224/3221228153/index.m3u8","http://183.207.249.200/ott.js.chinamobile.com/PLTV/3/224/3221227498/index.m3u8","http://183.207.249.106/ott.js.chinamobile.com/PLTV/3/224/3221227643/index.m3u8","http://183.207.249.135/ott.js.chinamobile.com/PLTV/3/224/3221227558/index.m3u8","http://223.110.235.21/ott.js.chinamobile.com/PLTV/3/224/3221225800/index.m3u8"]},
  1563. {"name":"山东卫视","urls":["http://183.207.249.176/ott.js.chinamobile.com/PLTV/3/224/3221227310/index.m3u8","http://223.110.235.7/ott.js.chinamobile.com/PLTV/3/224/3221227621/index.m3u8","http://223.110.236.7/ott.js.chinamobile.com/PLTV/3/224/3221227671/index.m3u8","http://223.110.235.2/ott.js.chinamobile.com/PLTV/3/224/3221227697/index.m3u8","http://223.110.235.10/ott.js.chinamobile.com/PLTV/3/224/3221228124/index.m3u8","http://183.207.249.111/ott.js.chinamobile.com/PLTV/3/224/3221227448/index.m3u8","http://223.110.245.148/ott.js.chinamobile.com/PLTV/3/224/3221227258/index.m3u8","http://183.207.248.135/ott.js.chinamobile.com/PLTV/3/224/3221227517/index.m3u8"]},
  1564. {"name":"广西卫视","urls":["http://223.110.235.27/ott.js.chinamobile.com/PLTV/3/224/3221228183/index.m3u8","http://183.207.249.110/ott.js.chinamobile.com/PLTV/3/224/3221225806/index.m3u8","http://223.110.236.11/ott.js.chinamobile.com/PLTV/3/224/3221227609/index.m3u8"]},
  1565. {"name":"新疆卫视","urls":["http://223.110.236.55/ott.js.chinamobile.com/PLTV/3/224/3221228290/index.m3u8","http://183.207.249.173/ott.js.chinamobile.com/PLTV/3/224/3221225844/index.m3u8","http://183.207.248.134/ott.js.chinamobile.com/PLTV/3/224/3221225523/index.m3u8","http://223.110.236.10/ott.js.chinamobile.com/PLTV/3/224/3221227627/index.m3u8"]},
  1566. {"name":"江西卫视","urls":["http://183.207.249.103/ott.js.chinamobile.com/PLTV/3/224/3221225536/index.m3u8","http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221227738/index.m3u8","http://223.110.236.20/ott.js.chinamobile.com/PLTV/3/224/3221228109/index.m3u8","http://183.207.249.176/ott.js.chinamobile.com/PLTV/3/224/3221225798/index.m3u8"]},
  1567. {"name":"河北卫视","urls":["http://223.110.236.9/ott.js.chinamobile.com/PLTV/3/224/3221228106/index.m3u8","http://223.110.236.11/ott.js.chinamobile.com/PLTV/3/224/3221227545/index.m3u8","http://183.207.249.109/ott.js.chinamobile.com/PLTV/3/224/3221225840/index.m3u8"]},
  1568. {"name":"河南卫视","urls":["http://223.110.236.9/ott.js.chinamobile.com/PLTV/3/224/3221228221/index.m3u8","http://223.110.236.6/ott.js.chinamobile.com/PLTV/3/224/3221227521/index.m3u8","http://223.110.235.20/ott.js.chinamobile.com/PLTV/3/224/3221225815/index.m3u8"]},
  1569. {"name":"海南卫视","urls":["http://223.110.236.26/ott.js.chinamobile.com/PLTV/3/224/3221228139/index.m3u8","http://223.110.236.10/ott.js.chinamobile.com/PLTV/3/224/3221228101/index.m3u8","http://183.207.249.200/ott.js.chinamobile.com/PLTV/3/224/3221225810/index.m3u8"]},
  1570. {"name":"湖北卫视","urls":["http://223.110.235.10/ott.js.chinamobile.com/PLTV/3/224/3221227377/index.m3u8","http://183.207.249.105/ott.js.chinamobile.com/PLTV/3/224/3221227211/index.m3u8","http://223.110.236.20/ott.js.chinamobile.com/PLTV/3/224/3221227565/index.m3u8","http://223.110.236.3/ott.js.chinamobile.com/PLTV/3/224/3221227665/index.m3u8","http://183.207.248.174/ott.js.chinamobile.com/PLTV/3/224/3221227703/index.m3u8","http://223.110.236.5/ott.js.chinamobile.com/PLTV/3/224/3221228159/index.m3u8","http://183.207.248.134/ott.js.chinamobile.com/PLTV/3/224/3221227495/index.m3u8","http://183.207.249.143/ott.js.chinamobile.com/PLTV/3/224/3221227479/index.m3u8","http://183.207.248.165/ott.js.chinamobile.com/PLTV/3/224/3221225877/index.m3u8"]},
  1571. {"name":"甘肃卫视","urls":["http://223.110.236.16/ott.js.chinamobile.com/PLTV/3/224/3221228166/index.m3u8","http://223.110.235.26/ott.js.chinamobile.com/PLTV/3/224/3221227568/index.m3u8","http://183.207.249.104/ott.js.chinamobile.com/PLTV/3/224/3221225846/index.m3u8"]},
  1572. {"name":"贵州卫视","urls":["http://223.110.235.8/ott.js.chinamobile.com/PLTV/3/224/3221228136/index.m3u8","http://183.207.248.136/ott.js.chinamobile.com/PLTV/3/224/3221225787/index.m3u8","http://223.110.236.20/ott.js.chinamobile.com/PLTV/3/224/3221227551/index.m3u8"]},
  1573. {"name":"辽宁卫视","urls":["http://183.207.248.166/ott.js.chinamobile.com/PLTV/3/224/3221227380/index.m3u8","http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221227676/index.m3u8","http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221227700/index.m3u8","http://223.110.235.22/ott.js.chinamobile.com/PLTV/3/224/3221228162/index.m3u8","http://183.207.248.165/ott.js.chinamobile.com/PLTV/3/224/3221227410/index.m3u8","http://183.207.248.172/ott.js.chinamobile.com/PLTV/3/224/3221227485/index.m3u8","http://183.207.249.111/ott.js.chinamobile.com/PLTV/3/224/3221225566/index.m3u8","http://183.207.249.109/ott.js.chinamobile.com/PLTV/3/224/3221225802/index.m3u8"]},
  1574. {"name":"重庆卫视","urls":["http://183.207.248.105/ott.js.chinamobile.com/PLTV/3/224/3221227550/index.m3u8","http://183.207.249.106/ott.js.chinamobile.com/PLTV/3/224/3221227632/index.m3u8","http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221227729/index.m3u8","http://223.110.235.8/ott.js.chinamobile.com/PLTV/3/224/3221228133/index.m3u8","http://183.207.248.168/ott.js.chinamobile.com/PLTV/3/224/3221225812/index.m3u8"]},
  1575. {"name":"黑龙江卫视","urls":["http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227252/index.m3u8","http://183.207.249.176/ott.js.chinamobile.com/PLTV/3/224/3221227323/index.m3u8","http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221227662/index.m3u8","http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221227753/index.m3u8","http://223.110.235.23/ott.js.chinamobile.com/PLTV/3/224/3221228233/index.m3u8","http://183.207.248.139/ott.js.chinamobile.com/PLTV/3/224/3221227492/index.m3u8","http://183.207.249.106/ott.js.chinamobile.com/PLTV/3/224/3221227638/index.m3u8","http://183.207.249.165/ott.js.chinamobile.com/PLTV/3/224/3221227514/index.m3u8"]},
  1576. {"name":"内蒙古卫视","urls":["http://223.110.235.24/ott.js.chinamobile.com/PLTV/3/224/3221227557/index.m3u8","http://183.207.249.175/ott.js.chinamobile.com/PLTV/3/224/3221225836/index.m3u8"]},
  1577. {"name":"厦门卫视","urls":["http://223.110.235.14/ott.js.chinamobile.com/PLTV/3/224/3221227604/index.m3u8","http://183.207.249.198/ott.js.chinamobile.com/PLTV/3/224/3221226996/index.m3u8"]},
  1578. {"name":"宁夏卫视","urls":["http://223.110.235.7/ott.js.chinamobile.com/PLTV/3/224/3221227563/index.m3u8","http://183.207.248.168/ott.js.chinamobile.com/PLTV/3/224/3221225842/index.m3u8"]},
  1579. {"name":"山西卫视","urls":["http://223.110.236.11/ott.js.chinamobile.com/PLTV/3/224/3221227559/index.m3u8","http://183.207.249.235/ott.js.chinamobile.com/PLTV/3/224/3221225786/index.m3u8"]},
  1580. {"name":"西藏卫视","urls":["http://223.110.236.20/ott.js.chinamobile.com/PLTV/3/224/3221227562/index.m3u8","http://183.207.249.137/ott.js.chinamobile.com/PLTV/3/224/3221226376/index.m3u8"]},
  1581. {"name":"陕西卫视","urls":["http://223.110.235.27/ott.js.chinamobile.com/PLTV/3/224/3221227583/index.m3u8","http://183.207.248.175/ott.js.chinamobile.com/PLTV/3/224/3221227022/index.m3u8"]},
  1582. {"name":"青海卫视","urls":["http://223.110.235.26/ott.js.chinamobile.com/PLTV/3/224/3221227554/index.m3u8","http://183.207.249.103/ott.js.chinamobile.com/PLTV/3/224/3221225783/index.m3u8"]},
  1583. {"name":"四川康巴卫视","urls":["http://223.110.235.16/ott.js.chinamobile.com/PLTV/3/224/3221227645/index.m3u8","http://223.110.236.14/ott.js.chinamobile.com/PLTV/3/224/3221227651/index.m3u8","http://183.207.249.198/ott.js.chinamobile.com/PLTV/3/224/3221227008/index.m3u8"]},
  1584. {"name":"山东教育卫视","urls":["http://223.110.235.6/ott.js.chinamobile.com/PLTV/3/224/3221227580/index.m3u8","http://183.207.248.168/ott.js.chinamobile.com/PLTV/3/224/3221227019/index.m3u8"]},
  1585. {"name":"吉林延边卫视","urls":["http://223.110.235.14/ott.js.chinamobile.com/PLTV/3/224/3221227590/index.m3u8","http://223.110.235.8/ott.js.chinamobile.com/PLTV/3/224/3221227002/index.m3u8"]},
  1586. {"name":"新疆兵团卫视","urls":["http://223.110.235.16/ott.js.chinamobile.com/PLTV/3/224/3221227654/index.m3u8","http://183.207.249.199/ott.js.chinamobile.com/PLTV/3/224/3221227025/index.m3u8"]},
  1587. {"name":"西藏藏语卫视","urls":["http://223.110.235.20/ott.js.chinamobile.com/PLTV/3/224/3221228022/index.m3u8"]},
  1588. {"name":"陕西农林卫视","urls":["http://223.110.235.17/ott.js.chinamobile.com/PLTV/3/224/3221227648/index.m3u8","http://183.207.248.142/ott.js.chinamobile.com/PLTV/3/224/3221227015/index.m3u8"]},
  1589. {"name":"青海安多卫视","urls":["http://223.110.235.9/ott.js.chinamobile.com/PLTV/3/224/3221226999/index.m3u8"]},
  1590. {"name":"NNM家庭理财","urls":["http://183.207.249.173/ott.js.chinamobile.com/PLTV/3/224/3221227011/index.m3u8"]},
  1591. {"name":"SiTV全纪实","urls":["http://183.207.249.175/ott.js.chinamobile.com/PLTV/3/224/3221227771/index.m3u8"]},
  1592. {"name":"SiTV动漫秀场","urls":["http://223.110.245.146/ott.js.chinamobile.com/PLTV/3/224/3221227774/index.m3u8"]},
  1593. {"name":"SiTV游戏风云","urls":["http://183.207.248.111/ott.js.chinamobile.com/PLTV/3/224/3221227713/index.m3u8"]},
  1594. {"name":"SiTV生活时尚","urls":["http://183.207.248.105/ott.js.chinamobile.com/PLTV/3/224/3221227707/index.m3u8"]},
  1595. {"name":"SiTV都市剧场","urls":["http://223.110.236.12/ott.js.chinamobile.com/PLTV/3/224/3221227710/index.m3u8"]},
  1596. {"name":"NewTV潮妈辣婆","urls":["http://223.110.235.24/ott.js.chinamobile.com/PLTV/3/224/3221227527/index.m3u8"]},
  1597. {"name":"NewTV中国功夫","urls":["http://223.110.235.25/ott.js.chinamobile.com/PLTV/3/224/3221227530/index.m3u8"]},
  1598. {"name":"NewTV怡伴健康","urls":["http://223.110.235.24/ott.js.chinamobile.com/PLTV/3/224/3221227612/index.m3u8"]},
  1599. {"name":"NewTV军事评论","urls":["http://223.110.235.24/ott.js.chinamobile.com/PLTV/3/224/3221227544/index.m3u8"]},
  1600. {"name":"NewTV军旅剧场","urls":["http://223.110.236.11/ott.js.chinamobile.com/PLTV/3/224/3221227603/index.m3u8"]},
  1601. {"name":"NewTV农业致富","urls":["http://223.110.235.25/ott.js.chinamobile.com/PLTV/3/224/3221227588/index.m3u8"]},
  1602. {"name":"NewTV动作电影","urls":["http://223.110.235.6/ott.js.chinamobile.com/PLTV/3/224/3221227606/index.m3u8"]},
  1603. {"name":"NewTV古装剧场","urls":["http://223.110.236.10/ott.js.chinamobile.com/PLTV/3/224/3221227542/index.m3u8"]},
  1604. {"name":"NewTV家庭剧场","urls":["http://223.110.235.7/ott.js.chinamobile.com/PLTV/3/224/3221227600/index.m3u8"]},
  1605. {"name":"NewTV惊悚悬疑","urls":["http://223.110.235.25/ott.js.chinamobile.com/PLTV/3/224/3221227536/index.m3u8"]},
  1606. {"name":"NewTV武搏世界","urls":["http://223.110.235.25/ott.js.chinamobile.com/PLTV/3/224/3221227533/index.m3u8"]},
  1607. {"name":"NewTV炫舞未来","urls":["http://183.207.249.229/ott.js.chinamobile.com/PLTV/3/224/3221227475/index.m3u8"]},
  1608. {"name":"NewTV爱情喜剧","urls":["http://223.110.236.20/ott.js.chinamobile.com/PLTV/3/224/3221227548/index.m3u8"]},
  1609. {"name":"NewTV精品体育","urls":["http://223.110.235.27/ott.js.chinamobile.com/PLTV/3/224/3221227615/index.m3u8"]},
  1610. {"name":"NewTV精品大剧","urls":["http://223.110.235.26/ott.js.chinamobile.com/PLTV/3/224/3221227618/index.m3u8"]},
  1611. {"name":"NewTV精品纪录","urls":["http://223.110.236.20/ott.js.chinamobile.com/PLTV/3/224/3221227547/index.m3u8"]},
  1612. {"name":"NewTV金牌综艺","urls":["http://223.110.235.24/ott.js.chinamobile.com/PLTV/3/224/3221227541/index.m3u8"]},
  1613. {"name":"NewTV明星大片","urls":["http://223.110.235.24/ott.js.chinamobile.com/PLTV/3/224/3221227594/index.m3u8"]},
  1614. {"name":"中国教育1","urls":["http://223.110.235.25/ott.js.chinamobile.com/PLTV/3/224/3221227560/index.m3u8","http://183.207.248.172/ott.js.chinamobile.com/PLTV/3/224/3221225909/index.m3u8"]},
  1615. {"name":"中国教育2","urls":["http://223.110.235.16/ott.js.chinamobile.com/PLTV/3/224/3221227607/index.m3u8","http://183.207.249.198/ott.js.chinamobile.com/PLTV/3/224/3221225850/index.m3u8"]},
  1616. {"name":"中国教育3","urls":["http://183.207.249.104/ott.js.chinamobile.com/PLTV/3/224/3221227018/index.m3u8"]},
  1617. {"name":"中国教育4","urls":["http://223.110.235.16/ott.js.chinamobile.com/PLTV/3/224/3221227657/index.m3u8","http://183.207.248.166/ott.js.chinamobile.com/PLTV/3/224/3221227028/index.m3u8","http://223.110.235.27/ott.js.chinamobile.com/PLTV/3/224/3221227586/index.m3u8","http://183.207.248.142/ott.js.chinamobile.com/PLTV/3/224/3221226388/index.m3u8"]},
  1618. {"name":"黑莓动画","urls":["http://223.110.235.21/ott.js.chinamobile.com/PLTV/3/224/3221225555/index.m3u8","http://223.110.236.7/ott.js.chinamobile.com/PLTV/3/224/3221227523/index.m3u8"]},
  1619. {"name":"上海哈哈炫动","urls":["http://223.110.235.27/ott.js.chinamobile.com/PLTV/3/224/3221227586/index.m3u8","http://183.207.248.142/ott.js.chinamobile.com/PLTV/3/224/3221226388/index.m3u8"]},
  1620. {"name":"江苏优漫卡通","urls":["http://223.110.235.25/ott.js.chinamobile.com/PLTV/3/224/3221227577/index.m3u8","http://223.110.236.16/ott.js.chinamobile.com/PLTV/3/224/3221226982/index.m3u8","http://183.207.249.172/ott.js.chinamobile.com/PLTV/3/224/3221225933/index.m3u8"]},
  1621. {"name":"广东嘉佳卡通","urls":["http://223.110.243.143/ott.js.chinamobile.com/PLTV/3/224/3221227598/index.m3u8","http://183.207.248.173/ott.js.chinamobile.com/PLTV/3/224/3221227009/index.m3u8"]},
  1622. {"name":"北京卡酷少儿","urls":["http://223.110.235.7/ott.js.chinamobile.com/PLTV/3/224/3221227566/index.m3u8","http://223.110.236.17/ott.js.chinamobile.com/PLTV/3/224/3221226305/index.m3u8"]},
  1623. {"name":"湖南金鹰卡通","urls":["http://223.110.236.20/ott.js.chinamobile.com/PLTV/3/224/3221227630/index.m3u8","http://183.207.248.174/ott.js.chinamobile.com/PLTV/3/224/3221226303/index.m3u8"]}
  1624. ]},
  1625. {"group": "临时源二","channels": [{"name":"CCTV1综合频道HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225490/index.m3u8","http://iptv.tvfix.org/hls/cctv1hd.m3u8"]},
  1626. {"name":"CCTV2经济频道HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225612/index.m3u8","http://iptv.tvfix.org/hls/cctv2hd.m3u8"]},
  1627. {"name":"CCTV3综艺频道HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225611/index.m3u8","http://iptv.tvfix.org/hls/cctv3hd.m3u8"]},
  1628. {"name":"CCTV4中文国际HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225610/index.m3u8","http://iptv.tvfix.org/hls/cctv4hd.m3u8"]},
  1629. {"name":"CCTV5+体育赛事HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225494/index.m3u8","http://iptv.tvfix.org/hls/cctv5phd.m3u8"]},
  1630. {"name":"CCTV5体育频道HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225489/index.m3u8","http://iptv.tvfix.org/hls/cctv5hd.m3u8"]},
  1631. {"name":"CCTV6电影频道HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225609/index.m3u8","http://iptv.tvfix.org/hls/cctv6hd.m3u8"]},
  1632. {"name":"CCTV7国防军事HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226002/index.m3u8","http://iptv.tvfix.org/hls/cctv7hd.m3u8"]},
  1633. {"name":"CCTV8电视剧频道HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225492/index.m3u8","http://iptv.tvfix.org/hls/cctv8hd.m3u8"]},
  1634. {"name":"CCTV9纪录频道HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225607/index.m3u8","http://iptv.tvfix.org/hls/cctv9hd.m3u8"]},
  1635. {"name":"CCTV10科教频道HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225606/index.m3u8","http://iptv.tvfix.org/hls/cctv10hd.m3u8"]},
  1636. {"name":"CCTV11戏曲频道HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225853/index.m3u8","http://iptv.tvfix.org/hls/cctv11.m3u8"]},
  1637. {"name":"CCTV12社会与法HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225605/index.m3u8","http://iptv.tvfix.org/hls/cctv12hd.m3u8"]},
  1638. {"name":"CCTV13新闻频道HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226062/index.m3u8","http://iptv.tvfix.org/hls/cctv13hd.m3u8"]},
  1639. {"name":"CCTV14少儿频道HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225604/index.m3u8","http://iptv.tvfix.org/hls/cctv14hd.m3u8"]},
  1640. {"name":"CCTV15音乐频道HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225854/index.m3u8","http://iptv.tvfix.org/hls/cctv15.m3u8"]},
  1641. {"name":"CCTV-16奥运","urls":["http://iptv.tvfix.org/hls/cctv16hd.m3u8"]},
  1642. {"name":"CCTV17农业频道HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225608/index.m3u8","http://iptv.tvfix.org/hls/cctv17hd.m3u8"]},
  1643. {"name":"凤凰资讯","urls":["http://iptv.tvfix.org/hls/fhzx.m3u8"]},
  1644. {"name":"凤凰中文","urls":["http://iptv.tvfix.org/hls/fhzw.m3u8"]},
  1645. {"name":"凤凰电影","urls":["http://iptv.tvfix.org/hls/fhdy.m3u8"]},
  1646. {"name":"Discovery","urls":["http://iptv.tvfix.org/hls/discovery.m3u8"]},
  1647. {"name":"国家地理","urls":["http://iptv.tvfix.org/hls/natlgeo.m3u8"]},
  1648. {"name":"Channel V","urls":["http://iptv.tvfix.org/hls/channelv.m3u8"]},
  1649. {"name":"星空卫视","urls":["http://iptv.tvfix.org/hls/startv.m3u8"]},
  1650. {"name":"Star Sports","urls":["http://iptv.tvfix.org/hls/starsports.m3u8"]},
  1651. {"name":"CHC動作電影","urls":["http://iptv.tvfix.org/hls/chcatv.m3u8"]},
  1652. {"name":"CHC家庭電影","urls":["http://iptv.tvfix.org/hls/chctv.m3u8"]},
  1653. {"name":"翡翠台(第2声道简体)","urls":["http://iptv.tvfix.org/hls/jade2.m3u8","http://iptv.tvfix.org/hls/jadenhk.m3u8","http://iptv.tvfix.org/hls/jadenhk2.m3u8"]},
  1654. {"name":"J2","urls":["http://iptv.tvfix.org/hls/j2.m3u8","http://iptv.tvfix.org/hls/j22.m3u8"]},
  1655. {"name":"无线新闻台","urls":["http://iptv.tvfix.org/hls/inews.m3u8"]},
  1656. {"name":"明珠台","urls":["http://iptv.tvfix.org/hls/pearl.m3u8","http://iptv.tvfix.org/hls/pearl2.m3u8","http://iptv.tvfix.org/hls/financenhk.m3u8"]},
  1657. {"name":"TVBS亚洲台","urls":["http://iptv.tvfix.org/hls/tvbs.m3u8"]},
  1658. {"name":"TVBS新闻台","urls":["http://iptv.tvfix.org/hls/tvbsnews.m3u8"]},
  1659. {"name":"美亚电影台(粤语)","urls":["http://iptv.tvfix.org/hls/mydy.m3u8","http://iptv.tvfix.org/hls/mydy2.m3u8"]},
  1660. {"name":"天映经典(粤语)","urls":["http://iptv.tvfix.org/hls/tyjd.m3u8","http://iptv.tvfix.org/hls/tyjd2.m3u8"]},
  1661. {"name":"Animax","urls":["http://iptv.tvfix.org/hls/animax.m3u8","http://iptv.tvfix.org/hls/animax2.m3u8"]},
  1662. {"name":"Hands Up Channel","urls":["http://iptv.tvfix.org/hls/kid.m3u8"]},
  1663. {"name":"Thrill","urls":["http://iptv.tvfix.org/hls/thrill.m3u8","http://iptv.tvfix.org/hls/thrill2.m3u8"]},
  1664. {"name":"tvN","urls":["http://iptv.tvfix.org/hls/tvn.m3u8"]},
  1665. {"name":"TVB经典台","urls":["http://iptv.tvfix.org/hls/tvbjd.m3u8"]},
  1666. {"name":"TVB为食台","urls":["http://iptv.tvfix.org/hls/tvbws.m3u8"]},
  1667. {"name":"TVB星河(粤语)","urls":["http://iptv.tvfix.org/hls/tvbxh.m3u8","http://iptv.tvfix.org/hls/tvbxh2.m3u8"]},
  1668. {"name":"TVB功夫台(粤语)","urls":["http://iptv.tvfix.org/hls/tvbkf.m3u8","http://iptv.tvfix.org/hls/tvbkf2.m3u8"]},
  1669. {"name":"湖南卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225506/index.m3u8","http://iptv.tvfix.org/hls/hunanhd.m3u8"]},
  1670. {"name":"江苏卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225504/index.m3u8","http://iptv.tvfix.org/hls/jshd.m3u8"]},
  1671. {"name":"浙江卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225505/index.m3u8","http://iptv.tvfix.org/hls/zjhd.m3u8"]},
  1672. {"name":"北京卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225502/index.m3u8","http://iptv.tvfix.org/hls/btv1hd.m3u8"]},
  1673. {"name":"东方卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225503/index.m3u8","http://iptv.tvfix.org/hls/dfhd.m3u8"]},
  1674. {"name":"深圳卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225592/index.m3u8","http://iptv.tvfix.org/hls/szhd.m3u8"]},
  1675. {"name":"安徽卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225590/index.m3u8","http://iptv.tvfix.org/hls/ahhd.m3u8"]},
  1676. {"name":"冬奥纪实HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226011/index.m3u8","http://iptv.tvfix.org/hls/btv11hd.m3u8"]},
  1677. {"name":"广东卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225589/index.m3u8","http://iptv.tvfix.org/hls/gdhd.m3u8"]},
  1678. {"name":"贵州卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225586/index.m3u8","http://iptv.tvfix.org/hls/gzhd.m3u8","http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225796/index.m3u8"]},
  1679. {"name":"河南卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226064/index.m3u8","http://iptv.tvfix.org/hls/hnhd.m3u8"]},
  1680. {"name":"黑龙江卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225594/index.m3u8","http://iptv.tvfix.org/hls/hljhd.m3u8"]},
  1681. {"name":"吉林卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225598/index.m3u8","http://iptv.tvfix.org/hls/jlhd.m3u8"]},
  1682. {"name":"江西卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225599/index.m3u8","http://iptv.tvfix.org/hls/jxhd.m3u8"]},
  1683. {"name":"辽宁卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225593/index.m3u8","http://iptv.tvfix.org/hls/lnhd.m3u8"]},
  1684. {"name":"云南卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226063/index.m3u8","http://iptv.tvfix.org/hls/yntv.m3u8"]},
  1685. {"name":"重庆卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225601/index.m3u8","http://iptv.tvfix.org/hls/cqhd.m3u8"]},
  1686. {"name":"陕西卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225498/index.m3u8","http://iptv.tvfix.org/hls/sxtv.m3u8"]},
  1687. {"name":"四川卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225600/index.m3u8","http://iptv.tvfix.org/hls/schd.m3u8"]},
  1688. {"name":"天津卫视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225588/index.m3u8","http://iptv.tvfix.org/hls/tjhd.m3u8"]},
  1689. {"name":"海南衛視","urls":["http://iptv.tvfix.org/hls/lyhd.m3u8"]},
  1690. {"name":"山東衛視","urls":["http://iptv.tvfix.org/hls/sdhd.m3u8"]},
  1691. {"name":"東南衛視","urls":["http://iptv.tvfix.org/hls/dnhd.m3u8"]},
  1692. {"name":"甘肅衛視","urls":["http://iptv.tvfix.org/hls/gstv.m3u8"]},
  1693. {"name":"廣西衛視","urls":["http://iptv.tvfix.org/hls/gxhd.m3u8"]},
  1694. {"name":"河北衛視","urls":["http://iptv.tvfix.org/hls/hebhd.m3u8"]},
  1695. {"name":"湖北衛視","urls":["http://iptv.tvfix.org/hls/hbhd.m3u8"]},
  1696. {"name":"內蒙古衛視","urls":["http://iptv.tvfix.org/hls/nmtv.m3u8"]},
  1697. {"name":"寧夏衛視","urls":["http://iptv.tvfix.org/hls/nxtv.m3u8"]},
  1698. {"name":"山西衛視","urls":["http://iptv.tvfix.org/hls/sxrtv.m3u8"]},
  1699. {"name":"新疆衛視","urls":["http://iptv.tvfix.org/hls/xjtv.m3u8"]},
  1700. {"name":"青海衛視","urls":["http://iptv.tvfix.org/hls/qhtv.m3u8"]},
  1701. {"name":"兵團衛視","urls":["http://iptv.tvfix.org/hls/bttv.m3u8"]},
  1702. {"name":"廈門衛視","urls":["http://iptv.tvfix.org/hls/xmtv.m3u8"]},
  1703. {"name":"未知HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225891/index.m3u8","http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226010/index.m3u8","http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225985/index.m3u8"]},
  1704. {"name":"渭南新闻综合HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225660/index.m3u8"]},
  1705. {"name":"西乡融媒HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225862/index.m3u8"]},
  1706. {"name":"旬阳新闻HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225844/index.m3u8"]},
  1707. {"name":"延安1套HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225662/index.m3u8","http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225700/index.m3u8"]},
  1708. {"name":"延安2套HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225699/index.m3u8"]},
  1709. {"name":"杨凌电视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225900/index.m3u8","http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225901/index.m3u8"]},
  1710. {"name":"岚皋电视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225850/index.m3u8"]},
  1711. {"name":"汉中1HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226065/index.m3u8"]},
  1712. {"name":"扶风HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225935/index.m3u8"]},
  1713. {"name":"神木1HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225893/index.m3u8","http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225694/index.m3u8"]},
  1714. {"name":"神木2HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225991/index.m3u8"]},
  1715. {"name":"石泉电视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225879/index.m3u8","http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226005/index.m3u8"]},
  1716. {"name":"陕西新闻资讯HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225500/index.m3u8"]},
  1717. {"name":"城固电视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225944/index.m3u8"]},
  1718. {"name":"定边融媒HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226013/index.m3u8"]},
  1719. {"name":"宝鸡1套HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225658/index.m3u8"]},
  1720. {"name":"紫阳综合HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225845/index.m3u8"]},
  1721. {"name":"宁陕电视HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225848/index.m3u8"]},
  1722. {"name":"陕西都市青春HD","urls":["http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226060/index.m3u8","http://129.226.106.4/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221225830/index.m3u8"]},
  1723. {"name":"上海紀實人文","urls":["http://iptv.tvfix.org/hls/docuchina.m3u8"]},
  1724. {"name":"湖南金鷹紀實","urls":["http://iptv.tvfix.org/hls/gedocu.m3u8"]},
  1725. {"name":"湖南金鷹卡通","urls":["http://iptv.tvfix.org/hls/jykttv.m3u8"]},
  1726. {"name":"FTV足球頻道","urls":["http://iptv.tvfix.org/hls/zqhd.m3u8"]},
  1727. {"name":"北京衛視","urls":["http://iptv.tvfix.org/hls/btv1hd.m3u8"]},
  1728. {"name":"北京文藝","urls":["http://iptv.tvfix.org/hls/btv2hd.m3u8"]},
  1729. {"name":"北京科教","urls":["http://iptv.tvfix.org/hls/btv3hd.m3u8"]},
  1730. {"name":"北京影視","urls":["http://iptv.tvfix.org/hls/btv4hd.m3u8"]},
  1731. {"name":"北京財經","urls":["http://iptv.tvfix.org/hls/btv5hd.m3u8"]},
  1732. {"name":"北京生活","urls":["http://iptv.tvfix.org/hls/btv7hd.m3u8"]},
  1733. {"name":"北京青年","urls":["http://iptv.tvfix.org/hls/btv8hd.m3u8"]},
  1734. {"name":"北京新聞","urls":["http://iptv.tvfix.org/hls/btv9hd.m3u8"]},
  1735. {"name":"北京卡酷","urls":["http://iptv.tvfix.org/hls/btv10hd.m3u8"]},
  1736. {"name":"CGTN","urls":["http://iptv.tvfix.org/hls/cctv16.m3u8"]},
  1737. {"name":"CGTN-紀錄","urls":["http://iptv.tvfix.org/hls/cgtnhd.m3u8"]},
  1738. {"name":"山東教育","urls":["http://iptv.tvfix.org/hls/sdetv.m3u8"]},
  1739. {"name":"CETV-1","urls":["http://iptv.tvfix.org/hls/cetv1hd.m3u8"]},
  1740. {"name":"CETV-3","urls":["http://iptv.tvfix.org/hls/cetv3.m3u8"]},
  1741. {"name":"CETV-4","urls":["http://iptv.tvfix.org/hls/cetv4.m3u8"]}
  1742. ]},
  1743. {"group": "临时源三","channels": [{"name":"CCTV1","urls":["rtmp://118.163.221.79:1937/live/cctv1"]},
  1744. {"name":"CCTV2","urls":["rtmp://118.163.221.79:1937/live/cctv2"]},
  1745. {"name":"CCTV4","urls":["rtmp://118.163.221.79:1937/live/cctv4"]},
  1746. {"name":"CCTV5+","urls":["rtmp://118.163.221.79:1937/live/cctv5"]},
  1747. {"name":"CCTV7","urls":["rtmp://118.163.221.79:1937/live/cctv7"]},
  1748. {"name":"CCTV9","urls":["rtmp://118.163.221.79:1936/live/cctv9"]},
  1749. {"name":"CCTV10","urls":["rtmp://118.163.221.79:1936/live/cctv10"]},
  1750. {"name":"CCTV11","urls":["rtmp://118.163.221.79:1936/live/cctv11"]},
  1751. {"name":"CCTV12","urls":["rtmp://118.163.221.79:1936/live/cctv12"]},
  1752. {"name":"CCTV13","urls":["rtmp://118.163.221.79:1937/live/cctv13"]},
  1753. {"name":"CCTV14","urls":["rtmp://118.163.221.79:1936/live/cctv14"]},
  1754. {"name":"CCTV15","urls":["rtmp://118.163.221.79:1936/live/cctv15"]},
  1755. {"name":"CCTV17","urls":["rtmp://118.163.221.79:1937/live/cctv8"]},
  1756. {"name":"CCTV娱乐","urls":["rtmp://118.163.221.79:1937/live/cctv3"]},
  1757. {"name":"中国电影频道","urls":["rtmp://118.163.221.79:1937/live/cctv6"]},
  1758. {"name":"AXN","urls":["rtmp://118.163.221.79:1936/live/AXN"]},
  1759. {"name":"Thrill","urls":["rtmp://118.163.221.79:1936/live/Thrill"]},
  1760. {"name":"KIX","urls":["rtmp://118.163.221.79:1937/live/Kix"]},
  1761. {"name":"HBO","urls":["rtmp://118.163.221.79:1936/live/HBOHD"]},
  1762. {"name":"Outdoor","urls":["rtmp://118.163.221.79:1936/live/Outdoor"]},
  1763. {"name":"高尔夫","urls":["rtmp://118.163.221.79:1936/live/GOLF"]},
  1764. {"name":"HBO Family","urls":["rtmp://118.163.221.79:1936/live/CLASSICAHD"]},
  1765. //
  1766. {"name":"CCTV1","urls":["http://39.135.138.60:18890/PLTV/88888910/224/3221225618/index.m3u8","http://39.135.138.59:18890/PLTV/88888910/224/3221225642/index.m3u8","http://223.110.243.159/ott.js.chinamobile.com/PLTV/3/224/3221227725/index.m3u8"]},
  1767. {"name":"CCTV2","urls":["http://39.135.138.60:18890/PLTV/88888910/224/3221225619/index.m3u8","http://39.135.138.60:18890/PLTV/88888910/224/3221225643/index.m3u8","http://223.110.241.137:6610/gitv/live1/G_CCTV-2-HD/G_CCTV-2-HD/1.m3u8"]},
  1768. {"name":"CCTV3","urls":["http://39.135.138.60:18890/PLTV/88888910/224/3221225647/index.m3u8","http://39.135.138.59:18890/PLTV/88888910/224/3221225634/index.m3u8","http://223.110.243.154/ott.js.chinamobile.com/PLTV/3/224/3221227650/index.m3u8"]},
  1769. {"name":"CCTV4","urls":["http://39.135.138.60:18890/PLTV/88888910/224/3221225621/index.m3u8","http://39.130.202.115:6610/gitv_live/G_CCTV-4-HD/G_CCTV-4-HD.m3u8","http://223.110.245.142/ott.js.chinamobile.com/PLTV/3/224/3221227658/index.m3u8"]},
  1770. {"name":"CCTV5","urls":["http://39.135.138.59:18890/PLTV/88888910/224/3221225648/index.m3u8","http://39.135.138.58:18890/PLTV/88888888/224/3221225751/index.m3u8","http://223.110.246.70/ott.js.chinamobile.com/PLTV/4/224/3221227686/index.m3u8"]},
  1771. {"name":"CCTV5+HD","urls":["http://39.135.138.60:18890/PLTV/88888910/224/3221225649/index.m3u8","http://39.134.39.39/PLTV/88888888/224/3221226253/index.m3u8","http://39.135.138.59:18890/PLTV/88888910/224/3221225649/index.m3u8"]},
  1772. {"name":"CCTV6","urls":["http://39.135.138.59:18890/PLTV/88888910/224/3221225650/index.m3u8","http://39.135.138.59:18890/PLTV/88888910/224/3221225632/index.m3u8","http://223.110.243.147/ott.js.chinamobile.com/PLTV/3/224/3221227664/index.m3u8"]},
  1773. {"name":"CCTV7","urls":["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://223.110.243.147/ott.js.chinamobile.com/PLTV/3/224/3221227690/index.m3u8"]},
  1774. {"name":"CCTV8","urls":["http://39.135.138.60:18890/PLTV/88888910/224/3221225635/index.m3u8","http://39.135.140.227:6610/PLTV/88888888/224/3221225631/2/index.m3u8?fmt=ts2hls","http://223.110.243.141/ott.js.chinamobile.com/PLTV/3/224/3221227629/index.m3u8"]},
  1775. {"name":"CCTV9","urls":["http://39.135.138.59:18890/PLTV/88888910/224/3221225626/index.m3u8","http://39.135.138.60:18890/PLTV/88888910/224/3221225646/index.m3u8","http://223.110.243.151/ott.js.chinamobile.com/PLTV/3/224/3221227614/index.m3u8"]},
  1776. {"name":"CCTV10","urls":["http://39.135.138.59:18890/PLTV/88888910/224/3221225627/index.m3u8","http://39.135.138.60:18890/PLTV/88888910/224/3221225636/index.m3u8","http://223.110.243.148/ott.js.chinamobile.com/PLTV/3/224/3221227717/index.m3u8"]},
  1777. {"name":"CCTV11","urls":["http://39.135.138.59:18890/PLTV/88888910/224/3221225628/index.m3u8","http://223.110.243.157/ott.js.chinamobile.com/PLTV/3/224/3221227524/index.m3u8","http://223.110.243.158/ott.js.chinamobile.com/PLTV/3/224/3221227720/index.m3u8"]},
  1778. {"name":"CCTV12","urls":["http://39.135.138.59:18890/PLTV/88888910/224/3221225629/index.m3u8","http://39.135.138.60:18890/PLTV/88888910/224/3221225637/index.m3u8","http://223.110.243.148/ott.js.chinamobile.com/PLTV/3/224/3221227655/index.m3u8"]},
  1779. {"name":"CCTV13","urls":["http://39.135.138.60:18890/PLTV/88888910/224/3221225638/index.m3u8","http://39.135.138.60:18890/PLTV/88888910/224/3221225638/index.m3u8","http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/cctvxw/1300000/mnf.m3u8"]},
  1780. {"name":"CCTV14","urls":["http://39.135.138.60:18890/PLTV/88888910/224/3221225639/index.m3u8","http://39.135.138.59:18890/PLTV/88888910/224/3221225640/index.m3u8","http://223.110.243.157/ott.js.chinamobile.com/PLTV/3/224/3221227656/index.m3u8"]},
  1781. {"name":"CCTV15","urls":["http://39.135.138.60:18890/PLTV/88888910/224/3221225641/index.m3u8://39.135.140.227:6610/PLTV/88888888/224/3221225641/2/index.m3u8?fmt=ts2hls","http://223.110.243.154/ott.js.chinamobile.com/PLTV/3/224/3221227723/index.m3u8"]},
  1782. {"name":"CCTV17","urls":["http://39.135.138.59:18890/PLTV/88888910/224/3221225908/index.m3u8","http://39.135.140.227:6610/PLTV/88888888/224/3221225907/2/index.m3u8?fmt=ts2hls","http://223.110.245.142/ott.js.chinamobile.com/PLTV/3/224/3221227726/index.m3u8"]},
  1783. {"name":"纯享4K","urls":["http://39.135.138.60:18890/PLTV/88888910/224/3221225786/index.m3u8"]},
  1784. {"name":"CNC中文","urls":["http://39.135.138.59:18890/PLTV/88888910/224/3221225694/index.m3u8","http://39.135.138.59:18890/PLTV/88888910/224/3221225693/index.m3u8"]},
  1785. {"name":"凤凰资讯","urls":["http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8","http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226923/index.m3u8","http://117.169.124.43:6610/ysten-businessmobile/live/fhzixun/index.m3u8"]},
  1786. {"name":"凤凰香港","urls":["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?icpid=88888888&from=0&hms_devid=3804"]},
  1787. {"name":"凤凰中文","urls":["http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8","http://117.169.124.43:6610/ysten-businessmobile/live/fhchinese/index.m3u8"]},
  1788. {"name":"广东卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/gdwshd/2300000/mnf.m3u8","http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221227673/index.m3u8"]},
  1789. {"name":"深圳卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/szwshd/2300000/mnf.m3u8","http://223.110.245.154/ott.js.chinamobile.com/PLTV/3/224/3221227677/index.m3u8"]},
  1790. {"name":"湖南卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/hnwshd/2300000/mnf.m3u8","http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/hnwshd/2300000/mnf.m3u8"]},
  1791. {"name":"江苏卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/jswshd/2300000/mnf.m3u8","http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/jswshd/2300000/mnf.m3u8"]},
  1792. {"name":"浙江卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/zjwshd/2300000/mnf.m3u8","http://39.135.138.60:18890/PLTV/88888910/224/3221225703/index.m3u8"]},
  1793. {"name":"东南卫视","urls":["http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221227670/index.m3u8"]},
  1794. {"name":"东方卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/hddfws/2300000/mnf.m3u8"]},
  1795. {"name":"北京卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/bjwshd/2300000/mnf.m3u8","https://hsplay-360.v.btime.com/live_btime/btv_sn_20170706_s1/index.m3u8"]},
  1796. {"name":"安徽卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/ahwshd/2300000/mnf.m3u8"]},
  1797. {"name":"东南卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/dnwshd/2300000/mnf.m3u8"]},
  1798. {"name":"黑龙江卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/hljwshd/2300000/mnf.m3u8","http://223.110.243.142/ott.js.chinamobile.com/PLTV/3/224/3221227662/index.m3u8"]},
  1799. {"name":"江西卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/jxwshd/2300000/mnf.m3u8","http://39.135.140.227:6610/PLTV/88888888/224/3221225705/2/index.m3u8?fmt=ts2hls"]},
  1800. {"name":"辽宁卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/lnwshd/2300000/mnf.m3u8"]},
  1801. {"name":"山东卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/sdwshd/2300000/mnf.m3u8"]},
  1802. {"name":"天津卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/tjwshd/2300000/mnf.m3u8"]},
  1803. {"name":"青海卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/qhws/1300000/mnf.m3u8"]},
  1804. {"name":"云南卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/ynws/1300000/mnf.m3u8"]},
  1805. {"name":"内蒙古卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/nmgws/1300000/mnf.m3u8"]},
  1806. {"name":"山西卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/shanxiws/1300000/mnf.m3u8"]},
  1807. {"name":"重庆卫视","urls":["http://223.110.245.154/ott.js.chinamobile.com/PLTV/3/224/3221227729/index.m3u8"]},
  1808. {"name":"辽宁卫视","urls":["http://223.110.243.151/ott.js.chinamobile.com/PLTV/3/224/3221227676/index.m3u8"]},
  1809. {"name":"湖北卫视","urls":["http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221227665/index.m3u8"]},
  1810. {"name":"山东卫视","urls":["http://223.110.243.157/ott.js.chinamobile.com/PLTV/3/224/3221227671/index.m3u8"]},
  1811. {"name":"天津卫视","urls":["http://223.110.243.148/ott.js.chinamobile.com/PLTV/3/224/3221227756/index.m3u8"]},
  1812. {"name":"安徽卫视","urls":["http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221227653/index.m3u8"]},
  1813. {"name":"兵团卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/btws/1300000/mnf.m3u8"]},
  1814. {"name":"新疆卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/xjws/1300000/mnf.m3u8"]},
  1815. {"name":"宁夏卫视","urls":["http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/nxws/1300000/mnf.m3u8"]}
  1816. ]},
  1817. {"group": "临时源四","channels": [{"name":"CCTV-1综合","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226834/48356507.smil"]},
  1818. {"name":"CCTV-2财经","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226655/40417429.smil"]},
  1819. {"name":"CCTV-4国际","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226633/40417241.smil"]},
  1820. {"name":"CCTV-5+体育赛事","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226714/40417236.smil"]},
  1821. {"name":"CCTV-7国防军事","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226645/40426612.smil"]},
  1822. {"name":"CCTV-9纪录","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226637/40417257.smil"]},
  1823. {"name":"CCTV-10科教","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226718/40417274.smil"]},
  1824. {"name":"CCTV-11戏曲","urls":["rtsp://183.252.176.54:554/PLTV/88888888/224/3221225996/10000100000000060000000002296743_0.smil"]},
  1825. {"name":"CCTV-12社会与法","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226659/40417266.smil"]},
  1826. {"name":"CCTV-13新闻","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226104/10000100000000060000000002298296_0.smil"]},
  1827. {"name":"CCTV-13新闻","urls":["rtsp://183.252.176.54:554/PLTV/88888888/224/3221226104/10000100000000060000000002298296_0.smil"]},
  1828. {"name":"CCTV-14少儿","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226641/40418077.smil"]},
  1829. {"name":"CCTV-15音乐","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221225998/10000100000000060000000002296745_0.smil"]},
  1830. {"name":"CCTV-15音乐","urls":["rtsp://183.252.176.54:554/PLTV/88888888/224/3221225998/10000100000000060000000002296745_0.smil"]},
  1831. {"name":"东南卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226121/10000100000000060000000002358085_0.smil"]},
  1832. {"name":"东方卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226041/10000100000000060000000002296882_0.smil"]},
  1833. {"name":"北京卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226092/10000100000000060000000002296930_0.smil"]},
  1834. {"name":"吉林卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226792/48616745.smil"]},
  1835. {"name":"山东卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226090/10000100000000060000000002296928_0.smil"]},
  1836. {"name":"广东卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226089/10000100000000060000000002296927_0.smil"]},
  1837. {"name":"江苏卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226038/10000100000000060000000002296879_0.smil"]},
  1838. {"name":"河南卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226076/10000100000000060000000002296917_0.smil"]},
  1839. {"name":"浙江卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226040/10000100000000060000000002296881_0.smil"]},
  1840. {"name":"海南卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226048/10000100000000060000000002296889_0.smil"]},
  1841. {"name":"海峡卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226128/10000100000000060000000002434539_0.smil"]},
  1842. {"name":"湖北卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226091/10000100000000060000000002296929_0.smil"]},
  1843. {"name":"湖南卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226082/10000100000000060000000002296924_0.smil"]},
  1844. {"name":"贵州卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226126/10000100000000060000000002434541_0.smil"]},
  1845. {"name":"黑龙江卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226087/10000100000000060000000002296926_0.smil"]},
  1846. {"name":"重庆卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226753/45949735.smil"]},
  1847. {"name":"江西卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226687/42186801.smil"]},
  1848. {"name":"河北卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226111/10000100000000060000000002310153_0.smil"]},
  1849. {"name":"四川卫视 HD","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226806/45949301.smil"]},
  1850. {"name":"厦门卫视576P","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226124/10000100000000060000000002358105_0.smil"]},
  1851. {"name":"厦门卫视","urls":["rtsp://183.252.176.54:554/PLTV/88888888/224/3221226124/10000100000000060000000002358105_0.smil"]},
  1852. {"name":"山西卫视576P","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226842/48628662.smil"]},
  1853. {"name":"云南卫视576P","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226108/10000100000000060000000002310150_0.smil"]},
  1854. {"name":"广西卫视576P","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226070/10000100000000060000000002296911_0.smil"]},
  1855. {"name":"南方卫视576P","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226788/48356344.smil"]},
  1856. {"name":"三沙卫视576P","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226819/57526516.smil"]},
  1857. {"name":"兵团卫视576P","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226804/48628997.smil"]},
  1858. {"name":"陕西卫视576P","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226110/10000100000000060000000002310152_0.smil"]},
  1859. {"name":"西藏卫视576P","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226808/48629336.smil"]},
  1860. {"name":"欢笑剧场","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226717/45278772.smil"]},
  1861. {"name":"BesTv影院1","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226757/45949783.smil"]},
  1862. {"name":"Bestv影院2","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226816/48629572.smil"]},
  1863. {"name":"Bestv影院3","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226748/45950069.smil"]},
  1864. {"name":"Bestv影院4","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226797/47878049.smil"]},
  1865. {"name":"Bestv电视剧1","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226761/45973212.smil"]},
  1866. {"name":"Bestv电视剧2","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226022/10000100000000060000000002296864_0.smil"]},
  1867. {"name":"Bestv电视剧3","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226752/45973624.smil"]},
  1868. {"name":"Bestv动画1","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226756/45973923.smil"]},
  1869. {"name":"Bestv动画2","urls":["rtsp://183.252.166.199/PLTV/88888888/224/3221226917/57526342.smil"]},
  1870. //
  1871. {"name":"民視台灣","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv001"]},
  1872. {"name":"民視","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv002"]},
  1873. {"name":"民視第一","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv003"]},
  1874. {"name":"民視綜藝","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv004"]},
  1875. {"name":"豬哥亮歌廳秀","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv006"]},
  1876. {"name":"中天新聞","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv009"]},
  1877. {"name":"非凡新聞","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv010"]},
  1878. {"name":"影迷數位電影","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv011"]},
  1879. {"name":"Cnex","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv013"]},
  1880. {"name":"時尚運動","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv014"]},
  1881. {"name":"韓國娛樂","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv016"]},
  1882. {"name":"達文西","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv018"]},
  1883. {"name":"八大精彩","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv034"]},
  1884. {"name":"八大綜合","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv039"]},
  1885. {"name":"中視","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv040"]},
  1886. {"name":"華視","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv041"]},
  1887. {"name":"公視戲劇","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv042"]},
  1888. {"name":"客家電視","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv043"]},
  1889. {"name":"靖天卡通","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv044"]},
  1890. {"name":"靖洋戲劇","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv045"]},
  1891. {"name":"靖天綜合","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv046"]},
  1892. {"name":"靖天日本","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv047"]},
  1893. {"name":"非凡商業","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv048"]},
  1894. {"name":"采昌","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv049"]},
  1895. {"name":"台視新聞","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv051"]},
  1896. {"name":"華視新聞資訊","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv052"]},
  1897. {"name":"Ginx Esports","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv053"]},
  1898. {"name":"靖天歡樂","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv054"]},
  1899. {"name":"靖天映畫","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv055"]},
  1900. {"name":"台視財經","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv056"]},
  1901. {"name":"靖洋卡通","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv057"]},
  1902. {"name":"靖天戲劇","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv058"]},
  1903. {"name":"CLASSICA古典樂","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv059"]},
  1904. {"name":"靖天電影","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv061"]},
  1905. {"name":"靖天育樂","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv062"]},
  1906. {"name":"靖天國際","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv063"]},
  1907. {"name":"中視精彩","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv064"]},
  1908. {"name":"靖天資訊","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv065"]},
  1909. {"name":"台視","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv066"]},
  1910. {"name":"TVBS精彩","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv067"]},
  1911. {"name":"TVBS歡樂","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv068"]},
  1912. {"name":"愛爾達娛樂","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv070"]},
  1913. {"name":"TVBS新聞","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv072"]},
  1914. {"name":"TVBS直播","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv073"]},
  1915. {"name":"中視新聞","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv074"]},
  1916. {"name":"Catch Play","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv076"]},
  1917. {"name":"Trace Sports","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv077"]},
  1918. {"name":"Arirang","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv079"]},
  1919. {"name":"中視經典","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv080"]},
  1920. {"name":"Trace Urban","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv082"]},
  1921. {"name":"Mezzo Live","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv083"]},
  1922. {"name":"國會頻道1","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv084"]},
  1923. {"name":"國會頻道2","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv085"]},
  1924. {"name":"智林體育","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv101"]},
  1925. {"name":"東森購物1","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv102"]},
  1926. {"name":"東森購物2","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv103"]},
  1927. {"name":"財經頻道","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv104"]},
  1928. {"name":"中天亞洲","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=4gtv-4gtv109"]},
  1929. {"name":"V0A美國之音","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-ftv03"]},
  1930. {"name":"民視旅遊","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-ftv07"]},
  1931. {"name":"民視影劇","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-ftv09"]},
  1932. {"name":"半島國際新聞","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-ftv10"]},
  1933. {"name":"民視新聞台","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-ftv13"]},
  1934. {"name":"愛放i-Fun動漫","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-ftv15"]},
  1935. {"name":"好訊息","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-ftv16"]},
  1936. {"name":"好訊息2","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-ftv17"]},
  1937. {"name":"龍華卡通","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn01"]},
  1938. {"name":"BabyFirst","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn02"]},
  1939. {"name":"龍華電影","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn03"]},
  1940. {"name":"博斯魅力","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn04"]},
  1941. {"name":"博斯高球1","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn05"]},
  1942. {"name":"博斯高球2","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn06"]},
  1943. {"name":"博斯運動1","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn07"]},
  1944. {"name":"博斯運動2","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn08"]},
  1945. {"name":"博斯網球","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn09"]},
  1946. {"name":"博斯無限","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn10"]},
  1947. {"name":"龍華日韓","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn11"]},
  1948. {"name":"龍華偶像","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn12"]},
  1949. {"name":"博斯電玩","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn13"]},
  1950. {"name":"寰宇新聞","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn14"]},
  1951. {"name":"寰宇新聞台灣","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn15"]},
  1952. {"name":"梅蒂斯藝術","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn16"]},
  1953. {"name":"亞洲旅遊","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn17"]},
  1954. {"name":"龍華戲劇","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn18"]},
  1955. {"name":"FashionOne","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn19"]},
  1956. {"name":"ELTV英語","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn20"]},
  1957. {"name":"龍華經典","urls":["http://hstv:hstv2021@tw.hstv.pro/litv/litvts.php?id=litv-longturn21"]}
  1958. ]},
  1959. {"group": "临时源五","channels": [{"name":"中視","urls":["http://220.135.55.74:8542/live.m3u8"]},
  1960. {"name":"華視","urls":["http://220.135.55.74:8544/live.m3u8"]},
  1961. {"name":"民視","urls":["http://220.135.55.74:8545/live.m3u8"]},
  1962. {"name":"台視","urls":["http://220.135.55.74:8566/http/59.120.8.187:8078/hls/21/80/phoenixch.m3u8"]},
  1963. {"name":"公視","urls":["http://220.135.55.74:8562/live.m3u8"]},
  1964. {"name":"衛視中文","urls":["http://220.135.55.74:8522/live.m3u8","http://220.135.55.74:8522/http/123.51.149.60:8081/hls/62/804/ch05.m3u8"]},
  1965. {"name":"衛視電影","urls":["http://220.135.55.74:8529/live.m3u8"]},
  1966. {"name":"鳯凰衛視資訊","urls":["http://220.135.55.74:8565/http/59.120.8.187:8078/hls/20/80/phoenixif.m3u8"]},
  1967. {"name":"緯來綜合","urls":["http://220.135.55.74:8540/live.m3u8"]},
  1968. {"name":"緯來日本","urls":["http://220.135.55.74:8524/live.m3u8","http://220.135.55.74:8524/http/123.51.149.60:8081/hls/69/811/ch34.m3u8"]},
  1969. {"name":"緯來體育","urls":["http://220.135.55.74:8509/live.m3u8"]},
  1970. {"name":"緯來電影","urls":["http://220.135.55.74:8556/live.m3u8"]},
  1971. {"name":"緯來戲劇","urls":["http://220.135.55.74:8557/live.m3u8","http://220.135.55.74:8557/http/123.51.149.60:8081/hls/69/811/ch33.m3u8"]},
  1972. {"name":"緯來育樂","urls":["http://220.135.55.74:8541/live.m3u8"]},
  1973. {"name":"東森綜合","urls":["http://220.135.55.74:8526/live.m3u8","http://220.135.55.74:8526/http/123.51.149.60:8081/hls/63/805/ch12.m3u8"]},
  1974. {"name":"東森戲劇","urls":["http://220.135.55.74:8538/live.m3u8","http://220.135.55.74:8538/http/123.51.149.60:8081/hls/64/806/ch13.m3u8"]},
  1975. {"name":"東森超視","urls":["http://220.135.55.74:8555/live.m3u8"]},
  1976. {"name":"東森財經新聞","urls":["http://220.135.55.74:8515/live.m3u8"]},
  1977. {"name":"東森幼幼","urls":["http://220.135.55.74:8506/live.m3u8"]},
  1978. {"name":"龍華卡通","urls":["http://220.135.55.74:8508/live.m3u8"]},
  1979. {"name":"龍華戲劇","urls":["http://220.135.55.74:8513/live.m3u8"]},
  1980. {"name":"龍華日韓","urls":["http://220.135.55.74:8550/live.m3u8"]},
  1981. {"name":"龍華偶像","urls":["http://220.135.55.74:8571/live.m3u8"]},
  1982. {"name":"龍華電影","urls":["http://220.135.55.74:8575/live.m3u8"]},
  1983. {"name":"中天綜合","urls":["http://220.135.55.74:8520/live.m3u8","http://220.135.55.74:8520/http/123.51.149.60:8081/hls/67/809/ch25.m3u8"]},
  1984. {"name":"中天娛樂","urls":["http://220.135.55.74:8521/live.m3u8","http://220.135.55.74:8521/http/123.51.149.60:8081/hls/67/809/ch26.m3u8"]},
  1985. {"name":"三立台灣HD","urls":["http://220.135.55.74:8519/http/123.51.149.60:8081/hls/65/807/ch20.m3u8"]},
  1986. {"name":"三立都會HD","urls":["http://220.135.55.74:8518/http/123.51.149.60:8081/hls/65/807/ch19.m3u8"]},
  1987. {"name":"超視HD","urls":["http://220.135.55.74:8555/http/123.51.149.60:8081/hls/64/806/ch14.m3u8"]},
  1988. {"name":"東風衛視","urls":["http://220.135.55.74:8560/http/123.51.149.60:8081/hls/68/810/ch31.m3u8"]},
  1989. {"name":"MUCHTV","urls":["http://220.135.55.74:8529/http/123.51.149.60:8081/hls/68/810/ch45.m3u8"]},
  1990. {"name":"八大戲劇HD","urls":["http://220.135.55.74:8549/http/123.51.149.60:8081/hls/66/808/ch23.m3u8"]},
  1991. {"name":"TVBS歡樂HD","urls":["http://220.135.55.74:8516/http/123.51.149.60:8081/hls/65/807/ch17.m3u8"]},
  1992. {"name":"龍華戲劇台","urls":["http://220.135.55.74:8513/http/59.120.8.187:8066/hls/210/10010/cstv10.m3u8"]},
  1993. {"name":"龍華日韓劇","urls":["http://220.135.55.74:8550/http/59.120.8.187:8066/hls/210/10011/cstv11.m3u8"]},
  1994. {"name":"龍華偶像劇","urls":["http://220.135.55.74:8571/http/59.120.8.187:8066/hls/210/10012/cstv12.m3u8"]},
  1995. {"name":"WAKUWAKU JAPAN","urls":["http://220.135.55.74:8572/http/123.51.149.60:8081/hls/61/803/ch03.m3u8"]},
  1996. {"name":"緯來體育HD","urls":["http://220.135.55.74:8509/http/59.120.8.187:8081/hls/67/809/ch28.m3u8"]},
  1997. {"name":"博斯運動一","urls":["http://220.135.55.74:8570/http/59.120.8.187:8066/hls/210/10018/cstv18.m3u8"]},
  1998. {"name":"momo綜合台","urls":["http://220.135.55.74:8576/http/59.120.8.187:8081/hls/76/818/momo_max.m3u8"]},
  1999. {"name":"ELEVEN SPORTS 1 HD","urls":["http://220.135.55.74:8553/http/59.120.8.187:8078/hls/25/80/esport.m3u8"]},
  2000. {"name":"ELEVEN SPORTS 2 HD","urls":["http://220.135.55.74:8554/http/59.120.8.187:8078/hls/26/80/esport2.m3u8"]},
  2001. {"name":"中天新聞","urls":["http://220.135.55.74:8573/http/123.51.149.60:8081/hls/78/80/ch63max.m3u8","http://220.135.55.74:8573/live.m3u8"]},
  2002. {"name":"壹新聞","urls":["http://220.135.55.74:8574/live.m3u8"]},
  2003. {"name":"寰宇新聞","urls":["http://220.135.55.74:8569/live.m3u8"]},
  2004. {"name":"東森财經新聞","urls":["http://220.135.55.74:8515/live.m3u8"]}
  2005. ]},
  2006. {"group": "临时源六","channels": [{"name":"凤凰资讯台","urls":["http://ott.js.chinamobile.com/TVOD/3/224/3221228098/index.m3u8","http://anan.jxin122.top/cj.php?id=99&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2007. {"name":"凤凰香港台","urls":["http://ott.js.chinamobile.com/TVOD/3/224/3221228060/index.m3u8"]},
  2008. {"name":"凤凰中文台","urls":["http://ott.js.chinamobile.com/TVOD/3/224/3221228057/index.m3u8"]},
  2009. {"name":"翡翠台","urls":["http://anan.jxin122.top/cj.php?id=78&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2010. {"name":"TVBJ2","urls":["http://anan.jxin122.top/cj.php?id=74&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2011. {"name":"明珠台","urls":["http://anan.jxin122.top/cj.php?id=77&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2012. {"name":"无线新闻","urls":["http://anan.jxin122.top/cj.php?id=73&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2013. {"name":"无线财经","urls":["http://anan.jxin122.top/cj.php?id=79&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2014. {"name":"有线新闻台","urls":["http://anan.jxin122.top/cj.php?id=62&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2015. {"name":"星空","urls":["http://anan.jxin122.top/cj.php?id=72&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://anan.jxin122.top/cj.php?id=3&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2016. {"name":"TVB星河","urls":["http://anan.jxin122.top/cj.php?id=76&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2017. {"name":"美亚电影台","urls":["http://anan.jxin122.top/cj.php?id=75&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2018. {"name":"RHK31","urls":["http://anan.jxin122.top/cj.php?id=96&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2019. {"name":"RHK32","urls":["http://anan.jxin122.top/cj.php?id=97&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2020. {"name":"VIUTV","urls":["http://anan.jxin122.top/cj.php?id=94&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2021. {"name":"中视","urls":["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"]},
  2022. {"name":"华视","urls":["http://anan.jxin122.top/cj.php?id=46&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2023. {"name":"民视","urls":["http://anan.jxin122.top/cj.php?id=44&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2024. {"name":"公视","urls":["http://anan.jxin122.top/cj.php?id=43&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2025. {"name":"三立台湾台","urls":["http://anan.jxin122.top/cj.php?id=24&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2026. {"name":"三立都会台","urls":["http://anan.jxin122.top/cj.php?id=25&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2027. {"name":"三立综合台","urls":["http://anan.jxin122.top/cj.php?id=26&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52","http://anan.jxin122.top/cj.php?id=26&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2028. {"name":"民视新闻","urls":["http://anan.jxin122.top/cj.php?id=5&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2029. {"name":"非凡新闻","urls":["http://anan.jxin122.top/cj.php?id=6&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2030. {"name":"年代新闻","urls":["http://anan.jxin122.top/cj.php?id=7&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2031. {"name":"纬来体育","urls":["http://anan.jxin122.top/cj.php?id=11&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2032. {"name":"龙祥年代","urls":["http://anan.jxin122.top/cj.php?id=13&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2033. {"name":"東森洋片","urls":["http://anan.jxin122.top/cj.php?id=28&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2034. {"name":"東森电影","urls":["http://anan.jxin122.top/cj.php?id=29&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2035. {"name":"中天娱乐","urls":["http://anan.jxin122.top/cj.php?id=40&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2036. {"name":"中天综合","urls":["http://anan.jxin122.top/cj.php?id=41&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2037. {"name":"中天新闻","urls":["http://anan.jxin122.top/cj.php?id=42&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2038. {"name":"中天亚洲台","urls":["http://anan.jxin122.top/cj.php?id=39&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2039. {"name":"東森综合","urls":["http://anan.jxin122.top/cj.php?id=32&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2040. {"name":"東森新闻","urls":["http://anan.jxin122.top/cj.php?id=33&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2041. {"name":"TVBS欢乐","urls":["http://anan.jxin122.top/cj.php?id=36&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]},
  2042. {"name":"TVBS","urls":["http://anan.jxin122.top/cj.php?id=37&p=0&c=3&key=ced06b227baa54c961d63cc2c09dbc52"]}
  2043. ]},
  2044. {"group": "临时源七-022-01-27","channels": [{"name":"CCTV1","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225870/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225888/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225674/index.m3u8?"]},
  2045. {"name":"CCTV2","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225657/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225676/index.m3u8?"]},
  2046. {"name":"CCTV3","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225713/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225677/index.m3u8?"]},
  2047. {"name":"CCTV4","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225761/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225775/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225753/index.m3u8?"]},
  2048. {"name":"CCTV5","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225801/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225516/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225660/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225680/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225923/index.m3u8?"]},
  2049. {"name":"CCTV5+","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225712/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225621/index.m3u8?"]},
  2050. {"name":"CCTV6","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225715/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225683/index.m3u8?"]},
  2051. {"name":"CCTV7","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225700/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225627/index.m3u8?"]},
  2052. {"name":"CCTV8","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225716/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225630/index.m3u8?"]},
  2053. {"name":"CCTV9","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225663/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225633/index.m3u8?"]},
  2054. {"name":"CCTV10","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225704/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225624/index.m3u8?"]},
  2055. {"name":"CCTV11","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225739/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225750/index.m3u8?"]},
  2056. {"name":"CCTV12","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225645/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225670/index.m3u8?"]},
  2057. {"name":"CCTV13","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225742/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225759/index.m3u8?","http://39.135.46.246:6610/PLTV/77777777/224/3221225798/index.m3u8?","http://39.135.46.246:6610/PLTV/77777777/224/3221225787/index.m3u8?"]},
  2058. {"name":"CCTV14","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225648/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225673/index.m3u8?"]},
  2059. {"name":"CCTV15","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225693/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225830/index.m3u8?"]},
  2060. {"name":"CCTV16","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225956/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225897/index.m3u8?"]},
  2061. {"name":"CCTV17","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225513/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225766/index.m3u8?","http://39.135.46.246:6610/PLTV/77777777/224/3221225833/index.m3u8"]},
  2062. {"name":"湖南卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225719/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225692/index.m3u8"]},
  2063. {"name":"东南卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225696/index.m3u8"]},
  2064. {"name":"厦门卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225823/index.m3u8"]},
  2065. {"name":"广东卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225666/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225685/index.m3u8"]},
  2066. {"name":"江苏卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225722/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225636/index.m3u8"]},
  2067. {"name":"江西卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225669/index.m3u8"]},
  2068. {"name":"浙江卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225731/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225695/index.m3u8"]},
  2069. {"name":"深圳卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225725/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225691/index.m3u8"]},
  2070. {"name":"东方卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225718/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225682/index.m3u8"]},
  2071. {"name":"北京卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225651/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225664/index.m3u8"]},
  2072. {"name":"天津卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225675/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225694/index.m3u8"]},
  2073. {"name":"安徽卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225701/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225671/index.m3u8"]},
  2074. {"name":"山东卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225672/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225642/index.m3u8"]},
  2075. {"name":"湖北卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225721/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225689/index.m3u8"]},
  2076. {"name":"辽宁卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225779/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225639/index.m3u8"]},
  2077. {"name":"重庆卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225745/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225679/index.m3u8"]},
  2078. {"name":"黑龙江卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225734/index.m3u8","http://39.135.46.246:6610/PLTV/77777777/224/3221225686/index.m3u8"]},
  2079. {"name":"云南卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225794/index.m3u8"]},
  2080. {"name":"内蒙古卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225751/index.m3u8"]},
  2081. {"name":"吉林卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225678/index.m3u8"]},
  2082. {"name":"四川卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225757/index.m3u8"]},
  2083. {"name":"宁夏卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225782/index.m3u8"]},
  2084. {"name":"山西卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225785/index.m3u8"]},
  2085. {"name":"广西卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225767/index.m3u8"]},
  2086. {"name":"新疆卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225788/index.m3u8"]},
  2087. {"name":"河北卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225773/index.m3u8"]},
  2088. {"name":"河南卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225806/index.m3u8"]},
  2089. {"name":"海南卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225752/index.m3u8"]},
  2090. {"name":"甘肃卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225764/index.m3u8"]},
  2091. {"name":"西藏卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225800/index.m3u8"]},
  2092. {"name":"贵州卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225770/index.m3u8"]},
  2093. {"name":"陕西卫视 4M1576","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225754/index.m3u8"]},
  2094. {"name":"青海卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225705/index.m3u8"]},
  2095. {"name":"新疆兵团卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225795/index.m3u8"]},
  2096. {"name":"西藏藏语卫视","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225828/index.m3u8"]},
  2097. {"name":"上海纪实人文","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225688/index.m3u8"]},
  2098. {"name":"北京冬奥纪实","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225667/index.m3u8"]},
  2099. {"name":"NewTV中国功夫","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225690/index.m3u8"]},
  2100. {"name":"NewTV军事评论","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225749/index.m3u8"]},
  2101. {"name":"NewTV军旅剧场","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225727/index.m3u8"]},
  2102. {"name":"NewTV农业致富","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225687/index.m3u8"]},
  2103. {"name":"NewTV动作电影","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225703/index.m3u8"]},
  2104. {"name":"NewTV古装剧场","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225706/index.m3u8"]},
  2105. {"name":"NewTV家庭剧场","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225743/index.m3u8"]},
  2106. {"name":"NewTV怡伴健康","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225684/index.m3u8"]},
  2107. {"name":"NewTV惊悚悬疑","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225746/index.m3u8"]},
  2108. {"name":"NewTV明星大片","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225733/index.m3u8"]},
  2109. {"name":"NewTV武搏世界","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225758/index.m3u8"]},
  2110. {"name":"NewTV海外剧场","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225763/index.m3u8"]},
  2111. {"name":"NewTV潮妈辣婆","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225709/index.m3u8"]},
  2112. {"name":"NewTV炫舞未来","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225728/index.m3u8"]},
  2113. {"name":"NewTV爱情喜剧","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225698/index.m3u8"]},
  2114. {"name":"NewTV精品体育","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225724/index.m3u8"]},
  2115. {"name":"NewTV精品大剧","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225737/index.m3u8"]},
  2116. {"name":"NewTV精品纪录","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225681/index.m3u8"]},
  2117. {"name":"NewTV金牌综艺","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225755/index.m3u8"]},
  2118. {"name":"黑莓动画","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225710/index.m3u8"]},
  2119. {"name":"黑莓电影","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225740/index.m3u8"]},
  2120. {"name":"广东南方卫视上星","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225748/index.m3u8"]},
  2121. {"name":"上海哈哈炫动","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225711/index.m3u8"]},
  2122. {"name":"北京卡酷少儿","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225730/index.m3u8"]},
  2123. {"name":"广东嘉佳卡通","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225797/index.m3u8"]},
  2124. {"name":"江苏优漫卡通","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225791/index.m3u8"]},
  2125. {"name":"湖南金鹰卡通","urls":["http://39.135.46.246:6610/PLTV/77777777/224/3221225702/index.m3u8"]},
  2126. {"name":"民视","urls":["http://61.222.202.191/gt/gttv.php?id=13669&cid=13822"]},
  2127. {"name":"华视","urls":["http://61.222.202.191/gt/gttv.php?id=13676&cid=13829"]},
  2128. {"name":"中视","urls":["http://61.222.202.191/gt/gttv.php?id=13681&cid=13834"]},
  2129. {"name":"猪哥會社電视秀","urls":["http://61.222.202.191/gt/gttv.php?id=13662&cid=13814"]},
  2130. {"name":"西洋電影","urls":["http://61.222.202.191/gt/gttv.php?id=11425&cid=11425"]},
  2131. {"name":"亞洲電影","urls":["http://61.222.202.191/gt/gttv.php?id=11426&cid=11426"]},
  2132. {"name":"電影原聲","urls":["http://61.222.202.191/gt/gttv.php?id=14188&cid=14348"]},
  2133. {"name":"歐洲電影","urls":["http://61.222.202.191/gt/gttv.php?id=14399&cid=14562"]},
  2134. {"name":"最愛電影","urls":["http://61.222.202.191/gt/gttv.php?id=13624&cid=13776"]},
  2135. {"name":"数位電影","urls":["http://61.222.202.191/gt/gttv.php?id=13695&cid=13848"]},
  2136. {"name":"数位紀實","urls":["http://61.222.202.191/gt/gttv.php?id=14132&cid=14292"]},
  2137. {"name":"CATCHPLAY電影","urls":["http://61.222.202.191/gt/gttv.php?id=14181&cid=14341"]},
  2138. {"name":"時代影像","urls":["http://61.222.202.191/gt/gttv.php?id=13183&cid=13334"]},
  2139. {"name":"龍华電影","urls":["http://61.222.202.191/gt/gttv.php?id=13187&cid=13339"]},
  2140. {"name":"VBS","urls":["http://61.222.202.191/gt/gttv.php?id=15131&cid=15294"]},
  2141. {"name":"TVBS新闻","urls":["http://61.222.202.191/gt/gttv.php?id=15132&cid=15295"]},
  2142. {"name":"TVBS欢乐","urls":["http://61.222.202.191/gt/gttv.php?id=15133&cid=15296"]},
  2143. {"name":"TVBS精采","urls":["http://61.222.202.191/gt/gttv.php?id=15134&cid=15297"]},
  2144. {"name":"東森新闻","urls":["http://61.222.202.191/gt/gttv.php?id=13635&cid=13787"]},
  2145. {"name":"中天全民","urls":["http://61.222.202.191/gt/gttv.php?id=14192&cid=14352"]},
  2146. {"name":"寰宇新闻","urls":["http://61.222.202.191/gt/gttv.php?id=14170&cid=14330"]},
  2147. {"name":"寰宇台湾","urls":["http://61.222.202.191/gt/gttv.php?id=14172&cid=14332"]},
  2148. {"name":"三立iNEWS","urls":["http://61.222.202.191/gt/gttv.php?id=11419&cid=11420"]},
  2149. {"name":"民视新闻","urls":["http://61.222.202.191/gt/gttv.php?id=13670&cid=13823"]},
  2150. {"name":"华视新闻","urls":["http://61.222.202.191/gt/gttv.php?id=13677&cid=13830"]},
  2151. {"name":"非凡新闻","urls":["http://61.222.202.191/gt/gttv.php?id=11327&cid=11345"]},
  2152. {"name":"亞洲新闻","urls":["http://61.222.202.191/gt/gttv.php?id=14064&cid=14224"]},
  2153. {"name":"民视戏剧","urls":["http://61.222.202.191/gt/gttv.php?id=13651&cid=13803"]},
  2154. {"name":"民视綜艺","urls":["http://61.222.202.191/gt/gttv.php?id=13653&cid=13805"]},
  2155. {"name":"民视旅遊","urls":["http://61.222.202.191/gt/gttv.php?id=13655&cid=13807"]},
  2156. {"name":"公视戏剧","urls":["http://61.222.202.191/gt/gttv.php?id=14159&cid=14319"]},
  2157. {"name":"民视台湾","urls":["http://61.222.202.191/gt/gttv.php?id=13671&cid=13824"]},
  2158. {"name":"民视第一","urls":["http://61.222.202.191/gt/gttv.php?id=13672&cid=13825"]},
  2159. {"name":"亞洲旅遊","urls":["http://61.222.202.191/gt/gttv.php?id=11462&cid=11462"]},
  2160. {"name":"中天美食","urls":["http://61.222.202.191/gt/gttv.php?id=14193&cid=14353"]},
  2161. {"name":"中天綜合","urls":["http://61.222.202.191/gt/gttv.php?id=14187&cid=14347"]},
  2162. {"name":"八大綜合","urls":["http://61.222.202.191/gt/gttv.php?id=13660&cid=13812"]},
  2163. {"name":"八大精彩","urls":["http://61.222.202.191/gt/gttv.php?id=14213&cid=14373"]},
  2164. {"name":"愛爾達娱乐","urls":["http://61.222.202.191/gt/gttv.php?id=13701&cid=13854"]},
  2165. {"name":"韩国娱乐","urls":["http://61.222.202.191/gt/gttv.php?id=13685&cid=13838"]},
  2166. {"name":"時尚娱乐","urls":["http://61.222.202.191/gt/gttv.php?id=13687&cid=13840"]},
  2167. {"name":"新唐人亞太","urls":["http://61.222.202.191/gt/gttv.php?id=13984&cid=14137"]},
  2168. {"name":"麥卡貝電视","urls":["http://61.222.202.191/gt/gttv.php?id=11423&cid=11422"]},
  2169. {"name":"华語戏剧","urls":["http://61.222.202.191/gt/gttv.php?id=11427&cid=11427"]},
  2170. {"name":"娱乐綜艺","urls":["http://61.222.202.191/gt/gttv.php?id=11430&cid=11429"]},
  2171. {"name":"流行音乐","urls":["http://61.222.202.191/gt/gttv.php?id=11431&cid=11430"]},
  2172. {"name":"影音綜合","urls":["http://61.222.202.191/gt/gttv.php?id=12450&cid=12445"]},
  2173. {"name":"古典音乐","urls":["http://61.222.202.191/gt/gttv.php?id=13666&cid=13819"]},
  2174. {"name":"幸福居家","urls":["http://61.222.202.191/gt/gttv.php?id=14199&cid=14359"]},
  2175. {"name":"亞洲戏剧","urls":["http://61.222.202.191/gt/gttv.php?id=11429&cid=11441"]},
  2176. {"name":"龍华偶像","urls":["http://61.222.202.191/gt/gttv.php?id=11459&cid=11463"]},
  2177. {"name":"龍华日韩","urls":["http://61.222.202.191/gt/gttv.php?id=11460&cid=11464"]},
  2178. {"name":"龍华戏剧","urls":["http://61.222.202.191/gt/gttv.php?id=11461&cid=11465"]},
  2179. {"name":"龍华卡通","urls":["http://61.222.202.191/gt/gttv.php?id=13188&cid=13338"]},
  2180. {"name":"生活時尚","urls":["http://61.222.202.191/gt/gttv.php?id=14400&cid=14563"]},
  2181. {"name":"尼克兒童","urls":["http://61.222.202.191/gt/gttv.php?id=14081&cid=14241"]},
  2182. {"name":"金光布袋戲","urls":["http://61.222.202.191/gt/gttv.php?id=14080&cid=14240"]},
  2183. {"name":"momo親子","urls":["http://61.222.202.191/gt/gttv.php?id=13661&cid=13813"]},
  2184. {"name":"CN卡通頻道","urls":["http://61.222.202.191/gt/gttv.php?id=13645&cid=13797"]},
  2185. {"name":"MTV Live","urls":["http://61.222.202.191/gt/gttv.php?id=14166&cid=14326"]},
  2186. {"name":"SBL超級籃球","urls":["http://61.222.202.191/gt/gttv.php?id=11450&cid=11453"]},
  2187. {"name":"智林體育","urls":["http://61.222.202.191/gt/gttv.php?id=13706&cid=13859"]},
  2188. {"name":"車迷TV","urls":["http://61.222.202.191/gt/gttv.php?id=14190&cid=14350"]},
  2189. {"name":"ARIRANG阿里郎頻道","urls":["http://206.119.163.4/apitv/gtlive.php?id=15810&cid=15973"]},
  2190. {"name":"CATCHPLAY Beyond","urls":["http://206.119.163.4/apitv/gtlive.php?id=14401&cid=14564"]},
  2191. {"name":"CATCHPLAY電影","urls":["http://206.119.163.4/apitv/gtlive.php?id=14183&cid=14343"]},
  2192. {"name":"CNA亞洲新聞","urls":["http://206.119.163.4/apitv/gtlive.php?id=14064&cid=14224"]},
  2193. {"name":"CNBC","urls":["http://206.119.163.4/apitv/gtlive.php?id=13693&cid=13846"]},
  2194. {"name":"CNEX DOC CHANNEL","urls":["http://206.119.163.4/apitv/gtlive.php?id=13694&cid=13847"]},
  2195. {"name":"CNN國際新聞","urls":["http://206.119.163.4/apitv/gtlive.php?id=13643&cid=13795"]},
  2196. {"name":"CNN頭條新聞","urls":["http://206.119.163.4/apitv/gtlive.php?id=13644&cid=13796"]},
  2197. {"name":"CN卡通頻道","urls":["http://206.119.163.4/apitv/gtlive.php?id=13645&cid=13797"]},
  2198. {"name":"CinemaWorld","urls":["http://206.119.163.4/apitv/gtlive.php?id=14061&cid=14221"]},
  2199. {"name":"達文西教學","urls":["http://206.119.163.4/apitv/gtlive.php?id=13625&cid=13777"]},
  2200. {"name":"ELTV生活英語","urls":["http://206.119.163.4/apitv/gtlive.php?id=13983&cid=14136"]},
  2201. {"name":"FUN影音綜合","urls":["http://206.119.163.4/apitv/gtlive.php?id=12450&cid=12445"]},
  2202. {"name":"FUN流行音樂","urls":["http://206.119.163.4/apitv/gtlive.php?id=11431&cid=11430"]},
  2203. {"name":"FUN精選電影院","urls":["http://206.119.163.4/apitv/gtlive.php?id=12451&cid=12444"]},
  2204. {"name":"Fashion one時尚娛樂","urls":["http://206.119.163.4/apitv/gtlive.php?id=13687&cid=13840"]},
  2205. {"name":"GINX Esports TV","urls":["http://206.119.163.4/apitv/gtlive.php?id=14397&cid=14560"]},
  2206. {"name":"GOOD TV一","urls":["http://206.119.163.4/apitv/gtlive.php?id=13696&cid=13849"]},
  2207. {"name":"GOOD TV二","urls":["http://206.119.163.4/apitv/gtlive.php?id=13711&cid=13864"]},
  2208. {"name":"HITS頻道","urls":["http://206.119.163.4/apitv/gtlive.php?id=14000&cid=14153"]},
  2209. {"name":"History 2","urls":["http://206.119.163.4/apitv/gtlive.php?id=13640&cid=13792"]},
  2210. {"name":"History","urls":["http://206.119.163.4/apitv/gtlive.php?id=14165&cid=14325"]},
  2211. {"name":"靖天國際","urls":["http://206.119.163.4/apitv/gtlive.php?id=18953&cid=19116"]},
  2212. {"name":"LUXE TV Channel","urls":["http://206.119.163.4/apitv/gtlive.php?id=14398&cid=14561"]},
  2213. {"name":"Lifetime","urls":["http://206.119.163.4/apitv/gtlive.php?id=13664&cid=13817"]},
  2214. {"name":"LiveABC互動英語頻道","urls":["http://206.119.163.4/apitv/gtlive.php?id=15808&cid=15971"]},
  2215. {"name":"Love Nature","urls":["http://206.119.163.4/apitv/gtlive.php?id=14085&cid=14245"]},
  2216. {"name":"MTV Live","urls":["http://206.119.163.4/apitv/gtlive.php?id=14166&cid=14326"]},
  2217. {"name":"Mezzo Live","urls":["http://206.119.163.4/apitv/gtlive.php?id=13712&cid=13865"]},
  2218. {"name":"的歐洲電影","urls":["http://206.119.163.4/apitv/gtlive.php?id=14399&cid=14562"]},
  2219. {"name":"NICK Jr","urls":["http://206.119.163.4/apitv/gtlive.php?id=14167&cid=14327"]},
  2220. {"name":"靖天歡樂","urls":["http://206.119.163.4/apitv/gtlive.php?id=18954&cid=19117"]},
  2221. {"name":"Pet Club TV","urls":["http://206.119.163.4/apitv/gtlive.php?id=15213&cid=15376"]},
  2222. {"name":"ROCK Extreme","urls":["http://206.119.163.4/apitv/gtlive.php?id=14084&cid=14244"]},
  2223. {"name":"SBL超級籃球聯賽","urls":["http://206.119.163.4/apitv/gtlive.php?id=11450&cid=11453"]},
  2224. {"name":"SBN全球財經","urls":["http://206.119.163.4/apitv/gtlive.php?id=13985&cid=14138"]},
  2225. {"name":"Smart知識","urls":["http://206.119.163.4/apitv/gtlive.php?id=14050&cid=14210"]},
  2226. {"name":"Smithsonian Channel","urls":["http://206.119.163.4/apitv/gtlive.php?id=14184&cid=14344"]},
  2227. {"name":"TV5MONDE STYLE生活時尚","urls":["http://206.119.163.4/apitv/gtlive.php?id=14400&cid=14563"]},
  2228. {"name":"TVBS","urls":["http://206.119.163.4/apitv/gtlive.php?id=15131&cid=15294"]},
  2229. {"name":"TVBS新聞","urls":["http://206.119.163.4/apitv/gtlive.php?id=15132&cid=15295"]},
  2230. {"name":"TVBS歡樂","urls":["http://206.119.163.4/apitv/gtlive.php?id=15133&cid=15296"]},
  2231. {"name":"TVBS精采","urls":["http://206.119.163.4/apitv/gtlive.php?id=15134&cid=15297"]},
  2232. {"name":"TechStorm","urls":["http://206.119.163.4/apitv/gtlive.php?id=15256&cid=15419"]},
  2233. {"name":"Trace Sport Stars","urls":["http://206.119.163.4/apitv/gtlive.php?id=13704&cid=13857"]},
  2234. {"name":"amc最愛電影","urls":["http://206.119.163.4/apitv/gtlive.php?id=14133&cid=14293"]},
  2235. {"name":"CI罪犯偵緝","urls":["http://206.119.163.4/apitv/gtlive.php?id=14164&cid=14324"]},
  2236. {"name":"i-Fun動漫","urls":["http://206.119.163.4/apitv/gtlive.php?id=13674&cid=13827"]},
  2237. {"name":"momo親子","urls":["http://206.119.163.4/apitv/gtlive.php?id=13661&cid=13813"]},
  2238. {"name":"三立iNEWS","urls":["http://206.119.163.4/apitv/gtlive.php?id=11419&cid=11420"]},
  2239. {"name":"三立新聞","urls":["http://206.119.163.4/apitv/gtlive.php?id=11422&cid=11440"]},
  2240. {"name":"中天全民最大黨","urls":["http://206.119.163.4/apitv/gtlive.php?id=14192&cid=14352"]},
  2241. {"name":"中天新聞","urls":["http://206.119.163.4/apitv/gtlive.php?id=14143&cid=14303"]},
  2242. {"name":"中天綜合","urls":["http://206.119.163.4/apitv/gtlive.php?id=14187&cid=14347"]},
  2243. {"name":"中天美食旅遊","urls":["http://206.119.163.4/apitv/gtlive.php?id=14193&cid=14353"]},
  2244. {"name":"中視新聞","urls":["http://206.119.163.4/apitv/gtlive.php?id=13682&cid=13835"]},
  2245. {"name":"中視無線","urls":["http://206.119.163.4/apitv/gtlive.php?id=13681&cid=13834"]},
  2246. {"name":"中視經典","urls":["http://206.119.163.4/apitv/gtlive.php?id=18949&cid=19112"]},
  2247. {"name":"中視菁采","urls":["http://206.119.163.4/apitv/gtlive.php?id=18948&cid=19111"]},
  2248. {"name":"亞洲人氣戲劇","urls":["http://206.119.163.4/apitv/gtlive.php?id=11429&cid=11441"]},
  2249. {"name":"亞洲旅遊","urls":["http://206.119.163.4/apitv/gtlive.php?id=11462&cid=11462"]},
  2250. {"name":"亞洲院線電影","urls":["http://206.119.163.4/apitv/gtlive.php?id=11426&cid=11426"]},
  2251. {"name":"人間衛視","urls":["http://206.119.163.4/apitv/gtlive.php?id=13673&cid=13826"]},
  2252. {"name":"八大精彩","urls":["http://206.119.163.4/apitv/gtlive.php?id=14213&cid=14373"]},
  2253. {"name":"八大綜藝","urls":["http://206.119.163.4/apitv/gtlive.php?id=13660&cid=13812"]},
  2254. {"name":"公視戲劇","urls":["http://206.119.163.4/apitv/gtlive.php?id=14159&cid=14319"]},
  2255. {"name":"半島電視","urls":["http://206.119.163.4/apitv/gtlive.php?id=13678&cid=13831"]},
  2256. {"name":"博斯無限","urls":["http://206.119.163.4/apitv/gtlive.php?id=11452&cid=11461"]},
  2257. {"name":"博斯網球","urls":["http://206.119.163.4/apitv/gtlive.php?id=11453&cid=11459"]},
  2258. {"name":"博斯運動一","urls":["http://206.119.163.4/apitv/gtlive.php?id=14152&cid=14312"]},
  2259. {"name":"博斯運動二","urls":["http://206.119.163.4/apitv/gtlive.php?id=14126&cid=14286"]},
  2260. {"name":"博斯高球二","urls":["http://206.119.163.4/apitv/gtlive.php?id=11456&cid=11456"]},
  2261. {"name":"博斯高球","urls":["http://206.119.163.4/apitv/gtlive.php?id=11457&cid=11455"]},
  2262. {"name":"博斯魅力","urls":["http://206.119.163.4/apitv/gtlive.php?id=11458&cid=11460"]},
  2263. {"name":"古典音樂","urls":["http://206.119.163.4/apitv/gtlive.php?id=13666&cid=13819"]},
  2264. {"name":"台視新聞","urls":["http://206.119.163.4/apitv/gtlive.php?id=18946&cid=19109"]},
  2265. {"name":"台視財經","urls":["http://206.119.163.4/apitv/gtlive.php?id=18947&cid=19110"]},
  2266. {"name":"唯心電視","urls":["http://206.119.163.4/apitv/gtlive.php?id=13977&cid=14130"]},
  2267. {"name":"國會頻道1","urls":["http://206.119.163.4/apitv/gtlive.php?id=14018&cid=14171"]},
  2268. {"name":"國會頻道2","urls":["http://206.119.163.4/apitv/gtlive.php?id=14021&cid=14174"]},
  2269. {"name":"大愛二","urls":["http://206.119.163.4/apitv/gtlive.php?id=13698&cid=13851"]},
  2270. {"name":"大愛電視","urls":["http://206.119.163.4/apitv/gtlive.php?id=13642&cid=13794"]},
  2271. {"name":"客家電視","urls":["http://206.119.163.4/apitv/gtlive.php?id=14011&cid=14164"]},
  2272. {"name":"寰宇新聞","urls":["http://206.119.163.4/apitv/gtlive.php?id=14170&cid=14330"]},
  2273. {"name":"寰宇新聞台灣","urls":["http://206.119.163.4/apitv/gtlive.php?id=14172&cid=14332"]},
  2274. {"name":"尼克兒童頻道","urls":["http://206.119.163.4/apitv/gtlive.php?id=14081&cid=14241"]},
  2275. {"name":"幸福空間居家","urls":["http://206.119.163.4/apitv/gtlive.php?id=14199&cid=14359"]},
  2276. {"name":"影迷數位紀實","urls":["http://206.119.163.4/apitv/gtlive.php?id=14132&cid=14292"]},
  2277. {"name":"影迷數位電影","urls":["http://206.119.163.4/apitv/gtlive.php?id=13695&cid=13848"]},
  2278. {"name":"德國之聲電視","urls":["http://206.119.163.4/apitv/gtlive.php?id=14163&cid=14323"]},
  2279. {"name":"愛爾達娛樂","urls":["http://206.119.163.4/apitv/gtlive.php?id=13701&cid=13854"]},
  2280. {"name":"新唐人亞太","urls":["http://206.119.163.4/apitv/gtlive.php?id=13984&cid=14137"]},
  2281. {"name":"時代影像","urls":["http://206.119.163.4/apitv/gtlive.php?id=13183&cid=13334"]},
  2282. {"name":"智林體育","urls":["http://206.119.163.4/apitv/gtlive.php?id=13706&cid=13859"]},
  2283. {"name":"東森新聞","urls":["http://206.119.163.4/apitv/gtlive.php?id=13635&cid=13787"]},
  2284. {"name":"東森財經新聞","urls":["http://206.119.163.4/apitv/gtlive.php?id=13636&cid=13788"]},
  2285. {"name":"梅迪奇藝術頻道","urls":["http://206.119.163.4/apitv/gtlive.php?id=13988&cid=14141"]},
  2286. {"name":"民視台灣","urls":["http://206.119.163.4/apitv/gtlive.php?id=13671&cid=13824"]},
  2287. {"name":"民視戲劇","urls":["http://206.119.163.4/apitv/gtlive.php?id=13651&cid=13803"]},
  2288. {"name":"民視新聞","urls":["http://206.119.163.4/apitv/gtlive.php?id=14119&cid=14279"]},
  2289. {"name":"民視旅遊","urls":["http://206.119.163.4/apitv/gtlive.php?id=13655&cid=13807"]},
  2290. {"name":"民視無線","urls":["http://206.119.163.4/apitv/gtlive.php?id=14124&cid=14284"]},
  2291. {"name":"民視第一","urls":["http://206.119.163.4/apitv/gtlive.php?id=13672&cid=13825"]},
  2292. {"name":"民視綜藝","urls":["http://206.119.163.4/apitv/gtlive.php?id=13653&cid=13805"]},
  2293. {"name":"熱播華語戲劇","urls":["http://206.119.163.4/apitv/gtlive.php?id=11427&cid=11427"]},
  2294. {"name":"空中英語教學","urls":["http://206.119.163.4/apitv/gtlive.php?id=13648&cid=13800"]},
  2295. {"name":"美國之音","urls":["http://206.119.163.4/apitv/gtlive.php?id=13632&cid=13784"]},
  2296. {"name":"台視","urls":["http://206.119.163.4/apitv/gtlive.php?id=18945&cid=19108"]},
  2297. {"name":"華藏電視","urls":["http://206.119.163.4/apitv/gtlive.php?id=13979&cid=14132"]},
  2298. {"name":"華視新聞資訊","urls":["http://206.119.163.4/apitv/gtlive.php?id=13677&cid=13830"]},
  2299. {"name":"華視","urls":["http://206.119.163.4/apitv/gtlive.php?id=14128&cid=14288"]},
  2300. {"name":"西洋強檔電影","urls":["http://206.119.163.4/apitv/gtlive.php?id=11425&cid=11425"]},
  2301. {"name":"豬哥亮歌廳秀","urls":["http://206.119.163.4/apitv/gtlive.php?id=13662&cid=13814"]},
  2302. {"name":"車迷TV","urls":["http://206.119.163.4/apitv/gtlive.php?id=14190&cid=14350"]},
  2303. {"name":"采昌影劇","urls":["http://206.119.163.4/apitv/gtlive.php?id=14161&cid=14321"]},
  2304. {"name":"金光布袋戲","urls":["http://206.119.163.4/apitv/gtlive.php?id=14080&cid=14240"]},
  2305. {"name":"隨身娛樂綜藝","urls":["http://206.119.163.4/apitv/gtlive.php?id=11430&cid=11429"]},
  2306. {"name":"電影原聲CMusic","urls":["http://206.119.163.4/apitv/gtlive.php?id=14188&cid=14348"]},
  2307. {"name":"靖天卡通","urls":["http://206.119.163.4/apitv/gtlive.php?id=18951&cid=19114"]},
  2308. {"name":"靖天戲劇","urls":["http://206.119.163.4/apitv/gtlive.php?id=18952&cid=19115"]},
  2309. {"name":"靖天日本","urls":["http://206.119.163.4/apitv/gtlive.php?id=18950&cid=19113"]},
  2310. {"name":"靖天映畫","urls":["http://206.119.163.4/apitv/gtlive.php?id=13692&cid=13845"]},
  2311. {"name":"靖天綜合","urls":["http://206.119.163.4/apitv/gtlive.php?id=18956&cid=19119"]},
  2312. {"name":"靖天育樂","urls":["http://206.119.163.4/apitv/gtlive.php?id=18958&cid=19121"]},
  2313. {"name":"靖天資訊","urls":["http://206.119.163.4/apitv/gtlive.php?id=18957&cid=19120"]},
  2314. {"name":"靖天電影","urls":["http://206.119.163.4/apitv/gtlive.php?id=14162&cid=14322"]},
  2315. {"name":"靖洋卡通","urls":["http://206.119.163.4/apitv/gtlive.php?id=18955&cid=19118"]},
  2316. {"name":"靖洋戲劇","urls":["http://206.119.163.4/apitv/gtlive.php?id=13690&cid=13843"]},
  2317. {"name":"非凡商業","urls":["http://206.119.163.4/apitv/gtlive.php?id=11328&cid=11346"]},
  2318. {"name":"非凡新聞","urls":["http://206.119.163.4/apitv/gtlive.php?id=11327&cid=11345"]},
  2319. {"name":"韓國娛樂","urls":["http://206.119.163.4/apitv/gtlive.php?id=13685&cid=13838"]},
  2320. {"name":"麥卡貝網路電視","urls":["http://206.119.163.4/apitv/gtlive.php?id=11423&cid=11422"]},
  2321. {"name":"麥卡貝運動2","urls":["http://206.119.163.4/apitv/gtlive.php?id=14062&cid=14222"]},
  2322. {"name":"麥卡貝運動3","urls":["http://206.119.163.4/apitv/gtlive.php?id=18794&cid=18957"]},
  2323. {"name":"麥卡貝運動頻道","urls":["http://206.119.163.4/apitv/gtlive.php?id=13981&cid=14134"]},
  2324. {"name":"龍華偶像","urls":["http://206.119.163.4/apitv/gtlive.php?id=11459&cid=11463"]},
  2325. {"name":"龍華卡通","urls":["http://206.119.163.4/apitv/gtlive.php?id=13188&cid=13338"]},
  2326. {"name":"龍華戲劇","urls":["http://206.119.163.4/apitv/gtlive.php?id=14147&cid=14307"]},
  2327. {"name":"龍華日韓","urls":["http://206.119.163.4/apitv/gtlive.php?id=11460&cid=11464"]},
  2328. {"name":"龍華電影","urls":["http://206.119.163.4/apitv/gtlive.php?id=13187&cid=13339"]}
  2329. ]},
  2330. {"group": "临时源八-022-01-27","channels": [{"name":"凤凰中文","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226547/index.m3u8"]},
  2331. {"name":"凤凰资讯","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226546/index.m3u8"]},
  2332. {"name":"CHC动作电影","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226465/index.m3u8"]},
  2333. {"name":"CHC家庭影院","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226462/index.m3u8"]},
  2334. {"name":"CHC高清电影","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226463/index.m3u8"]},
  2335. {"name":"CCTV1","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225804/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226231/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225783/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225660/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225965/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225846/index.m3u8"]},
  2336. {"name":"CCTV2","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226195/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226224/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225762/index.m3u8"]},
  2337. {"name":"CCTV3","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226397/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226009/index.m3u8"]},
  2338. {"name":"CCTV4","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226191/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226223/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225781/index.m3u8"]},
  2339. {"name":"CCTV5","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226395/index.m3u8"]},
  2340. {"name":"CCTV5+","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225761/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226221/index.m3u8"]},
  2341. {"name":"CCTV6","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226393/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226011/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225779/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226394/index.m3u8"]},
  2342. {"name":"CCTV7","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226192/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225778/index.m3u8"]},
  2343. {"name":"CCTV8","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226391/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226012/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225759/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226407/index.m3u8"]},
  2344. {"name":"CCTV9","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226197/index.m3u8"]},
  2345. {"name":"CCTV10","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226189/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225777/index.m3u8"]},
  2346. {"name":"CCTV11","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226240/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225776/index.m3u8"]},
  2347. {"name":"CCTV12","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226190/index.m3u8"]},
  2348. {"name":"CCTV13","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226233/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225617/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225774/index.m3u8"]},
  2349. {"name":"CCTV14","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226193/index.m3u8"]},
  2350. {"name":"CCTV15","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225785/index.m3u8"]},
  2351. {"name":"CCTV16","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226921/index.m3u8"]},
  2352. {"name":"CCTV17","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226198/index.m3u8"]},
  2353. {"name":"IPTV3+","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226341/index.m3u8"]},
  2354. {"name":"IPTV5+","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226345/index.m3u8"]},
  2355. {"name":"IPTV6+","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226343/index.m3u8"]},
  2356. {"name":"IPTV8+","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226344/index.m3u8"]},
  2357. {"name":"浙江卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225798/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226199/index.m3u8"]},
  2358. {"name":"天津卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226204/index.m3u8"]},
  2359. {"name":"湖南卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225799/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226211/index.m3u8"]},
  2360. {"name":"东方卫视","urls":["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"]},
  2361. {"name":"江苏卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225800/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226200/index.m3u8"]},
  2362. {"name":"辽宁卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226201/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226210/index.m3u8"]},
  2363. {"name":"北京卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225796/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226222/index.m3u8"]},
  2364. {"name":"广东卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225803/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226216/index.m3u8"]},
  2365. {"name":"湖北卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226194/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226206/index.m3u8"]},
  2366. {"name":"山东卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226209/index.m3u8"]},
  2367. {"name":"深圳卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225801/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226205/index.m3u8"]},
  2368. {"name":"重庆卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226202/index.m3u8"]},
  2369. {"name":"安徽卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226196/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226203/index.m3u8"]},
  2370. {"name":"黑龙江卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225802/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226215/index.m3u8"]},
  2371. {"name":"熊猫频道","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226349/index.m3u8"]},
  2372. {"name":"湖南金鹰纪实","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226351/index.m3u8"]},
  2373. {"name":"上海纪实人文","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226230/index.m3u8"]},
  2374. {"name":"北京冬奥纪实","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226232/index.m3u8"]},
  2375. {"name":"湖南快乐垂钓","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226805/index.m3u8"]},
  2376. {"name":"湖南茶频道","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226808/index.m3u8"]},
  2377. {"name":"SiTV全纪实","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226580/index.m3u8"]},
  2378. {"name":"SiTV极速汽车","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226574/index.m3u8"]},
  2379. {"name":"SiTV极速汽车","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226583/index.m3u8"]},
  2380. {"name":"SiTV游戏风云","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226579/index.m3u8"]},
  2381. {"name":"SiTV都市剧场","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226581/index.m3u8"]},
  2382. {"name":"体育赛事","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226803/index.m3u8"]},
  2383. {"name":"精彩体育","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226010/index.m3u8"]},
  2384. {"name":"IPTV相声小品","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226346/index.m3u8"]},
  2385. {"name":"中央新影发现之旅","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226235/index.m3u8"]},
  2386. {"name":"中央新影老故事","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226236/index.m3u8"]},
  2387. {"name":"CCTV女性时尚","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226237/index.m3u8"]},
  2388. {"name":"中国教育1","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225753/index.m3u8"]},
  2389. {"name":"中国教育2","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225756/index.m3u8"]},
  2390. {"name":"中国教育3","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226226/index.m3u8"]},
  2391. {"name":"中国教育4","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226225/index.m3u8"]},
  2392. {"name":"中国交通","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226248/index.m3u8"]},
  2393. {"name":"CGTN","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225745/index.m3u8"]},
  2394. {"name":"东南卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225766/index.m3u8"]},
  2395. {"name":"东方卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225789/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225599/index.m3u8"]},
  2396. {"name":"云南卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225751/index.m3u8"]},
  2397. {"name":"兵团卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226214/index.m3u8"]},
  2398. {"name":"内蒙古卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225786/index.m3u8"]},
  2399. {"name":"北京卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225790/index.m3u8"]},
  2400. {"name":"南方卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226218/index.m3u8"]},
  2401. {"name":"厦门卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226219/index.m3u8"]},
  2402. {"name":"吉林卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225792/index.m3u8"]},
  2403. {"name":"四川卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225768/index.m3u8"]},
  2404. {"name":"天津卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225765/index.m3u8"]},
  2405. {"name":"宁夏卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225748/index.m3u8"]},
  2406. {"name":"安徽卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225773/index.m3u8"]},
  2407. {"name":"山东卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225771/index.m3u8"]},
  2408. {"name":"山西卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225763/index.m3u8"]},
  2409. {"name":"广东卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225757/index.m3u8"]},
  2410. {"name":"广西卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225770/index.m3u8"]},
  2411. {"name":"新疆卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225747/index.m3u8"]},
  2412. {"name":"江苏卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225746/index.m3u8"]},
  2413. {"name":"江西卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225764/index.m3u8"]},
  2414. {"name":"河北卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225750/index.m3u8"]},
  2415. {"name":"河南卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225767/index.m3u8"]},
  2416. {"name":"浙江卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225788/index.m3u8"]},
  2417. {"name":"海南卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225769/index.m3u8"]},
  2418. {"name":"深圳卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225752/index.m3u8"]},
  2419. {"name":"湖北卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225760/index.m3u8"]},
  2420. {"name":"湖南卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225787/index.m3u8"]},
  2421. {"name":"甘肃卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225754/index.m3u8"]},
  2422. {"name":"西藏卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226212/index.m3u8"]},
  2423. {"name":"贵州卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225793/index.m3u8"]},
  2424. {"name":"辽宁卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225772/index.m3u8"]},
  2425. {"name":"重庆卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225791/index.m3u8"]},
  2426. {"name":"陕西卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225821/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226322/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226326/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226331/index.m3u8","http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226457/index.m3u8"]},
  2427. {"name":"青海卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225794/index.m3u8"]},
  2428. {"name":"四川康巴卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226234/index.m3u8"]},
  2429. {"name":"山东教育卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226238/index.m3u8"]},
  2430. {"name":"吉林延边卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226220/index.m3u8"]},
  2431. {"name":"陕西农林卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226229/index.m3u8"]},
  2432. {"name":"青海安多卫视","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226228/index.m3u8"]},
  2433. {"name":"湖北休闲指南","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226247/index.m3u8"]},
  2434. {"name":"广东高尔夫","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226246/index.m3u8"]},
  2435. {"name":"吉林篮球","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226239/index.m3u8"]},
  2436. {"name":"足球","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226347/index.m3u8"]},
  2437. {"name":"台球","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226348/index.m3u8"]},
  2438. {"name":"栾坛春秋","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226245/index.m3u8"]},
  2439. {"name":"置业频道","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226241/index.m3u8"]},
  2440. {"name":"NNM家庭理财","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226244/index.m3u8"]},
  2441. {"name":"生态环境","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226243/index.m3u8"]},
  2442. {"name":"京视剧场","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226242/index.m3u8"]},
  2443. {"name":"上海哈哈炫动","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226213/index.m3u8"]},
  2444. {"name":"北京卡酷少儿","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225743/index.m3u8"]},
  2445. {"name":"广东嘉佳卡通","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226227/index.m3u8"]},
  2446. {"name":"江苏优漫卡通","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225795/index.m3u8"]},
  2447. {"name":"江苏财富天下","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226350/index.m3u8"]},
  2448. {"name":"湖南金鹰卡通","urls":["http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225744/index.m3u8"]}
  2449. ]},
  2450. {"group": "临时源九-022-01-27","channels": [{"name":"CCTV1","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226016/index.m3u8"]},
  2451. {"name":"CCTV2","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225588/index.m3u8"]},
  2452. {"name":"CCTV3","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226021/index.m3u8"]},
  2453. {"name":"CCTV4","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226007/index.m3u8"]},
  2454. {"name":"CCTV5","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226019/index.m3u8"]},
  2455. {"name":"CCTV5+","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225603/index.m3u8"]},
  2456. {"name":"CCTV6","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226010/index.m3u8"]},
  2457. {"name":"CCTV7","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225733/index.m3u8"]},
  2458. {"name":"CCTV8","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226008/index.m3u8"]},
  2459. {"name":"CCTV9","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225734/index.m3u8"]},
  2460. {"name":"CCTV10","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225730/index.m3u8"]},
  2461. {"name":"CCTV11","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225597/index.m3u8"]},
  2462. {"name":"CCTV12","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225731/index.m3u8"]},
  2463. {"name":"CCTV13","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226011/index.m3u8"]},
  2464. {"name":"CCTV14","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225732/index.m3u8"]},
  2465. {"name":"CCTV15","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225601/index.m3u8"]},
  2466. {"name":"CCTV16","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226100/index.m3u8"]},
  2467. {"name":"CCTV17","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225765/index.m3u8"]},
  2468. {"name":"湖南卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225610/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226053/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226045/index.m3u8"]},
  2469. {"name":"东南卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226079/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225620/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226041/index.m3u8"]},
  2470. {"name":"深圳卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225739/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226111/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226084/index.m3u8"]},
  2471. {"name":"广东卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226076/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226054/index.m3u8"]},
  2472. {"name":"江苏卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225613/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226099/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226017/index.m3u8"]},
  2473. {"name":"东方卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225735/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226082/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226031/index.m3u8"]},
  2474. {"name":"北京卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225728/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226064/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226020/index.m3u8"]},
  2475. {"name":"浙江卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225612/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226056/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226034/index.m3u8"]},
  2476. {"name":"吉林卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226047/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226035/index.m3u8"]},
  2477. {"name":"四川卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226096/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226081/index.m3u8"]},
  2478. {"name":"天津卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225740/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226073/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226052/index.m3u8"]},
  2479. {"name":"安徽卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226087/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226029/index.m3u8"]},
  2480. {"name":"山东卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226067/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226078/index.m3u8"]},
  2481. {"name":"江西卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226085/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226075/index.m3u8"]},
  2482. {"name":"河北卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226059/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225623/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226069/index.m3u8"]},
  2483. {"name":"河南卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226108/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226063/index.m3u8"]},
  2484. {"name":"海南卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226102/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225639/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226043/index.m3u8"]},
  2485. {"name":"湖北卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225627/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226088/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226046/index.m3u8"]},
  2486. {"name":"贵州卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226105/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225626/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226051/index.m3u8"]},
  2487. {"name":"重庆卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226062/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225618/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226066/index.m3u8"]},
  2488. {"name":"黑龙江卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226014/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226033/index.m3u8"]},
  2489. {"name":"上海纪实人文","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225738/index.m3u8"]},
  2490. {"name":"北京冬奥纪实","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225729/index.m3u8"]},
  2491. {"name":"NewTV东北热剧","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225741/index.m3u8"]},
  2492. {"name":"NewTV中国功夫","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225681/index.m3u8"]},
  2493. {"name":"NewTV军事评论","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225668/index.m3u8"]},
  2494. {"name":"NewTV军旅剧场","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225676/index.m3u8"]},
  2495. {"name":"NewTV农业致富","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225683/index.m3u8"]},
  2496. {"name":"NewTV动作电影","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225661/index.m3u8"]},
  2497. {"name":"NewTV古装剧场","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225663/index.m3u8"]},
  2498. {"name":"NewTV家庭剧场","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225677/index.m3u8"]},
  2499. {"name":"NewTV怡伴健康","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225673/index.m3u8"]},
  2500. {"name":"NewTV惊悚悬疑","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225665/index.m3u8"]},
  2501. {"name":"NewTV明星大片","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225664/index.m3u8"]},
  2502. {"name":"NewTV欢乐剧场","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225742/index.m3u8"]},
  2503. {"name":"NewTV武搏世界","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225680/index.m3u8"]},
  2504. {"name":"NewTV海外剧场","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225671/index.m3u8"]},
  2505. {"name":"NewTV潮妈辣婆","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225685/index.m3u8"]},
  2506. {"name":"NewTV炫舞未来","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225719/index.m3u8"]},
  2507. {"name":"NewTV爱情喜剧","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225669/index.m3u8"]},
  2508. {"name":"NewTV精品大剧","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225670/index.m3u8"]},
  2509. {"name":"NewTV精品纪录","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225672/index.m3u8"]},
  2510. {"name":"NewTV超级体育","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225715/index.m3u8"]},
  2511. {"name":"NewTV超级电影","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225717/index.m3u8"]},
  2512. {"name":"NewTV超级电视剧","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225716/index.m3u8"]},
  2513. {"name":"NewTV超级综艺","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225714/index.m3u8"]},
  2514. {"name":"NewTV金牌综艺","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225666/index.m3u8"]},
  2515. {"name":"黑莓动画","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225662/index.m3u8"]},
  2516. {"name":"黑莓电影","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225743/index.m3u8"]},
  2517. {"name":"黑莓电竞","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225675/index.m3u8"]},
  2518. {"name":"精品体育","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225674/index.m3u8"]},
  2519. {"name":"体育赛事","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225764/index.m3u8"]},
  2520. {"name":"CGTN","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225604/index.m3u8"]},
  2521. {"name":"CGTN纪录","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225602/index.m3u8"]},
  2522. {"name":"中国教育1","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225652/index.m3u8"]},
  2523. {"name":"中国教育4","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225783/index.m3u8"]},
  2524. {"name":"云南卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226049/index.m3u8"]},
  2525. {"name":"内蒙古卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225634/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226058/index.m3u8"]},
  2526. {"name":"宁夏卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225632/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226057/index.m3u8"]},
  2527. {"name":"山西卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225624/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226072/index.m3u8"]},
  2528. {"name":"广西卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226055/index.m3u8"]},
  2529. {"name":"新疆卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225635/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226048/index.m3u8"]},
  2530. {"name":"甘肃卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225633/index.m3u8"]},
  2531. {"name":"西藏卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225638/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226040/index.m3u8"]},
  2532. {"name":"辽宁卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225619/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226037/index.m3u8"]},
  2533. {"name":"陕西卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225625/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226060/index.m3u8"]},
  2534. {"name":"青海卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225628/index.m3u8","http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226032/index.m3u8"]},
  2535. {"name":"吉林延边卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226023/index.m3u8"]},
  2536. {"name":"四川康巴卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225660/index.m3u8"]},
  2537. {"name":"山东教育卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225655/index.m3u8"]},
  2538. {"name":"广东南方卫视上星","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226038/index.m3u8"]},
  2539. {"name":"新疆兵团卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226026/index.m3u8"]},
  2540. {"name":"青海安多卫视","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225659/index.m3u8"]},
  2541. {"name":"上海哈哈炫动","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225657/index.m3u8"]},
  2542. {"name":"北京卡酷少儿","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225654/index.m3u8"]},
  2543. {"name":"江苏优漫卡通","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225656/index.m3u8"]},
  2544. {"name":"湖南金鹰卡通","urls":["http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225653/index.m3u8"]}
  2545. ]},
  2546. {"group": "临时源十-022/03/12","channels": [{"name":"凤凰中文","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227222/index.m3u8?servicetype=1"]},
  2547. {"name":"凤凰资讯","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227226/index.m3u8?servicetype=1"]},
  2548. {"name":"CCTV1","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225829/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227014/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226599/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225922/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226908/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226995/index.m3u8?servicetype=1"]},
  2549. {"name":"CCTV2","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225800/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226795/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225923/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226915/index.m3u8?servicetype=1"]},
  2550. {"name":"CCTV3","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227055/index.m3u8?servicetype=1"]},
  2551. {"name":"CCTV4","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225802/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226968/index.m3u8?servicetype=1"]},
  2552. {"name":"CCTV5","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227170/index.m3u8?servicetype=1"]},
  2553. {"name":"CCTV5+","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225821/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225939/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226919/index.m3u8?servicetype=1"]},
  2554. {"name":"CCTV6","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227137/index.m3u8?servicetype=1"]},
  2555. {"name":"CCTV7","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225805/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225927/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226972/index.m3u8?servicetype=1"]},
  2556. {"name":"CCTV8","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227174/index.m3u8?servicetype=1"]},
  2557. {"name":"CCTV9","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225820/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226923/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225929/index.m3u8?servicetype=1"]},
  2558. {"name":"CCTV10","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225814/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225931/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226976/index.m3u8?servicetype=1"]},
  2559. {"name":"CCTV11","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225815/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226927/index.m3u8?servicetype=1"]},
  2560. {"name":"CCTV12","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225816/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225932/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226931/index.m3u8?servicetype=1"]},
  2561. {"name":"CCTV13","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225817/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226985/index.m3u8?servicetype=1"]},
  2562. {"name":"CCTV14","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225819/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225933/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227086/index.m3u8?servicetype=1"]},
  2563. {"name":"CCTV15","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225818/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226989/index.m3u8?servicetype=1"]},
  2564. {"name":"CCTV16","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227148/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227125/index.m3u8?servicetype=1"]},
  2565. {"name":"CCTV17","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226990/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226986/index.m3u8?servicetype=1"]},
  2566. {"name":"CGTN","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225822/index.m3u8?servicetype=1"]},
  2567. {"name":"CGTN","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226980/index.m3u8?servicetype=1"]},
  2568. {"name":"CGTN俄语","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227103/index.m3u8?servicetype=1"]},
  2569. {"name":"CGTN法语","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227220/index.m3u8?servicetype=1"]},
  2570. {"name":"CGTN纪录","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225813/index.m3u8?servicetype=1"]},
  2571. {"name":"CGTN西语","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227238/index.m3u8?servicetype=1"]},
  2572. {"name":"CGTN阿语","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227224/index.m3u8?servicetype=1"]},
  2573. {"name":"中国天气","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227210/index.m3u8?servicetype=1"]},
  2574. {"name":"中国教育1","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225869/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227067/index.m3u8?servicetype=1"]},
  2575. {"name":"中国教育2","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227206/index.m3u8?servicetype=1"]},
  2576. {"name":"中国教育4","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227050/index.m3u8?servicetype=1"]},
  2577. {"name":"中国教育4","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227192/index.m3u8?servicetype=1"]},
  2578. {"name":"湖南卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225827/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221226924/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227232/index.m3u8?servicetype=1"]},
  2579. {"name":"东南卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227040/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227156/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221225833/index.m3u8?servicetype=1"]},
  2580. {"name":"海峡卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227198/index.m3u8?servicetype=1"]},
  2581. {"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/3221225938/index.m3u8?servicetype=1","http://39.135.55.105:6610/PLTV/88888888/224/3221227242/index.m3u8?servicetype=1"]},
  2582. {"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"]},
  2583. {"name":"广东南方卫视上星","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227214/index.m3u8?servicetype=1"]},
  2584. {"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"]},
  2585. {"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"]},
  2586. {"name":"云南卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227181/index.m3u8?servicetype=1"]},
  2587. {"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"]},
  2588. {"name":"厦门卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226781/index.m3u8?servicetype=1"]},
  2589. {"name":"吉林卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227099/index.m3u8?servicetype=1"]},
  2590. {"name":"四川卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227182/index.m3u8?servicetype=1"]},
  2591. {"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"]},
  2592. {"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"]},
  2593. {"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"]},
  2594. {"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"]},
  2595. {"name":"河北卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227063/index.m3u8?servicetype=1"]},
  2596. {"name":"河南卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227095/index.m3u8?servicetype=1"]},
  2597. {"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"]},
  2598. {"name":"海南卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227216/index.m3u8?servicetype=1"]},
  2599. {"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"]},
  2600. {"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"]},
  2601. {"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"]},
  2602. {"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"]},
  2603. {"name":"重庆卫视","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227240/index.m3u8?servicetype=1"]},
  2604. {"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"]},
  2605. {"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"]},
  2606. {"name":"北京冬奥纪实","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225944/index.m3u8?servicetype=1"]},
  2607. {"name":"江西陶瓷","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227234/index.m3u8?servicetype=1"]},
  2608. {"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"]},
  2609. {"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"]},
  2610. {"name":"熊猫频道","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226715/index.m3u8?servicetype=1"]},
  2611. {"name":"SiTV全纪实","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227083/index.m3u8?servicetype=1"]},
  2612. {"name":"SiTV动漫秀场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227071/index.m3u8?servicetype=1"]},
  2613. {"name":"SiTV极速汽车","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227186/index.m3u8?servicetype=1"]},
  2614. {"name":"SiTV欢笑剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227145/index.m3u8?servicetype=1"]},
  2615. {"name":"SiTV游戏风云","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227075/index.m3u8?servicetype=1"]},
  2616. {"name":"SiTV生活时尚","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227091/index.m3u8?servicetype=1"]},
  2617. {"name":"SiTV都市剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227204/index.m3u8?servicetype=1"]},
  2618. {"name":"NewTV中国功夫","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225896/index.m3u8?servicetype=1"]},
  2619. {"name":"NewTV军事评论","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225890/index.m3u8?servicetype=1"]},
  2620. {"name":"NewTV军旅剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225887/index.m3u8?servicetype=1"]},
  2621. {"name":"NewTV动作电影","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225879/index.m3u8?servicetype=1"]},
  2622. {"name":"NewTV古装剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225880/index.m3u8?servicetype=1"]},
  2623. {"name":"NewTV家庭剧场","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225882/index.m3u8?servicetype=1"]},
  2624. {"name":"NewTV怡伴健康","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225883/index.m3u8?servicetype=1"]},
  2625. {"name":"NewTV惊悚悬疑","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225885/index.m3u8?servicetype=1"]},
  2626. {"name":"NewTV明星大片","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225893/index.m3u8?servicetype=1"]},
  2627. {"name":"NewTV武搏世界","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225895/index.m3u8?servicetype=1"]},
  2628. {"name":"NewTV潮妈辣婆","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226107/index.m3u8?servicetype=1"]},
  2629. {"name":"NewTV爱情喜剧","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225877/index.m3u8?servicetype=1"]},
  2630. {"name":"NewTV精品体育","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225886/index.m3u8?servicetype=1"]},
  2631. {"name":"NewTV精品大剧","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225889/index.m3u8?servicetype=1"]},
  2632. {"name":"NewTV精品纪录","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225888/index.m3u8?servicetype=1"]},
  2633. {"name":"NewTV金牌综艺","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225884/index.m3u8?servicetype=1"]},
  2634. {"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"]},
  2635. {"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"]},
  2636. {"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"]},
  2637. {"name":"广东嘉佳卡通","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227230/index.m3u8?servicetype=1"]},
  2638. {"name":"江苏优漫卡通","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225874/index.m3u8?servicetype=1"]},
  2639. {"name":"湖南金鹰卡通","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226959/index.m3u8?servicetype=1"]},
  2640. {"name":"黑莓动画","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225878/index.m3u8?servicetype=1"]},
  2641. {"name":"黑莓电影","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221225891/index.m3u8?servicetype=1"]},
  2642. {"name":"百视通剧集1","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226692/index.m3u8?servicetype=1"]},
  2643. {"name":"百视通剧集2","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226754/index.m3u8?servicetype=1"]},
  2644. {"name":"百视通剧集3","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227045/index.m3u8?servicetype=1"]},
  2645. {"name":"百视通剧集4","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227134/index.m3u8?servicetype=1"]},
  2646. {"name":"百视通动画1","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226732/index.m3u8?servicetype=1"]},
  2647. {"name":"百视通动画2","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226736/index.m3u8?servicetype=1"]},
  2648. {"name":"百视通动画3","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226741/index.m3u8?servicetype=1"]},
  2649. {"name":"百视通动画4","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226743/index.m3u8?servicetype=1"]},
  2650. {"name":"百视通动画5","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227036/index.m3u8?servicetype=1"]},
  2651. {"name":"百视通电影1","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226708/index.m3u8?servicetype=1"]},
  2652. {"name":"百视通电影2","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221226712/index.m3u8?servicetype=1"]},
  2653. {"name":"百视通电影3","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227130/index.m3u8?servicetype=1"]},
  2654. {"name":"百视通电影4 8M720","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227037/index.m3u8?servicetype=1"]},
  2655. {"name":"百视通电竞","urls":["http://39.135.55.105:6610/PLTV/88888888/224/3221227033/index.m3u8?servicetype=1"]}
  2656. ]}
  2657. ],
  2658. //解X设置
  2659. "parses":[
  2660. {"name":"解析聚合","type":3,"url":"Demo"},
  2661. {"name":"Json并发","type":2,"url":"Parallel"},
  2662. //{"name":"瓜瓜优选","type":2,"url":"Preference"},
  2663. {"name":"Json轮询","type":2,"url":"Sequence"},
  2664. //{"name":"瓜瓜免嗅","type":2,"url":"Cucumber"},
  2665. //
  2666. {"name":"1","type":1,"url":"https://svip.msdv.cn/api/?key=YAUhZt7TmZg2BUTQC2&url="},
  2667. {"name":"2","type":0,"url":"http://ts.yjhan.com:8090/api/?key=kYMcDdn4gh3AAxVXbQ&url="},
  2668. {"name":"3","type":1,"url":"http://23.224.174.74:5577/home/api?type=ys&uid=19722&key=aghknrsvxCDEGNRSUZ&url="},
  2669. {"name":"4","type":0,"url":"https://play.tkys.tv/jh/longteng.php/?url="},
  2670. {"name":"5","type":1,"url":"http://cygc.xyz:88/api/?key=MhH2xWPjH3ZX2n3Ddv&url="},
  2671. {"name":"6","type":1,"url":"https://api.parwix.com:4433/analysis/json/?uid=556&my=acfhjoprtuvxKLMQ12&url="},
  2672. {"name":"7","type":1,"url":"https://ysjx.jikezhuji.com/api/?key=80gdewY7tQriIwA6hw&url="},
  2673. {"name":"8","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1931000&key=gktuvyzABEORSYZ135&url="},
  2674. {"name":"影阅阁1","type":1,"url":"https://json.pangujiexi.com:12345/json.php?url="},
  2675. {"name":"parwix","type":0,"url":"https://jx.parwix.com:4433/player/?url="},
  2676. //
  2677. {"name":"大熊影视","type":1,"url":"http://42.157.128.85:880/analysis/json/?uid=1735&my=bcdgkmpvxADJLNUYZ8&url=","ext":{"flag":["youku","优酷","qq","腾讯","qiyi","爱奇艺","奇艺"]}},
  2678. {"name":"菜鸟追剧1","type":1,"url":"http://106.52.51.138:52013/lt.php?url=","ext":{"flag":["ltnb"]}},
  2679. {"name":"小白动漫","type":1,"url":"http://121.62.60.222:1314/lt.php?url=","ext":{"flag":["ltnb","longteng"]}},
  2680. {"name":"300看世界2","type":1,"url":"https://jx.300ys.xyz/json/m3u8.php/?url=","ext":{"flag":["ftqp4","xuanfeng"]}},
  2681. {"name":"300看世界3","type":1,"url":"http://jx.300ys.xyz/json/m3u8.php/?url=","ext":{"flag":["zy1080","xkys"]}},
  2682. {"name":"爱看美剧1","type":1,"url":"https://play.akmeiju.cc:553/akmeiju.php?url=","ext":{"flag":["aikan"]}},
  2683. {"name":"爱西西","type":1,"url":"http://jx.laodi.xyz:6699/api.php/user/jx?uid=4&ldkey=BLsUKYVZiWdmQc7bbpT3&url=","ext":{"flag":["laodim3u8"]}},
  2684. {"name":"白嫖影视","type":1,"url":"http://ts.yjhan.com:8090/api/?key=Y4GefMCIQJz23mc06R&url=","ext":{"flag":["CL4K"]}},
  2685. {"name":"段友影视","type":1,"url":"http://ts.yjhan.com:8090/api/?key=DSQFgXdmj9xkDyiXdr&url=","ext":{"flag":["CL4K"]}},
  2686. {"name":"爱看美剧","type":1,"url":"http://ts.yjhan.com:8090/api/?key=P6XfOl9hD3LpqOFdRJ&url=","ext":{"flag":["CL4K"]}},
  2687. {"name":"天诚影视1","type":1,"url":"https://yun.nbjx.vip:4399/json/?uid=6&tokey=befhmoqFHMOQRTUXZ7&url=","ext":{"flag":["qiyi","爱奇艺","奇艺"]}},
  2688. {"name":"300看世界","type":1,"url":"https://jx.300ys.xyz/json/jh.php/?url=","ext":{"flag":["youku","优酷","qiyi","爱奇艺","奇艺","renrenmi","qq","腾讯","letv","乐视"]}},
  2689. {"name":"琳琅影院","type":1,"url":"http://ts.yjhan.com:8090/api/?key=njU0bfiF05eODFfktq&url=","ext":{"flag":["CL4K"]}},
  2690. {"name":"爱酷影视","type":1,"url":"https://yun.nbjx.vip:4399/json/?uid=5&tokey=ikmnorsvxyzCFKQU59&url=","ext":{"flag":["qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","letv","乐视"]}},
  2691. {"name":"小白动漫1","type":1,"url":"https://ltnb.jeeves.vip/home/api?type=ys&uid=2753644&key=bdgipszEOPQUXZ3569&url=","ext":{"flag":["ltnb","longteng"]}},
  2692. {"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"]}},
  2693. {"name":"饭后电影","type":1,"url":"http://ts.yjhan.com:8090/api/?key=yNSLsBLOaUkKp2kZ6i&url=","ext":{"flag":["CL4K"]}},
  2694. {"name":"麻瓜视频","type":1,"url":"https://kuba.renrenmi.cc:2266/api/?key=a2bSwx5iAGx1g2qn4h&url=","ext":{"flag":["renrenmi"]}},
  2695. {"name":"零刻影院","type":1,"url":"http://ys.ling00.cn/json/?url=","ext":{"flag":["CL4K"]}},
  2696. {"name":"300看世界","type":1,"url":"https://languangyingshiziyuan.1080zy.top/longteng.php/?url=","ext":{"flag":["ltnb"]}},
  2697. {"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","爱奇艺","奇艺"]}},
  2698. {"name":"爱酷影视6","type":1,"url":"https://jb.vjiangbei.com/home/api?type=ys&uid=646808&key=gklpqrtwyDIJKMP467&url=","ext":{"flag":["qq","腾讯","letv","乐视","youku","优酷"]}},
  2699. {"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","乐视"]}},
  2700. {"name":"思乐影视1","type":1,"url":"https://jb.vjiangbei.com/home/api?type=ys&uid=2534396&key=ejovwzABDKTUXY1357&url=","ext":{"flag":["mgtv","芒果","qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷"]}},
  2701. {"name":"琅琊影视","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=1589472&key=aehjpzAHILOPQRU456&url=","ext":{"flag":["ltnb"]}},
  2702. {"name":"DC影视2","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=461939&key=adfgilmotCEPRSXY06&url=","ext":{"flag":["ltnb"]}},
  2703. {"name":"抹茶猪","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=1136443&key=bhijopryzBJKLMSUX8&url=","ext":{"flag":["ltnb"]}},
  2704. {"name":"爱酷影视9","type":1,"url":"https://jx.zhanlangbu.com/json.php/?url=","ext":{"flag":["xueren"]}},
  2705. {"name":"思乐影视","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=1427917&key=bdfilpqsxzDEGHRW04&url=","ext":{"flag":["ltnb"]}},
  2706. {"name":"大熊影视","type":1,"url":"https://jf.1080p.icu/home/api?type=dsp&uid=147565&key=adilmopuBEFJNUV067&url=","ext":{"flag":["wuduzy"]}},
  2707. {"name":"南府追剧1","type":1,"url":"https://jx.ncxmid.cn/sb/?url=","ext":{"flag":["qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷"]}},
  2708. {"name":"绿箭影视","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=803828&key=cdefimpzDQTUW23679&url=","ext":{"flag":["ltnb"]}},
  2709. {"name":"小白动漫2","type":1,"url":"https://ltjx.jeeves.vip/home/api?type=ys&uid=1284948&key=bdehjlqtDEHJPZ0156&url=","ext":{"flag":["ltnb","longteng"]}},
  2710. {"name":"粉象视界","type":1,"url":"http://api.vip123kan.vip/?url=","ext":{"flag":["qq","腾讯","mgtv","芒果","youku","优酷"]}},
  2711. {"name":"琅琊影视8","type":1,"url":"https://jf.96ym.cn/api/?key=13FXcA46Nzg4QeFHbq&url=","ext":{"flag":["ziqie","ltnb","youku","优酷","qiyi","爱奇艺","奇艺","qq","腾讯","letv","乐视"]}},
  2712. {"name":"虎猫视频","type":1,"url":"https://humaosp.com/json.php?url=","ext":{"flag":["qq","腾讯"]}},
  2713. {"name":"天诚影视2","type":1,"url":"https://svip.renrenmi.cc:2222/api/?key=hWip8WQvRg7oniSF0M&url=","ext":{"flag":["qiyi","爱奇艺","奇艺"]}},
  2714. {"name":"DC影视","type":1,"url":"https://jb.vjiangbei.com/home/api?type=ys&uid=2219260&key=bcdjqBEFGLMPW01457&url=","ext":{"flag":["ziqie","ltnb","qq","腾讯"]}},
  2715. {"name":"南府追剧1","type":1,"url":"https://vvip.muxvip.com:8866/api/?key=xJvC19KWkxoyQO71hk&url=","ext":{"flag":["muxm3u8"]}},
  2716. {"name":"粉象视界1","type":1,"url":"https://www.xinkanke.com/jiexi/go.php?url=","ext":{"flag":["ltnb"]}},
  2717. {"name":"南府影视","type":1,"url":"https://vvip.muxvip.com:8866/api/?key=xVIWNjOvnxgmvrPgXO&url=","ext":{"flag":["muxm3u8"]}},
  2718. {"name":"大熊影视1","type":1,"url":"https://a.dxzj88.com/jianghujx/?url=","ext":{"flag":["qq","腾讯","youku","优酷","qiyi","爱奇艺","奇艺","bilibili","哔哩哔哩","哔哩","mgtv","芒果"]}},
  2719. {"name":"粉象视界1","type":1,"url":"https://json.pangujiexi.com:12345/json.php?url=","ext":{"flag":["youku","优酷","qq","腾讯","qiyi","爱奇艺","奇艺","mgtv","芒果"]}},
  2720. {"name":"手指","type":1,"url":"https://a.dxzj88.com/ddzy/dd.php?url=","ext":{"flag":["duoduozy"]}},
  2721. {"name":"300看世界","type":1,"url":"https://jx.300ys.xyz/jiexi/v.php/?url=","ext":{"flag":["qiyi","爱奇艺","奇艺","qq","腾讯","mgtv","芒果","letv","乐视"]}},
  2722. {"name":"爱酷影视5","type":1,"url":"https://xrjson.qd234.cn/home/api?type=ys&uid=127899&key=aefhilptwADEKNSV46&url=","ext":{"flag":["qq","腾讯","qiyi","爱奇艺","奇艺","rx","letv","乐视","youku","优酷"]}},
  2723. {"name":"爱酷影视7","type":1,"url":"https://cs.024zs.com:4433/api/?key=aFWsEm27J8d2sWd0ML&url=","ext":{"flag":["qq","腾讯","letv","乐视","youku","优酷"]}},
  2724. {"name":"粉象视界1","type":1,"url":"https://json.hfyrw.com/mao.go?url=","ext":{"flag":["qq","腾讯","youku","优酷","qiyi","爱奇艺","奇艺","mgtv","芒果","letv","乐视"]}},
  2725. {"name":"南府追剧","type":1,"url":"https://app.omofun.net/m3u8/omofun.php?id=","ext":{"flag":["dmplay"]}},
  2726. {"name":"六把刀影院","type":1,"url":"https://jx.xmau.cn/home/api?type=ys&uid=117834&key=abdehjstwxIJLOPU59&url=","ext":{"flag":["qq","腾讯","qiyi","爱奇艺","奇艺"]}},
  2727. {"name":"康耀影视4","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=8153438&key=dfjkmopxHJKNXZ2389&url=","ext":{"flag":["qiyi","爱奇艺","奇艺","youku","优酷","letv","乐视"]}},
  2728. {"name":"天诚影视4","type":1,"url":"https://svip.cygc.xyz/api/?key=LHIDJlDFp1lPagfFwQ&url=","ext":{"flag":["qiyi","爱奇艺","奇艺"]}},
  2729. {"name":"初心影视","type":1,"url":"https://cs.024zs.com:4433/api/?key=ZGIAzc1y86fEENqYWb&url=","ext":{"flag":["qq","腾讯"]}},
  2730. {"name":"爱酷影视1","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=8459535&key=efiknotzFHKLQSVX59&url=","ext":{"flag":["qq","腾讯","qiyi","爱奇艺","奇艺","letv","乐视"]}},
  2731. {"name":"叮当影视1","type":1,"url":"http://dt.hwh.ink/home/api?type=ys&uid=1297351&key=acdfklopqvwyKLOT39&url=","ext":{"flag":["qiyi","爱奇艺","奇艺","ltnb","renrenmi","qq","腾讯","mgtv","芒果","youku","优酷","letv","乐视"]}},
  2732. {"name":"天诚影视3","type":1,"url":"https://vvip.muxvip.com:8866/api/?key=7wk1FnMRDwAVTPDNAM&url=","ext":{"flag":["qiyi","爱奇艺","奇艺"]}},
  2733. {"name":"大熊影视","type":1,"url":"http://a.dxzj88.com/ddzy/dd.php?url=","ext":{"flag":["duoduozy"]}},
  2734. {"name":"蜜蜂影视","type":1,"url":"http://23.224.174.74:5577/home/api?type=ys&uid=19722&key=aghknrsvxCDEGNRSUZ&url=","ext":{"flag":["qiyi","爱奇艺","奇艺","pptv","PPTV","qq","腾讯"]}},
  2735. {"name":"段友影视1","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=998036&key=afhlnuvzDJLMOX3689&url=","ext":{"flag":["qq","腾讯"]}},
  2736. {"name":"粉象视界5","type":1,"url":"https://vip.xfyun.one/home/api?type=ys&uid=2581923&key=aefiklotwzCEFHJO48&url=","ext":{"flag":["xfyun"]}},
  2737. {"name":"蜜蜂影视4","type":1,"url":"https://xrjson.qd234.cn/home/api?type=ys&uid=366750&key=afgrstxFGHJKLMQVX1&url=","ext":{"flag":["ltnb","xueren","renrenmi"]}},
  2738. {"name":"段友影视","type":1,"url":"https://api.qilin.best/home/api?type=ys&uid=2343358&key=cekpsuvxJKNOV34789&url=","ext":{"flag":["qq","腾讯"]}},
  2739. {"name":"菜鸟追剧","type":1,"url":"https://apis.jxcxin.cn/api/jx?url=","ext":{"flag":["qq","腾讯","mgtv","芒果"]}},
  2740. {"name":"天诚影视5","type":1,"url":"http://json.1920lgzy.top/api/?key=K6ROZoQ9Y5FxzkdgTT&url=","ext":{"flag":["1920l","qiyi","爱奇艺","奇艺"]}},
  2741. {"name":"六把刀影院","type":1,"url":"https://vip.aiaine.com/api/?key=pJiKdUKoatLiVha0el&url=","ext":{"flag":["miaoparty","miaoparty3"]}},
  2742. {"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","芒果"]}},
  2743. {"name":"饭后电影1","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","芒果"]}},
  2744. {"name":"天诚影视","type":1,"url":"http://jf.tcspvip.com:246/api/?key=Yz4WsVTuG4PaM07i0f&url=","ext":{"flag":["1920l","qiyi","爱奇艺","奇艺"]}},
  2745. {"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","芒果"]}},
  2746. {"name":"4K影院","type":1,"url":"https://www.aiaine.com/api/?key=e4keFpymfY5keNsavC&url=","ext":{"flag":["qq","腾讯","qiyi","爱奇艺","奇艺","pptv","PPTV","mgtv","芒果","youku","优酷"]}},
  2747. {"name":"益达影院1","type":1,"url":"https://ltnb.jeeves.vip/home/api?type=ys&uid=2509623&key=glnpyADKLMNOTU0249&url=","ext":{"flag":["ltnb","ziqie"]}},
  2748. {"name":"小极影视","type":1,"url":"https://jx.xiaoysw1.com/appjson/lt.php?url=","ext":{"flag":["ltnb"]}},
  2749. {"name":"独播社","type":1,"url":"https://ltnb.jeeves.vip/home/api?type=ys&uid=2492729&key=bkmopwEFMNQSUWXZ67&url=","ext":{"flag":["ltnb","ziqie"]}},
  2750. //
  2751. {"name":"灵狐影视","type":1,"url":"https://api.parwix.com:4433/analysis/json/?uid=84&my=gijkmnouvxyFHPYZ28&url="},
  2752. {"name":"黄河影视","type":1,"url":"http://jx.ledu8.cn/api/?key=P8QSgO61p1MpHV2ALn&url="},
  2753. {"name":"Vip影院1","type":1,"url":"https://api.zakkpa.com:8888/analysis/json/?uid=39&my=bdfinvyBCDEJKUY089&url="},
  2754. {"name":"绿箭影视2","type":1,"url":"https://json.pangujiexi.com:12345/json.php?url="},
  2755. {"name":"萌蛋蛋","type":1,"url":"https://svip.renrenmi.cc:2222/api/?key=LorFAswZzr3sGNI0YU&url=","t":119,"i":"check at 2021-12-28 19:44:48"},
  2756. {"name":"影阅阁2","type":1,"url":"https://svip.renrenmi.cc:2222/api/?key=82KErJogweliHPt7Yp&url=","t":123,"i":"check at 2021-12-28 19:44:31"},
  2757. {"name":"看剧吧","type":1,"url":"https://svip.renrenmi.cc:2222/api/?key=fI3YQ3vxF5uREfNpDU&url=","t":156,"i":"check at 2021-12-28 19:45:41"},
  2758. {"name":"蓝光视频","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1931000&key=gktuvyzABEORSYZ135&url=","t":156,"i":"check at 2021-12-28 19:44:22"},
  2759. {"name":"绿箭影视","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=7743764&key=acgjlopuxACEHJLT48&url=","t":166,"i":"check at 2021-12-28 19:44:44"},
  2760. {"name":"麻瓜视频","type":1,"url":"https://api.parwix.com:4433/analysis/json/?uid=1735&my=egkqvxzBEHPQSUWX28&url=","t":170,"i":"check at 2021-12-28 19:44:04"},
  2761. {"name":"南府影视","type":1,"url":"http://play.szbodankyy.com/cnmb111/?url=","t":186,"i":"check at 2021-12-28 19:44:36"},
  2762. {"name":"小强TV","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=867242&key=acjksAGHJMPQTY3567&url=","t":190,"i":"check at 2021-12-28 19:44:17"},
  2763. {"name":"雨果影视","type":1,"url":"http://103.40.246.5:6881/ijsonononxxt/?url=","t":194,"i":"check at 2021-12-28 19:44:29"},
  2764. {"name":"DC影视","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=7665652&key=dglmnwEFILMOPRW056&url=","t":206,"i":"check at 2021-12-28 19:44:09"},
  2765. {"name":"影阅阁3","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=594615&key=bcehpqtxCEGKMT0248&url=","t":236,"i":"check at 2021-12-28 19:44:31"},
  2766. {"name":"筋斗云","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1494542&key=ijmqvwxABEHILMOT48&url=","t":282,"i":"check at 2021-12-28 19:44:44"},
  2767. {"name":"艾特影视","type":1,"url":"http://159.75.45.225:12588/?url=","t":319,"i":"check at 2021-12-28 19:45:21"},
  2768. {"name":"4K影院1","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1095368&key=cdgjpsuDFLNRTUVY03&url=","t":335,"i":"check at 2021-12-28 19:45:32"},
  2769. {"name":"追剧吧","type":1,"url":"https://www.lengyue.app/hdsfajdkljlasjklsaj/?url=","t":356,"i":"check at 2021-12-28 19:44:09"},
  2770. {"name":"Yoyo","type":1,"url":"http://47.100.138.210:91/home/api?type=ys&uid=1947441&key=bcfgjmuwCEORSVX237&url=","t":367,"i":"check at 2021-12-28 19:44:34"},
  2771. {"name":"追剧吧3","type":1,"url":"http://47.100.138.210:91/home/api?type=ys&uid=715391&key=bdltvyACHKLQX01789&url=","t":384,"i":"check at 2021-12-28 19:44:15"},
  2772. {"name":"阿姨追剧","type":1,"url":"http://47.100.138.210:91/home/api?type=ys&uid=2867314&key=ntyzDEGHPQVW234789&url=","t":392,"i":"check at 2021-12-28 19:45:01"},
  2773. {"name":"手指影视","type":1,"url":"http://a.dxzj88.com/jhjson/?url=","t":434,"i":"check at 2021-12-28 19:44:19"},
  2774. {"name":"二九影视","type":1,"url":"http://47.94.137.151:8089/?url=","t":450,"i":"check at 2021-12-28 19:45:29"},
  2775. {"name":"黄河影视","type":1,"url":"http://jx.ledu8.cn/api/?key=P8QSgO61p1MpHV2ALn&url=","t":450,"i":"check at 2021-12-28 19:44:01"},
  2776. {"name":"雨果影视1","type":1,"url":"https://json.nbjx.vip:4399/?wap=0&url=","t":459,"i":"check at 2021-12-28 19:44:30"},
  2777. {"name":"优视影视","type":1,"url":"http://ccc.ysys.asia/jx/?id=2&url=","t":481,"i":"check at 2021-12-28 19:44:55"},
  2778. {"name":"星影相随1","type":1,"url":"https://xt.gbxy.net.cn/api/?key=7gAmfK5typSVsg2Qnr&url=","t":497,"i":"check at 2021-12-28 19:44:13"},
  2779. {"name":"抹茶猪","type":1,"url":"https://svip.renrenmi.cc:2222/api/?key=81gnuXCwZK9IZxt8bU&url=","t":517,"i":"check at 2021-12-28 19:44:15"},
  2780. {"name":"筋斗云1","type":1,"url":"https://fast.rongxingvr.cn:8866/api/?key=nrR7koAyq9ajKId4nC&url=","t":552,"i":"check at 2021-12-28 19:44:46"},
  2781. {"name":"看剧吧1","type":1,"url":"http://47.100.138.210:91/home/api?type=ys&uid=243653&key=kqswxyABGHKLQSV127&url=","t":559,"i":"check at 2021-12-28 19:45:42"},
  2782. {"name":"麻瓜视频1","type":1,"url":"https://jhjx.ptygx.com/xttyjx.php/?url=","t":598,"i":"check at 2021-12-28 19:44:16"},
  2783. {"name":"看剧吧2","type":1,"url":"https://fast.rongxingvr.cn:8866/api/?key=G0KF039jDQWlMHMf5z&url=","t":618,"i":"check at 2021-12-28 19:45:43"},
  2784. {"name":"星辰视频","type":1,"url":"https://cs.024zs.com:4433/api/?key=2yqrXys9F3TcDiRz3k&url=","t":629,"i":"check at 2021-12-28 19:45:37"},
  2785. {"name":"阿姨追剧1","type":1,"url":"https://cs.024zs.com:4433/api/?key=P3lAZ3QJlv6KBNNLHM&url=","t":673,"i":"check at 2021-12-28 19:45:16"},
  2786. {"name":"爱影视","type":1,"url":"http://json.iqtv.tv/json.php?id=syhdjjjelxu66&url=","t":709,"i":"check at 2021-12-28 19:45:05"},
  2787. {"name":"影阅阁","type":1,"url":"http://api1.json.vin:4433/api/?key=WPDh6vf0aT0ahepWzW&url=","t":721,"i":"check at 2021-12-28 19:44:27"},
  2788. {"name":"神马影院","type":1,"url":"https://jhpc.manduhu.com/j1217.php?url=","t":731,"i":"check at 2021-12-28 19:44:38"},
  2789. {"name":"瑞丰资源","type":1,"url":"https://cs.024zs.com:4433/api/?key=BKJ8LHmu8n9SD4Tou7&url=","t":783,"i":"check at 2021-12-28 19:45:14"},
  2790. {"name":"阿姨追剧3","type":1,"url":"http://json.qd234.cn/home/api?type=ys&uid=353067&key=bghmnoxBIKORUV1269&url=","t":826,"i":"check at 2021-12-28 19:45:37"},
  2791. {"name":"疯狂看","type":1,"url":"https://a.zhuijula.top/yun_api.php?url=","t":877,"i":"check at 2021-12-28 19:45:25"},
  2792. {"name":"Yoyo1","type":1,"url":"https://json.legendwhb.cn/znjson.php/?url=","t":906,"i":"check at 2021-12-28 19:44:34"},
  2793. {"name":"灵狐影视","type":1,"url":"https://api.parwix.com:4433/analysis/json/?uid=84&my=gijkmnouvxyFHPYZ28&url="},
  2794. {"name":"黄河影视","type":1,"url":"http://jx.ledu8.cn/api/?key=P8QSgO61p1MpHV2ALn&url="},
  2795. {"name":"Vip影院1","type":1,"url":"https://api.zakkpa.com:8888/analysis/json/?uid=39&my=bdfinvyBCDEJKUY089&url="},
  2796. {"name":"瑞丰资源","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1285201&key=bcikqtwxyADEGKUX36&url="},
  2797. {"name":"绿箭影视2","type":1,"url":"https://json.pangujiexi.com:12345/json.php?url="},
  2798. {"name":"筋斗云","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1494542&key=ijmqvwxABEHILMOT48&url="},
  2799. {"name":"绿箭影视1","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=7743764&key=acgjlopuxACEHJLT48&url="},
  2800. {"name":"久九影视","type":1,"url":"https://json.hfyrw.com/mao.go?url="},
  2801. {"name":"蓝光视频","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1931000&key=gktuvyzABEORSYZ135&url="},
  2802. {"name":"4K影院1","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1095368&key=cdgjpsuDFLNRTUVY03&url="},
  2803. {"name":"益达影院","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=123503&key=fgkqryzDEFLNQSTW69&url="},
  2804. {"name":"无名","type":1,"url":"https://api.zakkpa.com:8888/analysis/json/?uid=91&my=gjksuvCHIJLRS01268&url="},
  2805. {"name":"DC影视","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=7665652&key=dglmnwEFILMOPRW056&url="},
  2806. {"name":"抹茶猪","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=1525223&key=fhikpsvBCDFHJOSUZ8&url="},
  2807. {"name":"麻瓜视频","type":1,"url":"https://api.parwix.com:4433/analysis/json/?uid=1735&my=cejkmnuvyBEFINR056&url="},
  2808. {"name":"追剧吧2","type":1,"url":"https://svip.spchat.top/api/?key=SAl7tLs3Zzu5alSNtz&url="},
  2809. {"name":"看剧吧1","type":1,"url":"https://supervip.rongxingvr.cn:8866/api/?key=nKn4eO8giUKSe8jxZU&url="},
  2810. {"name":"Yoyo1","type":1,"url":"https://json.legendwhb.cn/json.php/?url="},
  2811. {"name":"星影相随1","type":1,"url":"https://xt.gbxy.net.cn/api/?key=7gAmfK5typSVsg2Qnr&url="},
  2812. {"name":"爱影视","type":1,"url":"http://14.17.115.200:520/json.php?id=6e5LaYyU5JLs9aRawyGKwPkH7ZFr701z&url="},
  2813. {"name":"追剧吧1","type":1,"url":"http://newjiexi.gotto.top/yun_apib.php/?url="},
  2814. {"name":"优视影视","type":1,"url":"http://ccc.ysys.asia/jx/?id=2&url="},
  2815. {"name":"黄河影视","type":1,"url":"http://jx.ledu8.cn/api/?key=P8QSgO61p1MpHV2ALn&url="},
  2816. {"name":"无名-1","type":1,"url":"http://vipjh.chunbaotaiji.com/?url="},
  2817. {"name":"麻瓜视频1","type":1,"url":"https://jhjx.ptygx.com/xttyjx.php/?url="},
  2818. {"name":"Vip影院","type":1,"url":"https://api.zakkpa.com:8888/analysis/json/?uid=39&my=ehklrtxzAFKLMNUXY2&url="},
  2819. {"name":"大头影视","type":1,"url":"http://fast.rongxingvr.cn:99/api/?key=M3tZzS2q0oGrQ7aWlr&url="},
  2820. {"name":"绿箭影视","type":1,"url":"http://jf.jisutuku.top/api/?key=RHjXcjUTkyZnfWx9u4&url="},
  2821. {"name":"我爱电影1","type":1,"url":"https://vip.kpjx.cc/api/?key=3sKKYzWSxLmX1hnsMs&url="},
  2822. {"name":"Yoyo","type":1,"url":"http://47.100.138.210:91/home/api?type=ys&uid=1947441&key=bcfgjmuwCEORSVX237&url="},
  2823. {"name":"蜜果TV","type":1,"url":"https://fast.rongxingvr.cn:8866/api/?key=rmxOw7BpINuGIyWQng&url="},
  2824. {"name":"筋斗云1","type":1,"url":"https://fast.rongxingvr.cn:8866/api/?key=nrR7koAyq9ajKId4nC&url="},
  2825. {"name":"麻花视频","type":1,"url":"http://jf.tcspvip.com:246/home/api?type=ys&uid=65404&key=bjoprtvyABGIMPXZ27&url="},
  2826. {"name":"TV酷","type":1,"url":"http://a.dxzj88.com/jhjson/?url="},
  2827. {"name":"饭后电影","type":1,"url":"https://fast.rongxingvr.cn:8866/api/?key=J4mUIu3DrRtIOojDox&url="},
  2828. {"name":"影阅阁2","type":1,"url":"https://api.m3u8.tv:5678/home/api?type=ys&uid=594615&key=bcehpqtxCEGKMT0248&url="},
  2829. {"name":"看剧吧","type":1,"url":"http://47.100.138.210:91/home/api?type=ys&uid=243653&key=kqswxyABGHKLQSV127&url="},
  2830. {"name":"豆渣影视","type":1,"url":"https://fast.rongxingvr.cn:8866/api/?key=jtDZ22biNujOBLlgoe&url="},
  2831. {"name":"优视影视2","type":1,"url":"http://ccc.ysys.asia/jx/?id=4&url="},
  2832. {"name":"星空影视","type":1,"url":"http://api.vip123kan.vip/?url="},
  2833. {"name":"爱追剧","type":1,"url":"https://jhjx.ptygx.com/xttyjx.php/?url="},
  2834. {"name":"极客","type":1,"url":"https://sbsb.i8k.cc/?url="},
  2835. {"name":"遗忘影视","type":1,"url":"http://gq.bywdtk.cn/?url="},
  2836. {"name":"玺娜影视","type":1,"url":"https://balabala.yatongle.com/api/?key=RuHZpg9zxigiLZRIyl&url="},
  2837. {"name":"林谷影视","type":1,"url":"http://jf.lemiaoyun.cn/home/api?type=ys&uid=40190120&key=dhilnoCDHLOPQRUW29&url="},
  2838. {"name":"雪人影视","type":1,"url":"https://svip.renrenmi.cc:2222/api/?key=S77lACKG9VTwNq5Upv&url="}
  2839. //
  2840. //{"name":"Preference","type":1,"url":"bl#看剧吧$$萌蛋蛋$$影阅阁2$$麻瓜视频$$南府影视$$雨果影视$$DC影视$$小强TV$$筋斗云$$艾特影视$$4K影院1$$Yoyo$$追剧吧$$追剧吧3$$阿姨追剧$$手指影视$$绿箭影视$$二九影视$$抹茶猪$$筋斗云1$$看剧吧1$$看剧吧2$$麻瓜视频1$$星辰视频$$阿姨追剧1$$爱影视$$神马影院$$瑞丰资源$$疯狂看$$Yoyo1||mg#萌蛋蛋$$影阅阁2$$看剧吧$$绿箭影视$$蓝光视频$$麻瓜视频$$南府影视$$雨果影视$$DC影视$$小强TV$$4K影院1$$筋斗云$$艾特影视$$影阅阁1$$追剧吧$$Yoyo$$追剧吧3$$阿姨追剧$$手指影视$$黄河影视$$雨果影视1$$二九影视$$抹茶猪$$筋斗云1$$看剧吧1$$看剧吧2$$麻瓜视频1$$星辰视频$$阿姨追剧1$$影阅阁$$爱影视$$瑞丰资源$$阿姨追剧3$$神马影院$$疯狂看$$Yoyo1||pp#看剧吧$$萌蛋蛋$$影阅阁1$$影阅阁2$$麻瓜视频$$南府影视$$雨果影视$$艾特影视$$追剧吧$$追剧吧3$$Yoyo$$阿姨追剧$$二九影视$$手指影视$$黄河影视$$抹茶猪$$雨果影视1$$看剧吧1$$麻瓜视频1$$筋斗云1$$看剧吧2$$阿姨追剧1$$星辰视频$$神马影院$$瑞丰资源$$疯狂看$$影阅阁$$Yoyo1||qy#影阅阁2$$萌蛋蛋$$看剧吧$$麻瓜视频$$南府影视$$雨果影视$$小强TV$$绿箭影视$$DC影视$$影阅阁3$$筋斗云$$蓝光视频$$4K影院1$$追剧吧$$影阅阁1$$艾特影视$$Yoyo$$追剧吧3$$黄河影视$$手指影视$$二九影视$$抹茶猪$$优视影视$$星影相随1$$麻瓜视频1$$筋斗云1$$看剧吧1$$看剧吧2$$阿姨追剧1$$星辰视频$$影阅阁$$神马影院$$瑞丰资源$$雨果影视1$$疯狂看$$阿姨追剧3$$Yoyo1||1905#影阅阁2$$看剧吧$$萌蛋蛋$$麻瓜视频$$南府影视$$筋斗云$$艾特影视$$追剧吧$$雨果影视$$Yoyo$$追剧吧3$$阿姨追剧$$手指影视$$二九影视$$抹茶猪$$看剧吧1$$麻瓜视频1$$阿姨追剧1$$星辰视频$$影阅阁$$瑞丰资源$$Yoyo1||yk#看剧吧$$萌蛋蛋$$影阅阁2$$影阅阁1$$DC影视$$筋斗云$$影阅阁3$$蓝光视频$$4K影院1$$艾特影视$$小强TV$$Yoyo$$追剧吧3$$阿姨追剧$$手指影视$$黄河影视$$抹茶猪$$星影相随1$$筋斗云1$$二九影视$$看剧吧1$$看剧吧2$$麻瓜视频1$$优视影视$$阿姨追剧1$$瑞丰资源$$阿姨追剧3$$疯狂看$$星辰视频$$神马影院$$Yoyo1$$影阅阁||sh#麻瓜视频$$影阅阁1$$南府影视$$雨果影视$$绿箭影视$$小强TV$$艾特影视$$4K影院1$$追剧吧$$筋斗云$$Yoyo$$追剧吧3$$手指影视$$阿姨追剧$$黄河影视$$二九影视$$星影相随1$$看剧吧1$$筋斗云1$$麻瓜视频1$$看剧吧2$$星辰视频$$阿姨追剧1$$DC影视$$瑞丰资源$$阿姨追剧3$$疯狂看$$神马影院$$Yoyo1||cctv#萌蛋蛋$$看剧吧$$麻瓜视频$$影阅阁2$$南府影视$$雨果影视$$影阅阁1$$DC影视$$影阅阁3$$艾特影视$$小强TV$$4K影院1$$追剧吧$$蓝光视频$$绿箭影视$$追剧吧3$$Yoyo$$阿姨追剧$$雨果影视1$$黄河影视$$二九影视$$星影相随1$$抹茶猪$$看剧吧1$$麻瓜视频1$$星辰视频$$手指影视$$影阅阁$$阿姨追剧1$$瑞丰资源$$神马影院$$阿姨追剧3$$优视影视$$Yoyo1||qq#星辰视频$$瑞丰资源$$影阅阁$$阿姨追剧1$$看剧吧1$$麻瓜视频1$$雨果影视1$$阿姨追剧$$Yoyo$$手指影视$$追剧吧3$$艾特影视$$影阅阁2$$萌蛋蛋$$看剧吧$$麻瓜视频$$南府影视$$雨果影视$$小强TV$$影阅阁1$$DC影视$$筋斗云$$追剧吧$$4K影院1$$二九影视$$黄河影视$$抹茶猪$$筋斗云1$$看剧吧2$$优视影视$$星影相随1$$疯狂看$$Yoyo1$$神马影院$$阿姨追剧3||mp#影阅阁1$$小强TV$$绿箭影视$$DC影视$$影阅阁3$$4K影院1$$二九影视$$雨果影视1$$优视影视$$神马影院$$阿姨追剧3||le#麻瓜视频$$南府影视$$雨果影视$$艾特影视$$追剧吧$$Yoyo$$追剧吧3$$阿姨追剧$$手指影视$$筋斗云1$$看剧吧1$$麻瓜视频1$$看剧吧2$$星辰视频$$阿姨追剧1$$神马影院$$瑞丰资源$$Yoyo1||ac#艾特影视$$Yoyo$$追剧吧3$$阿姨追剧$$手指影视$$看剧吧1$$麻瓜视频1$$星辰视频$$阿姨追剧1$$瑞丰资源$$神马影院$$爱影视||migu#影阅阁1$$绿箭影视$$蓝光视频$$筋斗云$$影阅阁3$$4K影院1$$小强TV$$DC影视$$黄河影视$$二九影视$$星影相随1$$阿姨追剧3$$星辰视频$$瑞丰资源$$阿姨追剧1"}
  2841. ],
  2842. //解X匹配
  2843. "flags": ["youku", "qq", "iqiyi", "qiyi", "letv", "sohu", "tudou", "pptv", "mgtv", "wasu", "bilibili", "le", "duoduozy", "renrenmi"],
  2844. //IJK解码器设置
  2845. "ijk":[
  2846. {"group":"软解码","options":[
  2847. {"category":4,"name":"opensles","value":"0"},
  2848. {"category":4,"name":"overlay-format","value":"842225234"},
  2849. {"category":4,"name":"framedrop","value":"1"},
  2850. {"category":4,"name":"soundtouch","value":"1"},
  2851. {"category":4,"name":"start-on-prepared","value":"1"},
  2852. {"category":1,"name":"http-detect-range-support","value":"0"},
  2853. {"category":1,"name":"fflags","value":"fastseek"},
  2854. {"category":2,"name":"skip_loop_filter","value":"48"},
  2855. {"category":4,"name":"reconnect","value":"1"},
  2856. {"category":4,"name":"enable-accurate-seek","value":"0"},
  2857. {"category":4,"name":"mediacodec","value":"0"},
  2858. {"category":4,"name":"mediacodec-auto-rotate","value":"0"},
  2859. {"category":4,"name":"mediacodec-handle-resolution-change","value":"0"},
  2860. {"category":4,"name":"mediacodec-hevc","value":"0"},
  2861. {"category":1,"name":"dns_cache_timeout","value":"600000000"}]},
  2862. {"group":"硬解码","options":[
  2863. {"category":4,"name":"opensles","value":"0"},
  2864. {"category":4,"name":"overlay-format","value":"842225234"},
  2865. {"category":4,"name":"framedrop","value":"1"},
  2866. {"category":4,"name":"soundtouch","value":"1"},
  2867. {"category":4,"name":"start-on-prepared","value":"1"},
  2868. {"category":1,"name":"http-detect-range-support","value":"0"},
  2869. {"category":1,"name":"fflags","value":"fastseek"},
  2870. {"category":2,"name":"skip_loop_filter","value":"48"},
  2871. {"category":4,"name":"reconnect","value":"1"},
  2872. {"category":4,"name":"enable-accurate-seek","value":"0"},
  2873. {"category":4,"name":"mediacodec","value":"1"},
  2874. {"category":4,"name":"mediacodec-auto-rotate","value":"1"},
  2875. {"category":4,"name":"mediacodec-handle-resolution-change","value":"1"},
  2876. {"category":4,"name":"mediacodec-hevc","value":"1"},
  2877. {"category":1,"name":"dns_cache_timeout","value":"600000000"}]}
  2878. ],
  2879. //广告域名过滤
  2880. "ads": ["mimg.0c1q0l.cn", "www.googletagmanager.com", "www.google-analytics.com", "mc.usihnbcq.cn", "mg.g1mm3d.cn", "mscs.svaeuzh.cn", "cnzz.hhttm.top", "tp.vinuxhome.com", "cnzz.mmstat.com", "www.baihuillq.com", "s23.cnzz.com", "z3.cnzz.com", "c.cnzz.com", "stj.v1vo.top", "z12.cnzz.com", "img.mosflower.cn", "tips.gamevvip.com", "ehwe.yhdtns.com", "xdn.cqqc3.com", "www.jixunkyy.cn", "sp.chemacid.cn", "hm.baidu.com", "s9.cnzz.com", "z6.cnzz.com", "um.cavuc.com", "mav.mavuz.com", "wofwk.aoidf3.com", "z5.cnzz.com", "xc.hubeijieshikj.cn", "tj.tianwenhu.com", "xg.gars57.cn", "k.jinxiuzhilv.com", "cdn.bootcss.com", "ppl.xunzhuo123.com", "xomk.jiangjunmh.top", "img.xunzhuo123.com", "z1.cnzz.com", "s13.cnzz.com", "xg.huataisangao.cn", "z7.cnzz.com", "xg.huataisangao.cn", "z2.cnzz.com", "s96.cnzz.com", "q11.cnzz.com", "thy.dacedsfa.cn", "xg.whsbpw.cn", "s19.cnzz.com", "z8.cnzz.com", "s4.cnzz.com", "f5w.as12df.top", "ae01.alicdn.com", "www.92424.cn", "k.wudejia.com", "vivovip.mmszxc.top", "qiu.xixiqiu.com", "cdnjs.hnfenxun.com", "cms.qdwght.com"]
  2881. }