diff --git a/checker/check.go b/checker/check.go index 05d6382..9e8812e 100644 --- a/checker/check.go +++ b/checker/check.go @@ -11,12 +11,16 @@ import ( "github.com/sirupsen/logrus" ) +// HttpClient provides an http client with a timeout for users func HttpClient(timeout time.Duration) *http.Client { return &http.Client{ Timeout: timeout * time.Second, } } +// FetchSource performs a get request for the given url and returns the body content +// @params url: target url +// @params timeout: timeout for request func FetchSource(url string, timeout time.Duration) (error, string) { client := HttpClient(timeout) resp, err := client.Get(url) @@ -43,7 +47,10 @@ type urlChecker struct { client *http.Client } +// Do is method of struct urlChecker. +// It performs GET request for the url and saves the result to log file. func (c *urlChecker) Do() { + fmt.Println(c.url) defer func() { if err := recover(); err != nil { logrus.WithFields(logrus.Fields{ @@ -61,6 +68,7 @@ func (c *urlChecker) Do() { logrus.WithFields(logrus.Fields{ "url": c.url, }).Infoln("Passed!") + strChan <- c.url } else { logrus.WithFields(logrus.Fields{ "url": c.url, @@ -69,10 +77,18 @@ func (c *urlChecker) Do() { } } +// CheckRangeSycn checks all the urls in the range given by url +// @params url: a url containing a range, through which we could get a sequence of urls within this range. +// The range must be a number range. func CheckRangeSycn(url string, timeout time.Duration) { - + // generate all the urls according to the url range + urls := ParseRange(url) + // make use of CheckAllSync to complete this check + CheckAllSync(urls, timeout) } +// CheckAllSync checks all the urls simultaneously +// @params urls: all the url that need to check func CheckAllSync(urls []string, timeout time.Duration) { runtime.GOMAXPROCS(runtime.NumCPU()) client := HttpClient(timeout) diff --git a/checker/init.go b/checker/init.go index 39c69b3..eb2a7b5 100644 --- a/checker/init.go +++ b/checker/init.go @@ -9,6 +9,7 @@ import ( func init() { initLog() + go writeToFile() } func initLog() { @@ -30,3 +31,30 @@ func initLog() { }) logrus.SetOutput(logfile) } + +var strChan chan string + +func writeToFile() { + strChan = make(chan string) + // create m3u file + m3upath, err := os.Getwd() + if err != nil { + logrus.Fatalln(err) + } + m3uname := "iptv.m3u" + path := filepath.Join(m3upath, m3uname) + m3ufile, err := os.OpenFile(path, os.O_RDWR|os.O_CREATE, 0666) + if err != nil { + logrus.Fatalln(err) + } + for str := range strChan { + _, err = m3ufile.WriteString(str + "\n") + if err != nil { + logrus.Fatalln(err) + } + } + err = m3ufile.Close() + if err != nil { + logrus.Fatalln(err) + } +} diff --git a/checker/parser.go b/checker/parser.go index b1633b9..93d6f85 100644 --- a/checker/parser.go +++ b/checker/parser.go @@ -54,7 +54,8 @@ func ParseRange(url string) []string { } res := reg.FindAllStringSubmatch(url, -1) if res == nil { - return nil + fmt.Println("No matches found: ", url) + logrus.Fatalln("No matches found: ", url) } prefix := res[0][reg.SubexpIndex("prefix")] suffix := res[0][reg.SubexpIndex("suffix")] diff --git a/docs/tvlist.m3u b/docs/tvlist.m3u index 9aa7fe3..d063c2c 100644 --- a/docs/tvlist.m3u +++ b/docs/tvlist.m3u @@ -23,6 +23,8 @@ http://zteres.sn.chinamobile.com:6060/yinhe/2/ch00000090990000001294/index.m3u8? http://zteres.sn.chinamobile.com:6060/yinhe/2/ch00000090990000001288/index.m3u8?virtualDomain=yinhe.live_hls.zte.com #EXTINF:-1 tvg-id="12" tvg-name="CCTV11" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV11.png" group-title="陕西移动银河",CCTV-11戏曲 http://zteres.sn.chinamobile.com:6060/yinhe/2/ch00000090990000001327/index.m3u8?virtualDomain=yinhe.live_hls.zte.com +#EXTINF:-1 tvg-id="12" tvg-name="CCTV11" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV11.png" group-title="陕西移动银河",CCTV-11戏曲 +http://117.148.179.155/PLTV/88888888/224/3221231711/index.m3u8 #EXTINF:-1 tvg-id="13" tvg-name="CCTV12" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV12.png" group-title="陕西移动银河",CCTV-12社会与法 http://zteres.sn.chinamobile.com:6060/yinhe/2/ch00000090990000001289/index.m3u8?virtualDomain=yinhe.live_hls.zte.com #EXTINF:-1 tvg-id="14" tvg-name="CCTV13" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV13.png" group-title="陕西移动银河",CCTV-13新闻 @@ -31,6 +33,8 @@ http://zteres.sn.chinamobile.com:6060/yinhe/2/ch00000090990000001328/index.m3u8? http://zteres.sn.chinamobile.com:6060/yinhe/2/ch00000090990000001292/index.m3u8?virtualDomain=yinhe.live_hls.zte.com #EXTINF:-1 tvg-id="16" tvg-name="CCTV15" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV15.png" group-title="陕西移动银河",CCTV-15音乐 http://zteres.sn.chinamobile.com:6060/yinhe/2/ch00000090990000001020/index.m3u8?virtualDomain=yinhe.live_hls.zte.com +#EXTINF:-1 tvg-id="16" tvg-name="CCTV15" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV15.png" group-title="陕西移动银河",CCTV-15音乐 +http://117.148.179.155/PLTV/88888888/224/3221231693/index.m3u8 #EXTINF:-1 tvg-id="7249" tvg-name="CCTV16" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV16.png" group-title="陕西移动银河",CCTV-16奥林匹克 http://zteres.sn.chinamobile.com:6060/yinhe/2/ch00000090990000002395/index.m3u8?virtualDomain=yinhe.live_hls.zte.com #EXTINF:-1 tvg-id="17" tvg-name="CCTV17" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV17.png" group-title="陕西移动银河",CCTV-17农业农村 @@ -85,6 +89,8 @@ http://zteres.sn.chinamobile.com:6060/yinhe/2/ch00000090990000001048/index.m3u8? http://zteres.sn.chinamobile.com:6060/yinhe/2/ch00000090990000001055/index.m3u8?virtualDomain=yinhe.live_hls.zte.com #EXTINF:-1 tvg-id="55" tvg-name="陕西卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/shanxi.png" group-title="陕西移动银河",陕西卫视 http://zteres.sn.chinamobile.com:6060/yinhe/2/ch00000090990000001062/index.m3u8?virtualDomain=yinhe.live_hls.zte.com +#EXTINF:-1 tvg-id="55" tvg-name="陕西卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/shanxi.png" group-title="陕西移动银河",陕西卫视 +http://livepull.sxiptv.cn/live/shanxiweishihd.flv?txSecret=25df739ca569e9ffda085cd1fcb0d450&txTime=642ffedb #EXTINF:-1 tvg-id="1988" tvg-name="上海纪实" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/shanghaijishi.png" group-title="陕西移动银河",上海纪实人文 http://zteres.sn.chinamobile.com:6060/yinhe/2/ch00000090990000001330/index.m3u8?virtualDomain=yinhe.live_hls.zte.com #EXTINF:-1 tvg-id="2025" tvg-name="金鹰纪实" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jinyingjishi.png" group-title="陕西移动银河",湖南金鹰纪实 @@ -341,119 +347,62 @@ http://stream.nexttv.com.tw/n001/hd/live.m3u8 http://seb.sason.top/sc/dsxw_fhd.m3u8 #EXTINF:-1 tvg-id="6075" tvg-name="东森财经新闻台" tvg-logo="http://epg.51zmt.top:8000/tb1/gt/EBCFinancialNews.png" group-title="港澳台",东森财经新闻 http://seb.sason.top/sc/dscjxw_fhd.m3u8 -#EXTINF:-1 tvg-id="1" tvg-name="CCTV1" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV1.png" group-title="央视",CCTV-1综合 -http://iptv.tvfix.org/hls/cctv1hd.m3u8 -#EXTINF:-1 tvg-id="2" tvg-name="CCTV2" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV2.png" group-title="央视",CCTV-2财经 -http://iptv.tvfix.org/hls/cctv2hd.m3u8 -#EXTINF:-1 tvg-id="3" tvg-name="CCTV3" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV3.png" group-title="央视",CCTV-3综艺 -http://iptv.tvfix.org/hls/cctv3hd.m3u8 -#EXTINF:-1 tvg-id="4" tvg-name="CCTV4" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV4.png" group-title="央视",CCTV-4国际 -http://iptv.tvfix.org/hls/cctv4hd.m3u8 -#EXTINF:-1 tvg-id="5" tvg-name="CCTV5" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV5.png" group-title="央视",CCTV-5体育 -http://iptv.tvfix.org/hls/cctv5hd.m3u8 -#EXTINF:-1 tvg-id="6" tvg-name="CCTV5+" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV5+.png" group-title="央视",CCTV-5+赛事 -http://iptv.tvfix.org/hls/cctv5phd.m3u8 -#EXTINF:-1 tvg-id="7" tvg-name="CCTV6" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV6.png" group-title="央视",CCTV-6电影 -http://iptv.tvfix.org/hls/cctv6hd.m3u8 -#EXTINF:-1 tvg-id="8" tvg-name="CCTV7" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV7.png" group-title="央视",CCTV-7军事农业 -http://iptv.tvfix.org/hls/cctv7hd.m3u8 -#EXTINF:-1 tvg-id="9" tvg-name="CCTV8" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV8.png" group-title="央视",CCTV-8电视剧 -http://iptv.tvfix.org/hls/cctv8hd.m3u8 -#EXTINF:-1 tvg-id="10" tvg-name="CCTV9" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV9.png" group-title="央视",CCTV-9记录 -http://iptv.tvfix.org/hls/cctv9hd.m3u8 -#EXTINF:-1 tvg-id="11" tvg-name="CCTV10" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV10.png" group-title="央视",CCTV-10科教 -http://iptv.tvfix.org/hls/cctv10hd.m3u8 -#EXTINF:-1 tvg-id="12" tvg-name="CCTV11" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV11.png" group-title="央视",CCTV-11戏曲 -http://iptv.tvfix.org/hls/cctv11hd.m3u8 -#EXTINF:-1 tvg-id="13" tvg-name="CCTV12" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV12.png" group-title="央视",CCTV-12社会与法 -http://iptv.tvfix.org/hls/cctv12hd.m3u8 -#EXTINF:-1 tvg-id="14" tvg-name="CCTV13" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV13.png" group-title="央视",CCTV-13新闻 -http://iptv.tvfix.org/hls/cctv13hd.m3u8 -#EXTINF:-1 tvg-id="15" tvg-name="CCTV14" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV14.png" group-title="央视",CCTV-14少儿 -http://iptv.tvfix.org/hls/cctv14hd.m3u8 -#EXTINF:-1 tvg-id="16" tvg-name="CCTV15" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV15.png" group-title="央视",CCTV-15音乐 -http://iptv.tvfix.org/hls/cctv15hd.m3u8 -#EXTINF:-1 tvg-id="7249" tvg-name="CCTV16" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV16.png" group-title="央视",CCTV-16奥林匹克 -http://iptv.tvfix.org/hls/cctv16hd.m3u8 -#EXTINF:-1 tvg-id="17" tvg-name="CCTV17" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV17.png" group-title="央视",CCTV-17农业农村 -http://iptv.tvfix.org/hls/cctv17hd.m3u8 -#EXTINF:-1 tvg-id="6562" tvg-name="怀旧剧场" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/CCTVPAYFEE7.jpg" group-title="央视",CCTV-怀旧剧场 -http://iptv.tvfix.org/hls/cctvhjjchd.m3u8 -#EXTINF:-1 tvg-id="6568" tvg-name="高尔夫网球" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/CCTVPAYFEE13.jpg" group-title="央视",CCTV-高尔夫网球 -http://iptv.tvfix.org/hls/cctvgefwqhd.m3u8 -#EXTINF:-1 tvg-id="6560" tvg-name="世界地理" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTVshijiedili.png" group-title="央视",CCTV-世界地理 -http://iptv.tvfix.org/hls/cctvsjdlhd.m3u8 -#EXTINF:-1 tvg-id="6563" tvg-name="兵器科技" tvg-logo="http://epg.51zmt.top:8000/tb1/qt/CCTVPAYFEE8.jpg" group-title="央视",CCTV-兵器科技 -http://iptv.tvfix.org/hls/cctvbqkjhd.m3u8 -#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="央视",CCTV-卫生健康 -http://iptv.tvfix.org/hls/cctvwsjkhd.m3u8 -#EXTINF:-1 tvg-id="6559" tvg-name="风云剧场" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTBfengyun.png" group-title="央视",CCTV-风云剧场 -http://iptv.tvfix.org/hls/cctvfyjchd.m3u8 -#EXTINF:-1 tvg-id="6584" tvg-name="央视台球" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTVtaiqiu.png" group-title="央视",CCTV-央视台球 -http://iptv.tvfix.org/hls/cctvtqhd.m3u8 -#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="央视",CCTV-文化精品 -http://iptv.tvfix.org/hls/cctvwhjphd.m3u8 -#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="央视",CCTV-女性健康 -http://iptv.tvfix.org/hls/cctvnxjkhd.m3u8 -#EXTINF:-1 tvg-id="9" tvg-name="CCTV8" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV8.png" group-title="央视",CCTV-电视指南 -http://iptv.tvfix.org/hls/cctvdsznhd.m3u8 -#EXTINF:-1 tvg-id="6557" tvg-name="风云音乐" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTVfengyunyinyue.png" group-title="央视",CCTV-风云音乐 -http://iptv.tvfix.org/hls/cctvfyyyhd.m3u8 -#EXTINF:-1 tvg-id="6000" tvg-name="风云足球" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTVfengyunzuqiu.png" group-title="央视",CCTV-风云足球 -http://iptv.tvfix.org/hls/cctvfyzqhd.m3u8 -#EXTINF:-1 tvg-id="6558" tvg-name="第一剧场" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTVdiyijuchang.png" group-title="央视",CCTV-第一剧场 -http://iptv.tvfix.org/hls/cctvdyjchd.m3u8 -#EXTINF:-1 tvg-id="106" tvg-name="CCTV4K" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/CCTV4k.png" group-title="央视",CCTV-4K -http://iptv.tvfix.org/hls/cctv4k.m3u8 -#EXTINF:-1 tvg-id="20" tvg-name="CGTN" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/cgtn.png" group-title="央视",CGTN高清 -http://iptv.tvfix.org/hls/cgtnhd.m3u8 -#EXTINF:-1 tvg-id="20" tvg-name="CGTN" tvg-logo="http://epg.51zmt.top:8000/tb1/CCTV/cgtn.png" group-title="央视",CGTN纪录高清 -http://iptv.tvfix.org/hls/cgtndochd.m3u8 -#EXTINF:-1 tvg-id="27" tvg-name="湖南卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/hunan.png" group-title="卫视",湖南卫视 -http://iptv.tvfix.org/hls/hunanhd.m3u8 -#EXTINF:-1 tvg-id="28" tvg-name="浙江卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/zhejiang.png" group-title="卫视",浙江卫视 -http://iptv.tvfix.org/hls/zjhd.m3u8 -#EXTINF:-1 tvg-id="29" tvg-name="江苏卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jiangsu.png" group-title="卫视",江苏卫视 -http://iptv.tvfix.org/hls/jshd.m3u8 -#EXTINF:-1 tvg-id="39" tvg-name="天津卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/tianjin.png" group-title="卫视",天津卫视 -http://iptv.tvfix.org/hls/tjhd.m3u8 -#EXTINF:-1 tvg-id="48" tvg-name="湖北卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/hubei.png" group-title="卫视",湖北卫视 -http://iptv.tvfix.org/hls/hbhd.m3u8 -#EXTINF:-1 tvg-id="58" tvg-name="云南卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/yunnan.png" group-title="卫视",云南卫视 -https://hwapi.yunshicloud.com/8xughf/e0bx15.m3u8 -#EXTINF:-1 tvg-id="40" tvg-name="重庆卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/chongqing.png" group-title="卫视",重庆卫视 -http://iptv.tvfix.org/hls/cqhd.m3u8 -#EXTINF:-1 tvg-id="31" tvg-name="东方卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/dongfang.png" group-title="卫视",东方卫视 -http://iptv.tvfix.org/hls/dfhd.m3u8 -#EXTINF:-1 tvg-id="46" tvg-name="黑龙江卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/heilongjiang.png" group-title="卫视",黑龙江卫视 -http://iptv.tvfix.org/hls/hljhd.m3u8 -#EXTINF:-1 tvg-id="36" tvg-name="辽宁卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/liaoning.png" group-title="卫视",辽宁卫视 -http://iptv.tvfix.org/hls/lnhd.m3u8 -#EXTINF:-1 tvg-id="33" tvg-name="广东卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/guangdong.png" group-title="卫视",广东卫视 -http://iptv.tvfix.org/hls/gdhd.m3u8 -#EXTINF:-1 tvg-id="30" tvg-name="北京卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/beijing.png" group-title="卫视",北京卫视 -http://iptv.tvfix.org/hls/brtv1hd.m3u8 -#EXTINF:-1 tvg-id="34" tvg-name="深圳卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/shenzhen.png" group-title="卫视",深圳卫视 -http://iptv.tvfix.org/hls/szhd.m3u8 -#EXTINF:-1 tvg-id="47" tvg-name="河南卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/henan.png" group-title="卫视",河南卫视 -http://iptv.tvfix.org/hls/hnhd.m3u8 -#EXTINF:-1 tvg-id="32" tvg-name="安徽卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/anhui.png" group-title="卫视",安徽卫视 -http://iptv.tvfix.org/hls/ahhd.m3u8 -#EXTINF:-1 tvg-id="38" tvg-name="山东卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/shandong.png" group-title="卫视",山东卫视 -http://iptv.tvfix.org/hls/sdhd.m3u8 -#EXTINF:-1 tvg-id="41" tvg-name="东南卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/dongnan.png" group-title="卫视",东南卫视 -http://iptv.tvfix.org/hls/dnhd.m3u8 -#EXTINF:-1 tvg-id="56" tvg-name="四川卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/sichuan.png" group-title="卫视",四川卫视 -http://iptv.tvfix.org/hls/schd.m3u8 -#EXTINF:-1 tvg-id="50" tvg-name="江西卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/jiangxi.png" group-title="卫视",江西卫视 -http://iptv.tvfix.org/hls/jxhd.m3u8 -#EXTINF:-1 tvg-id="43" tvg-name="广西卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/guangxi.png" group-title="卫视",广西卫视 -http://iptv.tvfix.org/hls/gxhd.m3u8 -#EXTINF:-1 tvg-id="44" tvg-name="贵州卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/guizhou.png" group-title="卫视",贵州卫视 -http://iptv.tvfix.org/hls/gzhd.m3u8 -#EXTINF:-1 tvg-id="37" tvg-name="旅游卫视" tvg-logo="http://epg.51zmt.top:8000/tb1/ws/lvyou.png" group-title="卫视",海南卫视 -http://iptv.tvfix.org/hls/lyhd.m3u8 -#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="未分类",中国蓝新闻 -http://yd-m-l.cztv.com/channels/lantian/channel13/1080p.m3u8 -#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="未分类",EYTV -https://hwapi.yunshicloud.com/679z1m/e71cxz.m3u8 + +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231556/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231562/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231565/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231564/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231568/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231583/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231585/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231621/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231628/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231634/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231640/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231637/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231643/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231652/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231672/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231679/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231687/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231699/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231709/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231727/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231733/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231742/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231763/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231787/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221231790/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221232023/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221232068/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221232143/index.m3u8 +#EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" group-title="电影轮播" +http://117.148.179.155/PLTV/88888888/224/3221232483/index.m3u8 \ No newline at end of file diff --git a/docs/valid_sources.list b/docs/valid_sources.list index 94d21a2..59b599b 100644 --- a/docs/valid_sources.list +++ b/docs/valid_sources.list @@ -11,26 +11,7 @@ CCTV3HD,http://117.148.179.183/PLTV/88888888/224/3221231682/index.m3u8 CCTV3HD,http://117.148.179.140/PLTV/88888888/224/3221231528/index.m3u8 CCTV4HD,http://117.148.179.182/PLTV/88888888/224/3221231726/index.m3u8 -http://tlivectfree-cdn.ysp.cctv.cn/ysp/2000210102.m3u8 -2000210102 CCTV1 -2000203602 CCTV2 -2000203802 CCTV3 -2000204802 CCTV4 -2000205102 CCTV5 -2000204502 CCTV5+ -2000203302 CCTV6 -2000510002 CCTV7 -2000203902 CCTV8 -2000499402 CCTV9 -2000203502 CCTV10 -2000204102 CCTV11 -2000202602 CCTV12 -2000204602 CCTV13 -2000204402 CCTV14 -2000205002 CCTV15 -2000204202 CCTV17 -http://livepull.sxiptv.cn/live/shanxiweishihd.flv?txSecret=25df739ca569e9ffda085cd1fcb0d450&txTime=642ffedb http://livepull.sxiptv.cn/live/CCTV16.flv?txSecret=846891a0b4c9d03c564687f253f204ef&txTime=642fff59 http://livepull.sxiptv.cn/live/yuandiandaoshilive.flv?txSecret=e6a6ce10f126d0711db81f599acea249&txTime=642fffe1 http://livepull.sxiptv.cn/live/shanxi1taohd.flv?txSecret=bd93ffcf6c2c235565644ee59d6e34d0&txTime=64300053 @@ -43,4 +24,7 @@ http://livepull.sxiptv.cn/live/shanxi3.flv?txSecret=1931ff6a6e1cbb097b154f4e69ef http://livepull.sxiptv.cn/live/shanxi4.flv?txSecret=1cdebaab7fc3da516f36455d8f9f55f7&txTime=6430015f http://livepull.sxiptv.cn/live/shanxi5.flv?txSecret=60b4ad100e43a9b7bd5623e4aa4655af&txTime=64300173 http://livepull.sxiptv.cn/live/shanxi7.flv?txSecret=d624f28ab3d82252b14431213a64eb69&txTime=643001ed -http://livepull.sxiptv.cn/live/shanxi8.flv?txSecret=1f1a8557088aec75e0b8bb0eb929f694&txTime=643001fd \ No newline at end of file +http://livepull.sxiptv.cn/live/shanxi8.flv?txSecret=1f1a8557088aec75e0b8bb0eb929f694&txTime=643001fd + +凤凰中文 http://play-live.ifeng.com/live/06OLEGEGM4G.m3u8 +凤凰资讯 http://play-live.ifeng.com/live/06OLEEWQKN4.m3u8 \ No newline at end of file diff --git a/main.go b/main.go index 32f9cc5..ca75e63 100644 --- a/main.go +++ b/main.go @@ -1,8 +1,6 @@ package main import ( - "fmt" - "github.com/Hywfred/IPTVlist/checker" ) @@ -12,8 +10,6 @@ func main() { // _ = checker.ParseFromM3uAddr("https://cdn.jsdelivr.net/gh/hywfred/IPTVlist@latest/docs/tvlist.m3u") // checker.CheckAllSync(src_list, 16) - res := checker.ParseRange("http://113.200.58.252:9901/tsfile/live/[1000-2000]_1.m3u8") - for _, v := range res { - fmt.Println(v) - } + res := checker.ParseRange("http://117.148.179.155/PLTV/88888888/224/322123[0000-9999]/index.m3u8") + checker.CheckAllSync(res, 16) }