123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124 |
- {
- "sites": [
- {
- "key": "默认主页",
- "name": "默认主页",
- "type": 0,
- "api": "https://www.hongniuzy1.com/inc/hnm3u8.php",
- "playUrl": "http://api.u1o.net/?url=",
- "categories": [
- "国产剧",
- "欧美剧",
- "港澳剧",
- "韩剧",
- "伦理片",
- "动作片",
- "喜剧片",
- "爱情片",
- "科幻片",
- "恐怖片",
- "剧情片",
- "战争片",
- "综艺",
- "动漫",
- "动漫电影",
- "台湾剧",
- "泰剧",
- "纪录片"
- ]
- },
- {
- "key": "csp_Buka",
- "name": "不卡(爬虫)",
- "type": 3,
- "api": "csp_Buka",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "csp_Auete",
- "name": "奥特(爬虫)",
- "type": 3,
- "api": "csp_Auete",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "csp_Aidi",
- "name": "爱迪(爬虫)",
- "type": 3,
- "api": "csp_Aidi",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "csp_Enlienli",
- "name": "嗯哩(爬虫)",
- "type": 3,
- "api": "csp_Enlienli",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "csp_Cokemv",
- "name": "可乐(爬虫)",
- "type": 3,
- "api": "csp_Cokemv",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "csp_Ysgc",
- "name": "工厂(爬虫)",
- "type": 3,
- "api": "csp_Ysgc",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "csp_N0ys",
- "name": "九零(爬虫)",
- "type": 3,
- "api": "csp_N0ys",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "csp_Nekk",
- "name": "九亿(爬虫)",
- "type": 3,
- "api": "csp_Nekk",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "csp_EPangApp",
- "name": "阿房(爬虫)",
- "type": 3,
- "api": "csp_EPangApp",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "csp_Djx",
- "name": "瓜皮(爬虫) ",
- "type": 3,
- "api": "csp_Djx",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "csp_Imaple",
- "name": "枫林(爬虫) ",
- "type": 3,
- "api": "csp_Imaple",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "csp_Jumi",
- "name": "剧迷 (爬虫)",
- "type": 3,
- "api": "csp_Jumi",
- "searchable": 0,
- "quickSearch": 0,
- "filterable": 1
- },
- {
- "key": "csp_xpath_cjt",
- "name": "CJ影视(XPath)",
- "type": 3,
- "api": "csp_XPathMac",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 0,
- "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/cjtys.json"
- },
- {
- "key": "csp_xpath_555",
- "name": "555电影(XPath)",
- "type": 3,
- "api": "csp_XPath",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 0,
- "ext": "https://cdn.jsdelivr.net/gh/catvod/CatVodTVSpider@master/xpath/555.json"
- },
- {
- "key": "csp_xpath_jpys",
- "name": "极品影视(XPath)",
- "type": 3,
- "api": "csp_XPath",
- "searchable": 1,
- "quickSearch": 0,
- "filterable": 0,
- "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/jpys.json"
- },
- {
- "key": "csp_xpath_jpyszl",
- "name": "极品直链(XPath)",
- "type": 3,
- "api": "csp_XPathMac",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 0,
- "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/jpys.json"
- },
- {
- "key": "csp_yysdali",
- "name": "YY影视(XPath)",
- "type": 3,
- "api": "csp_YydsAli",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 0,
- "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/yyds.json"
- },
- {
- "key": "csp_xpath_94sm",
- "name": "94神马(XPath)",
- "type": 3,
- "api": "csp_XPath",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 0,
- "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/94sm.json"
- },
- {
- "key": "csp_xpath_saohuotv",
- "name": "骚火电影(XPath)",
- "type": 3,
- "api": "csp_XPath",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 0,
- "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/saohuotv2.json"
- },
- {
- "key": "csp_xpath_tvci",
- "name": "大师兄(XPath)",
- "type": 3,
- "api": "csp_XPath",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 0,
- "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/tvci.json"
- },
- {
- "key": "csp_xpath_age",
- "name": "AGE动漫(XPath)",
- "type": 3,
- "api": "csp_XPath",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 0,
- "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/agefans.json"
- },
- {
- "key": "csp_xpath_dm84",
- "name": "动漫巴士(XPath)",
- "type": 3,
- "api": "csp_XPath",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 0,
- "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/dm84.json"
- },
- {
- "key": "csp_xpath_nfmov",
- "name": "萘菲(XPath)",
- "type": 3,
- "api": "csp_XPathNfMov",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 0,
- "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/nfmovie.json"
- },
- {
- "key": "csp_xpath_egg",
- "name": "蛋蛋影院(XPath)",
- "type": 3,
- "api": "csp_XPathEgg",
- "searchable": 1,
- "quickSearch": 0,
- "filterable": 0,
- "ext": "https://cdn.jsdelivr.net/gh/lite-cucumber/CatVodTVSpider@master/xpath/egg.json"
- },
- {
- "key": "VIP影视(感谢github作者 catvod&小黄瓜等)",
- "name": "VIP影视(感谢github作者catvod&小黄瓜等)",
- "type": 0,
- "api": "https://www.dianyingn.cc/api.php/provide/vod/at/xml/",
- "playUrl": ""
- },
- {
- "key": "4K影院",
- "name": "4K影院",
- "type": 0,
- "api": "http://www.dijiaxia.com/api.php/provide/vod/at/xml",
- "playUrl": ""
- },
- {
- "key": "牛资源",
- "name": "牛资源",
- "type": 0,
- "api": "https://www.hongniuzy1.com/inc/seacms.php",
- "playUrl": ""
- },
- {
- "key": "csp_ysdq_核桃影视V1",
- "name": "核桃影视V1(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "核桃影视V1"
- },
- {
- "key": "csp_ysdq_海绵影视",
- "name": "海绵影视(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "海绵影视"
- },
- {
- "key": "csp_ysdq_白菜追剧",
- "name": "白菜追剧(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "白菜追剧"
- },
- {
- "key": "csp_ysdq_飞捷影视",
- "name": "飞捷影视(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "飞捷影视"
- },
- {
- "key": "csp_ysdq_555电影",
- "name": "555电影(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "555电影"
- },
- {
- "key": "csp_ysdq_久九影视",
- "name": "久九影视(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "久九影视"
- },
- {
- "key": "csp_ysdq_颖家影院",
- "name": "颖家影院(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "颖家影院"
- },
- {
- "key": "csp_ysdq_80k影视",
- "name": "80k影视(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "80k影视"
- },
- {
- "key": "csp_ysdq_公主影视",
- "name": "公主影视(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "公主影视"
- },
- {
- "key": "csp_ysdq_一只鱼影视",
- "name": "一只鱼影视(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "一只鱼影视"
- },
- {
- "key": "csp_ysdq_九合视频",
- "name": "九合视频(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "九合视频"
- },
- {
- "key": "csp_ysdq_913E影视",
- "name": "913E影视(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "913E影视"
- },
- {
- "key": "csp_ysdq_远方影视",
- "name": "远方影视(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "远方影视"
- },
- {
- "key": "csp_ysdq_琳琅影视",
- "name": "琳琅影视(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "琳琅影视"
- },
- {
- "key": "csp_ysdq_小易影视",
- "name": "小易影视(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "小易影视"
- },
- {
- "key": "csp_ysdq_迪迪影院",
- "name": "迪迪影院(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "迪迪影院"
- },
- {
- "key": "csp_ysdq_先锋影视",
- "name": "先锋影视(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "先锋影视"
- },
- {
- "key": "csp_ysdq_80影视",
- "name": "80影视(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "80影视"
- },
- {
- "key": "csp_ysdq_迪迪影院",
- "name": "迪迪影院(搜)",
- "type": 3,
- "api": "csp_Ysdq",
- "searchable": 1,
- "quickSearch": 0,
- "ext": "迪迪影院"
- },
- {
- "key": "神马影院",
- "name": "神马影院",
- "type": 0,
- "api": "http://www.zitv.cc/api.php/provide/vod/at/xml/",
- "playUrl": ""
- },
- {
- "key": "KK看剧",
- "name": "KK看剧",
- "type": 0,
- "api": "http://www.kkkanju.com/api.php/provide/vod/at/xml",
- "playUrl": "http://jx.hao-zsj.cn/vip/?url="
- },
- {
- "key": "番茄资源",
- "name": "番茄资源",
- "type": 0,
- "api": "http://api.fqzy.cc/api.php/provide/vod/at/xml/?ac=list",
- "playUrl": "https://dp.8b5q.cn/dplayer/?url="
- },
- {
- "key": "蘑菇资源",
- "name": "蘑菇资源",
- "type": 0,
- "api": "http://www.moguzyw.com:520/moguzy.php/provide/vod/at/xml",
- "playUrl": "http://jx.zhiaiyy.top/?url="
- },
- {
- "key": "多多电影",
- "name": "多多电影",
- "type": 0,
- "api": "http://w7tv.com/api.php/provide/vod/at/xml",
- "playUrl": ""
- },
- {
- "key": "无尽资源",
- "name": "无尽资源",
- "type": 0,
- "api": "https://wujinzy.com/api.php/provide/vod/at/xml",
- "playUrl": "https://jx.xhswglobal.com/dplayer/?url="
- },
- {
- "key": "TVB云",
- "name": "TVB云",
- "type": 0,
- "api": "http://www.tvyb02.com/api.php/provide/vod/at/xml",
- "playUrl": "http://jx.zhiaiyy.top/?url="
- },
- {
- "key": "优剧资源",
- "name": "优剧资源",
- "type": 0,
- "api": "https://zy.ujuba.com/api.php/provide/vod/at/xml",
- "playUrl": "https://zy.ujuba.com/play.php?url="
- },
- {
- "key": "融兴资源",
- "name": "融兴资源",
- "type": 0,
- "api": "https://www.rongxingvr.com/api.php/provide/vod/at/xml",
- "playUrl": ""
- },
- {
- "key": "新影资源",
- "name": "新影资源",
- "type": 0,
- "api": "https://api.xinyingcaiji.com/api.php/provide/vod/at/xml/",
- "playUrl": "https://jx.xhswglobal.com/dplayer/?url="
- },
- {
- "key": "想看资源",
- "name": "想看资源",
- "type": 0,
- "api": "https://m3u8.xiangkanapi.com/provide/vod/cms/sea/at/xml",
- "playUrl": "https://lyw28.com/m3u8/?url="
- },
- {
- "key": "虾米资源",
- "name": "虾米资源",
- "type": 0,
- "api": "https://zy.xmflv.vip/api.php/provide/vod/at/xml",
- "playUrl": "https://jx.xmflv.vip/?url="
- },
- {
- "key": "2A资源",
- "name": "2A资源",
- "type": 0,
- "api": "http://zy.zcocc.com/api.php/provide/vod/at/xml/",
- "playUrl": "http://api.u1o.net/?url="
- },
- {
- "key": "天堂资源",
- "name": "天堂资源",
- "type": 0,
- "api": "https://www.meijuxq.com/inc/api.php",
- "playUrl": "http://jjxx.me/?url="
- },
- {
- "key": "美剧星球",
- "name": "美剧星球",
- "type": 0,
- "api": "https://www.meijuxq.com/inc/api.php",
- "playUrl": ""
- },
- {
- "key": "九九美剧",
- "name": "九九美剧",
- "type": 0,
- "api": "https://www.999meiju.com/api.php/provide/vod/at/xml",
- "playUrl": ""
- },
- {
- "key": "火星2048",
- "name": "火星2048",
- "type": 0,
- "api": "https://www.hx2048.com/api.php/provide/vod/at/xml",
- "playUrl": "http://jx.zhiaiyy.top/?url="
- },
- {
- "key": "多米影视",
- "name": "多米影视",
- "type": 0,
- "api": "http://hdmys1.com/api.php/provide/vod/at/xml",
- "playUrl": ""
- },
- {
- "key": "乐多资源",
- "name": "乐多资源",
- "type": 0,
- "api": "http://cj.leduocaiji.com/inc/seacmsapi.php",
- "playUrl": "https://ldy.jx.cn/wp-api/ifr.php?vid="
- },
- {
- "key": "MBO影视",
- "name": "MBO影视",
- "type": 0,
- "api": "https://www.mbomovie.com/api.php/provide/vod/at/xml"
- },
- {
- "key": "人人影视",
- "name": "人人影视",
- "type": 0,
- "api": "https://kuu.renrenmi.cc/api.php/provide/vod/at/xml",
- "playUrl": "https://jx.renrenmi.cc/?url="
- },
- {
- "key": "热映资源",
- "name": "热映资源",
- "type": 0,
- "api": "http://hl.reying.vip/api.php/provide/vod/at/xml",
- "playUrl": ""
- },
- {
- "key": "剧好看",
- "name": "剧好看",
- "type": 0,
- "api": "https://www.juhaokan.cc/api.php/provide/vod/at/xml",
- "playUrl": ""
- },
- {
- "key": "游艺资源",
- "name": "游艺资源",
- "type": 0,
- "api": "http://360.hexh.ink/api.php/provide/vod/at/xml",
- "playUrl": ""
- },
- {
- "key": "淘片资源",
- "name": "淘片资源",
- "type": 0,
- "api": "https://taopianzy.com/home/cjapi/as/vod/xml",
- "playUrl": ""
- },
- {
- "key": "北斗星",
- "name": "北斗星",
- "type": 0,
- "api": "https://v8.bdxzyapi.com/inc/api.php",
- "playUrl": ""
- },
- {
- "key": "小蜻蜓",
- "name": "小蜻蜓",
- "type": 0,
- "api": "http://3ketv.com/api.php/provide/vod/at/xml",
- "playUrl": ""
- },
- {
- "key": "欧宝资源",
- "name": "欧宝资源",
- "type": 0,
- "api": "http://obaowl.cn/api.php/provide/vod/at/xml"
- },
- {
- "key": "爱特影视",
- "name": "爱特影视",
- "type": 0,
- "api": "http://tv.aitesucai.xyz/api.php/provide/vod/at/xml",
- "playUrl": ""
- },
- {
- "key": "飞鱼影视",
- "name": "飞鱼影视",
- "type": 0,
- "api": "https://app.feiyu5.com/api.php/provide/vod/at/xml/",
- "playUrl": ""
- }
- ],
- "parses": [
- {
- "name": "Json并发",
- "type": 2,
- "url": "Parallel"
- },
- {
- "name": "Json轮询",
- "type": 2,
- "url": "Sequence"
- }
- ],
- "address": [
- {
- "name": "爱奇艺",
- "url": "https://m.iqiyi.com/"
- },
- {
- "name": "腾讯视频",
- "url": "https://m.v.qq.com/"
- },
- {
- "name": "芒果TV",
- "url": "https://m.mgtv.com/"
- },
- {
- "name": "优酷视频",
- "url": "https://www.youku.com/"
- },
- {
- "name": "搜狐视频",
- "url": "https://m.tv.sohu.com/"
- },
- {
- "name": "B站视频",
- "url": "https://m.bilibili.com/"
- },
- {
- "name": "乐视视频",
- "url": "https://m.le.com/"
- },
- {
- "name": "1905视频",
- "url": "https://m.1905.com/"
- },
- {
- "name": "PPTV视频",
- "url": "https://m.pptv.com/"
- }
- ],
- "lives": [
- {
- "group": "pglblb",
- "channels": [
- {
- "name": "凤凰中文",
- "urls": [
- "http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221225942/index.m3u8",
- "http://223.110.235.3/ott.js.chinamobile.com/PLTV/3/224/3221228057/index.m3u8",
- "http://183.207.249.35/PLTV/3/224/3221226975/index.m3u8"
- ]
- },
- {
- "name": "凤凰资讯",
- "urls": [
- "http://223.110.235.13/ott.js.chinamobile.com/PLTV/3/224/3221228098/index.m3u8",
- "http://117.169.124.37:6610/ysten-businessmobile/live/fhzixun/1.m3u8"
- ]
- },
- {
- "name": "凤凰香港",
- "urls": [
- "http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228060/index.m3u8"
- ]
- },
- {
- "name": "凤凰测试",
- "urls": [
- "http://124.232.231.246:6610/000000001001/201500000231/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
- "http://124.232.231.246:6610/000000001001/201500000230/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"
- ]
- },
- {
- "name": "香港翡翠",
- "urls": [
- "http://v3948069e.live.126.net/live/rnscsplb7452518881.flv"
- ]
- },
- {
- "name": "香港无线",
- "urls": [
- "http://v3948069e.live.126.net/live/hod900.flv"
- ]
- },
- {
- "name": "4K央视",
- "urls": [
- "http://liveop.cctv.cn/hls/4KHD/playlist.m3u8"
- ]
- },
- {
- "name": "4K修复",
- "urls": [
- "http://ott.js.chinamobile.com/PLTV/3/224/3221228141/index.m3u8"
- ]
- },
- {
- "name": "4K纯享",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225726/index.m3u8",
- "http://39.134.115.163:8080/PLTV/88888910/224/3221225786/index.m3u8"
- ]
- },
- {
- "name": "4K欢笑",
- "urls": [
- "http://39.134.18.66/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226582/index.m3u8",
- "http://39.134.18.66/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226582/index.m3u8"
- ]
- },
- {
- "name": "4K北京",
- "urls": [
- "http://39.134.134.85/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226550/1.m3u8",
- "http://39.134.135.80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226550/1.m3u8",
- "http://39.134.135.81/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226550/1.m3u8"
- ]
- },
- {
- "name": "4K江苏",
- "urls": [
- "http://223.110.236.2/ott.js.chinamobile.com/PLTV/3/224/3221228113/index.m3u8"
- ]
- },
- {
- "name": "4K花园",
- "urls": [
- "http://223.110.243.163/ott.js.chinamobile.com/PLTV/3/224/3221227749/index.m3u8"
- ]
- },
- {
- "name": "CCTV-1",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225674/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225769/index.m3u8",
- "http://39.134.134.87/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226226/1.m3u8",
- "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226016/1.m3u8",
- "http://117.148.179.160/PLTV/88888888/224/3221231468/index.m3u8",
- "rtp://239.253.156.96:8550"
- ]
- },
- {
- "name": "CCTV-2",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225676/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225657/index.m3u8",
- "http://39.135.238.91/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226371/1.m3u8",
- "http://202.204.118.254/hls/ch3.m3u8",
- "http://39.134.66.66/PLTV/88888888/224/3221225599/index.m3u8"
- ]
- },
- {
- "name": "CCTV-3",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225677/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225713/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225677/index.m3u8",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226008/1/index.m3u8?fmt=ts2hls",
- "http://117.148.179.160/PLTV/88888888/224/3221231682/index.m3u8"
- ]
- },
- {
- "name": "CCTV-4",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225753/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225761/index.m3u8",
- "http://39.135.238.48/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226335/1.m3u8",
- "http://39.134.67.55:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226007/1.m3u8"
- ]
- },
- {
- "name": "CCTV-5",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225801/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225680/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225712/index.m3u8",
- "http://39.134.39.37/PLTV/88888888/224/3221226146/index.m3u8"
- ]
- },
- {
- "name": "CCTV-5+",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225621/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225621/index.m3u8",
- "http://39.134.135.82/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226458/1.m3u8",
- "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226349/1.m3u8",
- "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226458/1.m3u8"
- ]
- },
- {
- "name": "五星体育",
- "urls": [
- "http://112.25.48.11/live/program/live/ssty/4000000/mnf.m3u8",
- "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/ssty/2300000/mnf.m3u8",
- "http://112.132.209.46/liveplay-kk.rtxapp.com/live/program/live/ssty/4000000/mnf.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225503/index.m3u8",
- "http://39.134.24.24/PLTV/88888888/224/3221225718/index.m3u8"
- ]
- },
- {
- "name": "劲爆体育",
- "urls": [
- "http://112.132.209.46/liveplay-kk.rtxapp.com/live/program/live/jbtyhd/4000000/mnf.m3u8",
- "http://shbu.live.bestvcdn.com.cn:8080/live/program/live/jbtyhd/2300000/mnf.m3u8",
- "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/jbtyhd/2300000/mnf.m3u8"
- ]
- },
- {
- "name": "新视觉HD",
- "urls": [
- "http://112.132.209.46/liveplay-kk.rtxapp.com/live/program/live/xsjhd/4000000/mnf.m3u8",
- "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/xsjhd/2300000/mnf.m3u8",
- "http://shbu.live.bestvcdn.com.cn:8080/live/program/live/xsjhd/2300000/mnf.m3u8"
- ]
- },
- {
- "name": "魅力足球",
- "urls": [
- "http://112.132.209.46/liveplay-kk.rtxapp.com/live/program/live/mlyyhd/4000000/mnf.m3u8",
- "http://cg01.hrtn.net:9090/live/mlyyhd_4000.m3u8"
- ]
- },
- {
- "name": "超级体育",
- "urls": [
- "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226232/1.m3u8",
- "http://39.134.24.24/PLTV/88888888/224/3221225718/index.m3u8"
- ]
- },
- {
- "name": "精品体育",
- "urls": [
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225674/1.m3u8",
- "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225674/1.m3u8"
- ]
- },
- {
- "name": "快乐垂钓",
- "urls": [
- "http://womlive.cloud.wo.cn/tvlive/100070/otpzod_otpzod,100070_hls_pull_2000K_live.m3u8",
- "http://129.226.107.225/zycfcdn.gdwlcloud.com/PLTV/88888888/224/3221226025/1.m3u8",
- "http://124.232.231.246:6610/000000001001/201500000048/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
- "http://cg01.hrtn.net:9090/live/klcd_1500.m3u8",
- "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226549/1.m3u8"
- ]
- },
- {
- "name": "CCTV-6",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225683/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225715/index.m3u8",
- "http://womlive.cloud.wo.cn/tvlive/100002/otpzod_otpzod,100002_hls_pull_2000K_live.m3u8",
- "http://39.134.115.163:8080/PLTV/88888910/224/3221225632/index.m3u8",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226011/1/index.m3u8?fmt=ts2hls",
- "http://202.204.118.254/hls/ch11.m3u8",
- "http://cg01.hrtn.net:9090/live/cctv6hd_4000.m3u8"
- ]
- },
- {
- "name": "CHC家庭影院",
- "urls": [
- "http://117.148.179.160/PLTV/88888888/224/3221231799/index.m3u8",
- "http://39.134.18.69/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226462/1.m3u8",
- "http://39.134.18.82/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226462/index.m3u8",
- "http://39.134.19.228:6610/yinhe/2/ch00000090990000002085/index.m3u8?virtualDomain=yinhe.live_hls.zte.com"
- ]
- },
- {
- "name": "CHC动作电影",
- "urls": [
- "http://womlive.cloud.wo.cn/tvlive/100073/otpzod_otpzod,100073_hls_pull_2000K_live.m3u8",
- "http://39.134.18.69/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/1.m3u8",
- "http://39.134.18.68/dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226465/1.m3u8",
- "http://39.134.19.228:6610/yinhe/2/ch00000090990000002055/index.m3u8?virtualDomain=yinhe.live_hls.zte.com"
- ]
- },
- {
- "name": "高清电影频道",
- "urls": [
- "http://ott.js.chinamobile.com/PLTV/3/224/3221227579/index.m3u8"
- ]
- },
- {
- "name": "北京电影频道",
- "urls": [
- "http://39.134.135.80/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226553/1.m3u8",
- "http://117.148.179.160/PLTV/88888888/224/3221231640/index.m3u8",
- "http://117.148.179.176/PLTV/88888888/224/3221231565/index.m3u8"
- ]
- },
- {
- "name": "东方影视频道",
- "urls": [
- "http://117.148.179.160/PLTV/88888888/224/3221231639/index.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225615/index.m3u8",
- "http://39.134.24.24/PLTV/88888888/224/3221225708/index.m3u8"
- ]
- },
- {
- "name": "黑莓电影频道",
- "urls": [
- "http://111.40.196.9/PLTV/88888888/224/3221225610/index.m3u8",
- "http://117.148.179.160/PLTV/88888888/224/3221231621/index.m3u8",
- "http://39.134.24.24/PLTV/88888888/224/3221225708/index.m3u8"
- ]
- },
- {
- "name": "动作电影频道",
- "urls": [
- "http://111.40.196.9/PLTV/88888888/224/3221225620/index.m3u8",
- "http://117.148.179.160/PLTV/88888888/224/3221231565/index.m3u8",
- "http://117.148.179.160/PLTV/88888888/224/3221231556/index.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225622/index.m3u8"
- ]
- },
- {
- "name": "超级电影频道",
- "urls": [
- "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226369/1.m3u8",
- "http://117.148.179.160/PLTV/88888888/224/3221231568/index.m3u8",
- "http://117.148.179.160/PLTV/88888888/224/3221231564/index.m3u8",
- "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226233/1.m3u8"
- ]
- },
- {
- "name": "CCTV-7",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225627/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225700/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225627/index.m3u8",
- "http://39.135.138.60:18890/PLTV/88888910/224/3221225624/index.m3u8",
- "rtp://239.69.1.103:10256"
- ]
- },
- {
- "name": "CCTV-8",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225630/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225716/index.m3u8",
- "http://39.135.137.24:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226008/1.m3u8",
- "http://39.134.115.163:8080/PLTV/88888910/224/3221225635/index.m3u8",
- "http://39.135.138.59:18890/PLTV/88888910/224/3221225631/index.m3u8",
- "http://39.134.24.24/PLTV/88888888/224/3221225666/index.m3u8"
- ]
- },
- {
- "name": "CCTV-9",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225633/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225663/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225633/index.m3u8",
- "http://39.134.134.86/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226236/1.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225502/index.m3u8"
- ]
- },
- {
- "name": "CCTV-10",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225624/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225704/index.m3u8",
- "http://39.135.138.59:18890/PLTV/88888910/224/3221225627/index.m3u8",
- "http://39.135.137.35:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225730/1.m3u8"
- ]
- },
- {
- "name": "CCTV-11",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225750/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225739/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225750/index.m3u8",
- "http://39.135.137.38:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225597/1.m3u8"
- ]
- },
- {
- "name": "CCTV-12",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225670/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225645/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225670/index.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225498/index.m3u8"
- ]
- },
- {
- "name": "CCTV-13",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225787/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225742/index.m3u8",
- "http://39.135.47.87/PLTV/77777777/224/3221226819/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225787/index.m3u8",
- "http://39.134.24.24/PLTV/88888888/224/3221225650/index.m3u8"
- ]
- },
- {
- "name": "CCTV-14",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225673/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225648/index.m3u8",
- "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://111.40.196.9/PLTV/88888888/224/3221225573/index.m3u8"
- ]
- },
- {
- "name": "CCTV-15",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225830/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225693/index.m3u8",
- "http://39.135.47.87/PLTV/77777777/224/3221226818/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225830/index.m3u8",
- "http://110.72.57.106:808/hls/116/index.m3u8"
- ]
- },
- {
- "name": "CCTV-16",
- "urls": [
- "http://ott.js.chinamobile.com/PLTV/3/224/3221228144/index.m3u8",
- "http://39.135.129.162/hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226880/index.m3u8",
- "http://59.49.72.48/live.aishang.ctlcdn.com/00000110240388_1/encoder/0/playlist.m3u8?CONTENTID=00000110240388_1",
- "https://live.olympicchannelchina.cn:443/aoyun/cctv16_1ud.m3u8"
- ]
- },
- {
- "name": "CCTV-17",
- "urls": [
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225833/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225766/index.m3u8",
- "http://39.135.47.66/cdnrrs.gx.chinamobile.com/PLTV/3/224/3221225833/index.m3u8",
- "http://39.134.24.24/PLTV/88888888/224/3221225859/index.m3u8"
- ]
- },
- {
- "name": "CCTV地理",
- "urls": [
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226071/1/index.m3u8?fmt=ts2hls$8M1080P",
- "http://39.136.18.105/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226071/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&hms_devid=4691,4699&online=1632725720&vqe=3",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226071/1/index.m3u8?fmt=ts2hls"
- ]
- },
- {
- "name": "CCTV兵器",
- "urls": [
- "http://39.136.18.98/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226111/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&ocs=2_39.136.18.75_80&hms_devid=4691,4703&online=1632725806&vqe=3",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226111/1/index.m3u8?fmt=ts2hls"
- ]
- },
- {
- "name": "CCTV台球",
- "urls": [
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226117/1/index.m3u8?fmt=ts2hls$8M1080P",
- "http://39.136.18.91/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226117/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&hms_devid=4691,4705&online=1632725860&vqe=3",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226117/1/index.m3u8?fmt=ts2hls"
- ]
- },
- {
- "name": "CCTV文化",
- "urls": [
- "http://39.136.18.87/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226100/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&hms_devid=4691,4698&online=1632725946&vqe=3",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226100/1/index.m3u8?fmt=ts2hls"
- ]
- },
- {
- "name": "CCTV时尚",
- "urls": [
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226104/1/index.m3u8?fmt=ts2hls$8M1080P",
- "http://39.136.18.67/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226104/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&ocs=2_39.136.18.93_80&hms_devid=4691,4694&online=1632725998&vqe=3",
- "http://cg01.hrtn.net:9090/live/jspd_1500.m3u8",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226104/1/index.m3u8?fmt=ts2hls"
- ]
- },
- {
- "name": "CCTV怀旧",
- "urls": [
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225765/1/index.m3u8?fmt=ts2hls$2M1080P",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226097/1/index.m3u8?fmt=ts2hls$8M1080P",
- "http://39.136.18.103/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226097/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&hms_devid=4691,4701&online=1632726052&vqe=3",
- "http://cg01.hrtn.net:9090/live/hjjc_1500.m3u8",
- "http://117.148.179.158/PLTV/88888888/224/3221231544/index.m3u8",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226097/1/index.m3u8?fmt=ts2hls"
- ]
- },
- {
- "name": "CCTV剧场",
- "urls": [
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226124/1/index.m3u8?fmt=ts2hls",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226124/1/index.m3u8?fmt=ts2hls",
- "http://117.148.179.172/PLTV/88888888/224/3221231540/index.m3u8"
- ]
- },
- {
- "name": "CCTV风云",
- "urls": [
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225700/1/index.m3u8?fmt=ts2hls$2M1080P",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226107/1/index.m3u8?fmt=ts2hls$8M1080P",
- "http://39.136.18.94/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226107/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&hms_devid=4691,4708&online=1632726245&vqe=3",
- "http://cg01.hrtn.net:9090/live/fyjc_1500.m3u8",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226107/1/index.m3u8?fmt=ts2hls"
- ]
- },
- {
- "name": "CCTV足球",
- "urls": [
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225734/1/index.m3u8?fmt=ts2hls$2M1080P",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226153/1/index.m3u8?fmt=ts2hls$8M1080P",
- "http://39.136.18.80/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226153/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&ocs=2_39.136.18.69_80&hms_devid=4691,4693&online=1632726315&vqe=3",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226153/1/index.m3u8?fmt=ts2hls",
- "http://cg01.hrtn.net:9090/live/fyzq_1500.m3u8",
- "http://39.134.216.5/live.hcs.cmvideo.cn:8088/ws_v/2018/fyzq/fyzq711/1000/index.m3u8?ProgramID=&encrypt=1"
- ]
- },
- {
- "name": "CCTV音乐",
- "urls": [
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225698/1/index.m3u8?fmt=ts2hls$2M1080P",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226083/1/index.m3u8?fmt=ts2hls",
- "http://cg01.hrtn.net:9090/live/fyyy_1500.m3u8",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226083/1/index.m3u8?fmt=ts2hls"
- ]
- },
- {
- "name": "CCTV网球",
- "urls": [
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226114/1/index.m3u8?fmt=ts2hls$8M1080P",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225674/1/index.m3u8?fmt=ts2hls$2M1080P",
- "http://39.136.18.95/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226114/1/index.m3u8?fmt=ts2hls&icpid=88888888&from=1&ocs=2_39.136.18.72_80&hms_devid=4691,4708&online=1632726406&vqe=3",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226114/1/index.m3u8?fmt=ts2hls"
- ]
- },
- {
- "name": "央视精品",
- "urls": [
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225675/1/index.m3u8?fmt=ts2hls$3M1080P",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221226100/1/index.m3u8?fmt=ts2hls$8M1080P"
- ]
- },
- {
- "name": "教育1台",
- "urls": [
- "http://117.136.154.86/PLTV/88888888/224/3221225701/index.m3u8",
- "http://39.130.202.81:6610/gitv_live/G_CETV-1-HD/G_CETV-1-HD.m3u8",
- "http://117.148.179.156/PLTV/88888888/224/3221231714/index.m3u8",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225723/1/index.m3u8?fmt=ts2hls"
- ]
- },
- {
- "name": "湖南卫视",
- "urls": [
- "http://111.40.196.9/PLTV/88888888/224/3221225554/index.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225521/index.m3u8",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225707/1/index.m3u8?fmt=ts2hls",
- "http://39.135.138.60:18890/PLTV/88888910/224/3221225745/index.m3u8",
- "http://39.135.138.59:18890/PLTV/88888910/224/3221225704/index.m3u8",
- "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226509/1.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225519/index.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225594/index.m3u8"
- ]
- },
- {
- "name": "湖南经视",
- "urls": [
- "http://124.232.231.246:6610/000000001001/201500000068/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
- "http://149.129.100.78/hunan.php?id=280",
- "http://58.20.64.92:9999/tsfile/live/1000_1.m3u8",
- "http://124.232.231.246:6610/000000001001/201500000234/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
- "http://111.40.196.25/PLTV/88888888/224/3221225658/index.m3u8"
- ]
- },
- {
- "name": "湖南都市",
- "urls": [
- "http://124.232.231.246:6610/000000001001/201500000151/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
- "http://58.20.64.92:9999/tsfile/live/1001_1.m3u8",
- "http://149.129.100.78/hunan.php?id=346",
- "http://124.232.231.246:6610/000000001001/201500000235/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"
- ]
- },
- {
- "name": "湖南电影",
- "urls": [
- "http://58.20.64.92:9999/tsfile/live/1003_1.m3u8",
- "http://124.232.231.246:6610/000000001001/201500000237/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"
- ]
- },
- {
- "name": "湖南电视剧",
- "urls": [
- "http://58.20.64.92:9999/tsfile/live/1042_1.m3u8",
- "http://124.232.231.246:6610/000000001001/201500000155/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
- "http://124.232.231.246:6610/000000001001/201500000236/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
- "http://124.232.231.246:6610/000000001001/201500000236/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"
- ]
- },
- {
- "name": "湖南公共",
- "urls": [
- "http://124.232.231.246:6610/000000001001/201500000241/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
- "http://124.232.231.246:6610/000000001001/201500000222/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
- "http://124.232.231.246:6610/000000001001/201500000241/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"
- ]
- },
- {
- "name": "湖南娱乐",
- "urls": [
- "http://124.232.231.246:6610/000000001001/201500000152/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
- "http://124.232.231.246:6610/000000001001/201500000239/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
- "http://124.232.231.246:6610/000000001001/201500000239/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"
- ]
- },
- {
- "name": "湖南国际",
- "urls": [
- "http://124.232.231.246:6610/000000001001/201500000242/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"
- ]
- },
- {
- "name": "金鹰纪实",
- "urls": [
- "http://39.130.202.81:6610/gitv_live/G_JINYINGJS-HD/G_JINYINGJS-HD.m3u8",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225671/1/index.m3u8?fmt=ts2hls"
- ]
- },
- {
- "name": "长沙政法",
- "urls": [
- "http://124.232.231.246:6610/000000001001/201500000229/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
- "http://124.232.231.246:6610/000000001001/201500000229/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2"
- ]
- },
- {
- "name": "东方卫视",
- "urls": [
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225752/1/index.m3u8?fmt=ts2hls",
- "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226237/1.m3u8",
- "http://39.135.138.59:18890/PLTV/88888910/224/3221225658/index.m3u8",
- "http://39.135.138.59:18890/PLTV/88888910/224/3221225659/index.m3u8",
- "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/hddfws/2300000/mnf.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225542/index.m3u8"
- ]
- },
- {
- "name": "江苏卫视",
- "urls": [
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225751/1/index.m3u8?fmt=ts2hls",
- "http://111.40.196.9/PLTV/88888888/224/3221225596/index.m3u8",
- "http://39.135.138.59:18890/PLTV/88888910/224/3221225743/index.m3u8",
- "http://117.148.179.160/PLTV/88888888/224/3221231447/index.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225578/index.m3u8"
- ]
- },
- {
- "name": "浙江卫视",
- "urls": [
- "http://111.40.196.9/PLTV/88888888/224/3221225523/index.m3u8",
- "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225612/1.m3u8",
- "http://39.134.67.55:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225612/1.m3u8",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225750/1/index.m3u8?fmt=ts2hls",
- "http://111.40.196.9/PLTV/88888888/224/3221225538/index.m3u8"
- ]
- },
- {
- "name": "深圳卫视",
- "urls": [
- "http://39.134.39.37/PLTV/88888888/224/3221226199/index.m3u8",
- "http://39.134.39.39/PLTV/88888888/224/3221226199/index.m3u8",
- "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226245/1.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225602/index.m3u8"
- ]
- },
- {
- "name": "北京卫视",
- "urls": [
- "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226436/1.m3u8",
- "http://39.134.39.37/PLTV/88888888/224/3221226161/index.m3u8",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225754/1/index.m3u8?fmt=ts2hls",
- "http://39.134.24.24/PLTV/88888888/224/3221225646/index.m3u8"
- ]
- },
- {
- "name": "冬奥纪实",
- "urls": [
- "http://39.135.138.58:18890/PLTV/88888910/224/3221225676/index.m3u8",
- "http://39.130.202.81:6610/gitv_live/G_BEIJINGJS-HD/G_BEIJINGJS-HD.m3u8",
- "http://39.134.135.124/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226560/1.m3u8",
- "http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226560/1.m3u8"
- ]
- },
- {
- "name": "北京青年",
- "urls": [
- "http://39.134.135.124/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226562/1.m3u8",
- "http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226562/1.m3u8"
- ]
- },
- {
- "name": "北京生活",
- "urls": [
- "http://39.134.135.124/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226561/1.m3u8",
- "http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226561/1.m3u8"
- ]
- },
- {
- "name": "北京新闻",
- "urls": [
- "http://39.134.135.124/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226437/1.m3u8",
- "http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226437/1.m3u8"
- ]
- },
- {
- "name": "北京文艺",
- "urls": [
- "http://39.134.135.82/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226440/1.m3u8"
- ]
- },
- {
- "name": "北京影视",
- "urls": [
- "http://39.134.135.82/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226486/1.m3u8"
- ]
- },
- {
- "name": "上海新闻",
- "urls": [
- "http://111.40.196.9/PLTV/88888888/224/3221225499/index.m3u8",
- "http://183.207.255.188/live/program/live/xwzhhd/4000000/mnf.m3u8"
- ]
- },
- {
- "name": "第一财经",
- "urls": [
- "http://39.134.39.39/PLTV/88888888/224/3221226172/index.m3u8",
- "http://39.134.39.37/PLTV/88888888/224/3221226172/index.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225497/index.m3u8",
- "http://39.134.39.39/PLTV/88888888/224/3221226172/index.m3u8"
- ]
- },
- {
- "name": "上海纪实",
- "urls": [
- "http://39.134.39.37/PLTV/88888888/224/3221226174/index.m3u8",
- "http://39.134.39.39/PLTV/88888888/224/3221226174/index.m3u8",
- "http://39.134.155.141/PLTV/88888888/224/3221225590/index.m3u8"
- ]
- },
- {
- "name": "上海娱乐",
- "urls": [
- "http://111.40.196.9/PLTV/88888888/224/3221225624/index.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225632/index.m3u8",
- "http://39.134.135.82/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226325/1.m3u8"
- ]
- },
- {
- "name": "天津卫视",
- "urls": [
- "http://39.135.138.60:18890/PLTV/88888910/224/3221225739/index.m3u8",
- "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/tjwshd/2300000/mnf.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225556/index.m3u8",
- "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226502/1.m3u8"
- ]
- },
- {
- "name": "安徽卫视",
- "urls": [
- "http://39.135.138.59:18890/PLTV/88888910/224/3221225737/index.m3u8",
- "http://39.135.138.59:18890/PLTV/88888910/224/3221225691/index.m3u8",
- "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226499/1.m3u8",
- "http://39.134.39.37/PLTV/88888888/224/3221226205/index.m3u8",
- "http://39.134.24.24/PLTV/88888888/224/3221225638/index.m3u8"
- ]
- },
- {
- "name": "重庆卫视",
- "urls": [
- "http://183.207.248.71:80/cntv/live1/HD-8000k-1080P-chongqingstv/HD-8000k-1080P-chongqingstv",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225686/1/index.m3u8?fmt=ts2hls",
- "http://39.135.138.59:18890/PLTV/88888910/224/3221225734/index.m3u8",
- "http://womlive.cloud.wo.cn/tvlive/100018/otpzod_hn,100018_hls_pull_2000K_live.m3u8",
- "http://39.134.24.24/PLTV/88888888/224/3221225592/index.m3u8"
- ]
- },
- {
- "name": "四川卫视",
- "urls": [
- "http://39.130.202.81:6610/gitv_live/G_SICHUAN-HD/G_SICHUAN-HD.m3u8",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225757/1/index.m3u8?fmt=ts2hls",
- "http://womlive.cloud.wo.cn/tvlive/100017/otpzod_hn,100017_hls_pull_2000K_live.m3u8",
- "http://39.134.24.24/PLTV/88888888/224/3221225704/index.m3u8"
- ]
- },
- {
- "name": "东南卫视",
- "urls": [
- "http://39.135.138.59:18890/PLTV/88888910/224/3221225657/index.m3u8",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225739/1/index.m3u8?fmt=ts2hls",
- "http://39.134.135.124/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226496/1.m3u8",
- "http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226496/1.m3u8"
- ]
- },
- {
- "name": "海峡卫视",
- "urls": [
- "rtsp://183.252.166.199/PLTV/88888888/224/3221226128/10000100000000060000000002434539_0.smil"
- ]
- },
- {
- "name": "广东卫视",
- "urls": [
- "http://39.135.138.60:18890/PLTV/88888910/224/3221225701/index.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225533/index.m3u8",
- "http://39.136.18.70/cdnrrs.gz.chinamobile.com/PLTV/88888888/224/3221225720/1/index.m3u8?fmt=ts2hls",
- "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/gdwshd/2300000/mnf.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225531/index.m3u8"
- ]
- },
- {
- "name": "广西卫视",
- "urls": [
- "http://womlive.cloud.wo.cn/tvlive/100021/otpzod_otpzod,100021_hls_pull_2000K_live.m3u8",
- "http://39.130.202.81:6610/gitv_live/G_GUANGXI-HD/G_GUANGXI-HD.m3u8",
- "rtsp://183.252.176.54:554/PLTV/88888888/224/3221226070/10000100000000060000000002296911_0.smil",
- "http://111.40.196.9/PLTV/88888888/224/3221225518/index.m3u8"
- ]
- },
- {
- "name": "贵州卫视",
- "urls": [
- "http://womlive.cloud.wo.cn/tvlive/100019/otpzod_otpzod,100019_hls_pull_2000K_live.m3u8",
- "rtsp://183.252.166.199:554/PLTV/88888888/224/3221226126/10000100000000060000000002434541_0.smil",
- "http://39.134.66.66/PLTV/88888888/224/3221225561/index.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225522/index.m3u8"
- ]
- },
- {
- "name": "海南卫视",
- "urls": [
- "http://womlive.cloud.wo.cn/tvlive/100022/otpzod_otpzod,100022_hls_pull_2000K_live.m3u8",
- "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225639/1.m3u8",
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225639/1.m3u8"
- ]
- },
- {
- "name": "河北卫视",
- "urls": [
- "http://womlive.cloud.wo.cn/tvlive/100008/otpzod_otpzod,100008_hls_pull_2000K_live.m3u8",
- "http://39.134.66.66/PLTV/88888888/224/3221225867/index.m3u8",
- "http://183.207.248.71:80/cntv/live1/n-hebeistv/n-hebeistv",
- "http://39.134.66.66/PLTV/88888888/224/3221225867/index.m3u8"
- ]
- },
- {
- "name": "河南卫视",
- "urls": [
- "http://womlive.cloud.wo.cn/tvlive/100009/otpzod_otpzod,100009_hls_pull_2000K_live.m3u8",
- "rtsp://183.252.176.54:554/PLTV/88888888/224/3221226076/10000100000000060000000002296917_0.smil",
- "http://39.134.24.24/PLTV/88888888/224/3221225716/index.m3u8"
- ]
- },
- {
- "name": "黑龙江卫视",
- "urls": [
- "http://111.40.196.9/PLTV/88888888/224/3221225544/index.m3u8",
- "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226239/1.m3u8"
- ]
- },
- {
- "name": "湖北卫视",
- "urls": [
- "http://223.110.245.154/ott.js.chinamobile.com/PLTV/3/224/3221227703/index.m3u8",
- "http://39.135.138.59:18890/PLTV/88888910/224/3221225699/index.m3u8",
- "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226240/1.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225566/index.m3u8"
- ]
- },
- {
- "name": "吉林卫视",
- "urls": [
- "rtsp://183.252.166.199/PLTV/88888888/224/3221226792/48616745.smil",
- "http://39.134.24.24/PLTV/88888888/224/3221225804/index.m3u8"
- ]
- },
- {
- "name": "江西卫视",
- "urls": [
- "http://39.134.39.39/PLTV/88888888/224/3221226207/index.m3u8",
- "http://117.148.179.160/PLTV/88888888/224/3221231964/index.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225591/index.m3u8"
- ]
- },
- {
- "name": "辽宁卫视",
- "urls": [
- "http://39.135.138.59:18890/PLTV/88888910/224/3221225696/index.m3u8",
- "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/lnwshd/2300000/mnf.m3u8",
- "http://39.134.135.84/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226500/1.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225593/index.m3u8"
- ]
- },
- {
- "name": "黑龙江卫视",
- "urls": [
- "http://39.135.138.59:18890/PLTV/88888910/224/3221225736/index.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225539/index.m3u8",
- "http://117.148.179.160/PLTV/88888888/224/3221231967/index.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225541/index.m3u8"
- ]
- },
- {
- "name": "山东卫视",
- "urls": [
- "http://39.135.138.59:18890/PLTV/88888910/224/3221225697/index.m3u8",
- "http://219.151.31.43/liveplay-kk.rtxapp.com/live/program/live/sdwshd/2300000/mnf.m3u8",
- "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226501/1.m3u8",
- "http://39.134.135.82/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226501/1.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225546/index.m3u8"
- ]
- },
- {
- "name": "山西卫视",
- "urls": [
- "http://womlive.cloud.wo.cn/tvlive/100010/otpzod_otpzod,100010_hls_pull_2000K_live.m3u8",
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225624/1.m3u8",
- "http://womlive.cloud.wo.cn/tvlive/100010/otpzod_otpzod,100010_hls_pull_2000K_live.m3u8",
- "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225624/1.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225520/index.m3u8"
- ]
- },
- {
- "name": "云南卫视",
- "urls": [
- "http://39.130.202.81:6610/gitv_live/G_YUNNAN-HD/G_YUNNAN-HD.m3u8",
- "rtsp://183.252.166.199/PLTV/88888888/224/3221226108/10000100000000060000000002310150_0.smil",
- "rtsp://183.252.176.54:554/PLTV/88888888/224/3221226108/10000100000000060000000002310150_0.smil",
- "http://womlive.cloud.wo.cn/tvlive/100016/otpzod_hn,100016_hls_pull_2000K_live.m3u8",
- "http://183.207.248.71:80/cntv/live1/n-yntv1/n-yntv1",
- "http://39.134.24.24/PLTV/88888888/224/3221225696/index.m3u8"
- ]
- },
- {
- "name": "新疆卫视",
- "urls": [
- "http://womlive.cloud.wo.cn/tvlive/100027/otpzod_otpzod,100027_hls_pull_2000K_live.m3u8",
- "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225635/1.m3u8",
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225635/1.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225598/index.m3u8"
- ]
- },
- {
- "name": "陕西卫视",
- "urls": [
- "http://39.134.66.66/PLTV/88888888/224/3221225567/index.m3u8",
- "http://39.134.66.66/PLTV/88888888/224/3221225567/index.m3u8",
- "http://183.207.248.71:80/cntv/live1/n-shanxi1stv/n-shanxi1stv"
- ]
- },
- {
- "name": "甘肃卫视",
- "urls": [
- "http://39.134.39.39/PLTV/88888888/224/3221226240/index.m3u8",
- "http://womlive.cloud.wo.cn/tvlive/100028/otpzod_otpzod,100028_hls_pull_2000K_live.m3u8",
- "http://183.207.248.71:80/cntv/live1/n-gansustv/n-gansustv",
- "http://39.134.24.24/PLTV/88888888/224/3221225714/index.m3u8"
- ]
- },
- {
- "name": "青海卫视",
- "urls": [
- "http://live.geermurmt.com/qhws/sd/live.m3u8",
- "http://womlive.cloud.wo.cn/tvlive/100024/otpzod_hn,100024_hls_pull_2000K_live.m3u8"
- ]
- },
- {
- "name": "精品大剧",
- "urls": [
- "http://111.40.196.9/PLTV/88888888/224/3221225612/index.m3u8",
- "http://39.134.135.126/otttv.bj.chinamobile.com/TVOD/88888888/224/3221226331/1.m3u8"
- ]
- },
- {
- "name": "爱情喜剧",
- "urls": [
- "http://111.40.196.9/PLTV/88888888/224/3221225616/index.m3u8",
- "http://111.40.196.9/PLTV/88888888/224/3221225624/index.m3u8"
- ]
- },
- {
- "name": "IPTV古装剧场",
- "urls": [
- "http://58.20.64.92:9999/tsfile/live/1044_1.m3u8"
- ]
- },
- {
- "name": "超级电视剧",
- "urls": [
- "http://39.134.67.55:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225716/1.m3u8",
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225716/1.m3u8",
- "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225716/1.m3u8"
- ]
- },
- {
- "name": "超级综艺",
- "urls": [
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225714/1.m3u8",
- ",http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225714/1.m3u8"
- ]
- },
- {
- "name": "潮妈辣婆",
- "urls": [
- "http://39.134.67.55:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225685/1.m3u8",
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225685/1.m3u8",
- "http://39.135.137.15:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225685/1.m3u8"
- ]
- },
- {
- "name": "东北热剧",
- "urls": [
- "http://39.135.137.15:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225741/1.m3u8",
- "http://39.135.137.24:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225741/1.m3u8",
- "http://39.135.137.32:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225741/1.m3u8"
- ]
- },
- {
- "name": "明星大片",
- "urls": [
- "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225664/1.m3u8",
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225664/1.m3u8"
- ]
- },
- {
- "name": "古装剧场",
- "urls": [
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225663/1.m3u8",
- "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225663/1.m3u8"
- ]
- },
- {
- "name": "欢乐剧场",
- "urls": [
- "http://39.135.137.15:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225742/1.m3u8",
- "http://39.135.137.24:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225742/1.m3u8",
- "http://39.135.137.32:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225742/1.m3u8"
- ]
- },
- {
- "name": "家庭剧场",
- "urls": [
- "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225677/1.m3u8",
- "http://39.134.67.55:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225677/1.m3u8",
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225677/1.m3u8"
- ]
- },
- {
- "name": "悬疑剧场",
- "urls": [
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225665/1.m3u8",
- "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225665/1.m3u8"
- ]
- },
- {
- "name": "军旅剧场",
- "urls": [
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225676/1.m3u8",
- "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225676/1.m3u8"
- ]
- },
- {
- "name": "金牌综艺",
- "urls": [
- "http://39.135.137.32:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225666/1.m3u8",
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225666/1.m3u8",
- "http://39.135.137.38:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225666/1.m3u8"
- ]
- },
- {
- "name": "精品大剧",
- "urls": [
- "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225670/1.m3u8",
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225670/1.m3u8",
- "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225670/1.m3u8"
- ]
- },
- {
- "name": "精品记录",
- "urls": [
- "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225672/1.m3u8",
- "http://39.134.67.55:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225672/1.m3u8"
- ]
- },
- {
- "name": "军事评论",
- "urls": [
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225668/1.m3u8",
- "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225668/1.m3u8",
- "http://183.207.248.71:80/cntv/live1/n-junshipl/n-junshipl"
- ]
- },
- {
- "name": "农业致富",
- "urls": [
- "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225683/1.m3u8",
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225683/1.m3u8"
- ]
- },
- {
- "name": "四海钓鱼",
- "urls": [
- "http://cg01.hrtn.net:9090/live/shdy_1500.m3u8",
- "http://124.232.231.246:6610/000000001001/201500000054/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
- "http://58.20.64.92:9999/tsfile/live/1031_1.m3u8",
- "http://womlive.cloud.wo.cn/tvlive/100077/otpzod_otpzod,100077_hls_pull_2000K_live.m3u8"
- ]
- },
- {
- "name": "黑莓动画",
- "urls": [
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225662/1.m3u8",
- "http://39.134.67.7:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225662/1.m3u8"
- ]
- },
- {
- "name": "金鹰卡通",
- "urls": [
- "http://124.232.231.246:6610/000000001001/201500000154/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
- "http://124.232.231.246:6610/000000001001/201500000238/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2#http://124.232.231.246:6610/000000001001/201500000240/index.m3u8?IASHttpSessionId=SLB2046220190906022827233263&m3u8_level=2",
- "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225653/1.m3u8",
- "http://39.134.66.66/PLTV/88888888/224/3221225561/index.m3u8"
- ]
- },
- {
- "name": "动漫秀场",
- "urls": [
- "http://111.40.196.9/PLTV/88888888/224/3221225599/index.m3u8"
- ]
- },
- {
- "name": "优漫卡通",
- "urls": [
- "http://39.134.67.2:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225656/1.m3u8",
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225656/1.m3u8",
- "http://39.134.66.66/PLTV/88888888/224/3221225556/index.m3u8"
- ]
- },
- {
- "name": "芒果TV直播",
- "urls": [
- "http://117.148.179.160/PLTV/88888888/224/3221231276/index.m3u8",
- "http://117.148.179.160/PLTV/88888888/224/3221231301/index.m3u8",
- "http://117.148.179.160/PLTV/88888888/224/3221231310/index.m3u8",
- "http://117.148.179.160/PLTV/88888888/224/3221231273/index.m3u8"
- ]
- },
- {
- "name": "游戏直播",
- "urls": [
- "http://39.134.66.66/PLTV/88888888/224/3221225559/index.m3u8"
- ]
- },
- {
- "name": "HBO(测试)",
- "urls": [
- "http://50.7.161.82:8278/streams/d/Hbo/playlist.m3u8"
- ]
- },
- {
- "name": "旋舞未来",
- "urls": [
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225719/1.m3u8"
- ]
- },
- {
- "name": "旋舞未来",
- "urls": [
- "http://39.134.67.6:80/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225719/1.m3u8"
- ]
- }
- ]
- }
- ],
- "flags": [
- "youku",
- "qq",
- "iqiyi",
- "qiyi",
- "letv",
- "sohu",
- "tudou",
- "pptv",
- "mgtv",
- "wasu",
- "bilibili"
- ],
- "spider": "https://pglblb-1307091970.cos.ap-guangzhou.myqcloud.com/custom_spider.jar",
- "parses": [
- {
- "name": "默认解析",
- "url": "https://okjx.cc?url="
- },
- {
- "name": "备用解析",
- "url": "https://m2090.com/?url="
- },
- {
- "name": "OK解析",
- "url": "https://okjx.cc/?url="
- },
- {
- "name": "U盘解析",
- "url": "http://api.u1o.net/?url="
- },
- {
- "name": "ZSJ解析",
- "url": "http://jx.hao-zsj.cn/vip/?url="
- },
- {
- "name": "Parw解析",
- "url": "https://vip.parwix.com:4433/player/?url="
- },
- {
- "name": "老板解析",
- "url": "https://vip.laobandq.com/jiexi.php?url="
- },
- {
- "name": "百玉解析",
- "url": "http://api.baiyug.vip/index.php?url="
- }
- ],
- "Parallel": [
- "http://jx.hao-zsj.cn/vip/?url=",
- "https://jx.renrenmi.cc/?url=",
- "https://m2090.com/?url=",
- "https://vip.parwix.com:4433/player/?url=",
- "https://jx.ns360.cn/1080/jiexi/?url=",
- "http://jjxx.me/?url="
- ],
- "ijk": [
- {
- "group": "软解码",
- "options": [
- {
- "category": 4,
- "name": "opensles",
- "value": "0"
- },
- {
- "category": 4,
- "name": "overlay-format",
- "value": "842225234"
- },
- {
- "category": 4,
- "name": "framedrop",
- "value": "1"
- },
- {
- "category": 4,
- "name": "soundtouch",
- "value": "1"
- },
- {
- "category": 4,
- "name": "start-on-prepared",
- "value": "1"
- },
- {
- "category": 1,
- "name": "http-detect-range-support",
- "value": "0"
- },
- {
- "category": 1,
- "name": "fflags",
- "value": "fastseek"
- },
- {
- "category": 2,
- "name": "skip_loop_filter",
- "value": "48"
- },
- {
- "category": 4,
- "name": "reconnect",
- "value": "1"
- },
- {
- "category": 4,
- "name": "max-buffer-size",
- "value": "5242880"
- },
- {
- "category": 4,
- "name": "enable-accurate-seek",
- "value": "0"
- },
- {
- "category": 4,
- "name": "mediacodec",
- "value": "0"
- },
- {
- "category": 4,
- "name": "mediacodec-auto-rotate",
- "value": "0"
- },
- {
- "category": 4,
- "name": "mediacodec-handle-resolution-change",
- "value": "0"
- },
- {
- "category": 4,
- "name": "mediacodec-hevc",
- "value": "0"
- }
- ]
- },
- {
- "group": "硬解码",
- "options": [
- {
- "category": 4,
- "name": "opensles",
- "value": "0"
- },
- {
- "category": 4,
- "name": "overlay-format",
- "value": "842225234"
- },
- {
- "category": 4,
- "name": "framedrop",
- "value": "1"
- },
- {
- "category": 4,
- "name": "soundtouch",
- "value": "1"
- },
- {
- "category": 4,
- "name": "start-on-prepared",
- "value": "1"
- },
- {
- "category": 1,
- "name": "http-detect-range-support",
- "value": "0"
- },
- {
- "category": 1,
- "name": "fflags",
- "value": "fastseek"
- },
- {
- "category": 2,
- "name": "skip_loop_filter",
- "value": "48"
- },
- {
- "category": 4,
- "name": "reconnect",
- "value": "1"
- },
- {
- "category": 4,
- "name": "max-buffer-size",
- "value": "5242880"
- },
- {
- "category": 4,
- "name": "enable-accurate-seek",
- "value": "0"
- },
- {
- "category": 4,
- "name": "mediacodec",
- "value": "1"
- },
- {
- "category": 4,
- "name": "mediacodec-auto-rotate",
- "value": "1"
- },
- {
- "category": 4,
- "name": "mediacodec-handle-resolution-change",
- "value": "1"
- },
- {
- "category": 4,
- "name": "mediacodec-hevc",
- "value": "1"
- }
- ]
- }
- ],
- "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"
- ]
- }
|