From 8b5e8fd072aaf46b3c1191bd601c47fbb7b0098a Mon Sep 17 00:00:00 2001 From: haiyangcui Date: Mon, 19 Oct 2020 22:15:50 +0200 Subject: [PATCH] =?UTF-8?q?IPTV=E6=B7=BB=E5=8A=A0group?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/IPTV.vue | 19 +- src/lib/dexie/dexie.js | 2 +- src/lib/dexie/initData.js | 855 +++++++++++++++++++++++++------------- 3 files changed, 588 insertions(+), 288 deletions(-) diff --git a/src/components/IPTV.vue b/src/components/IPTV.vue index df287ca..4939b42 100644 --- a/src/components/IPTV.vue +++ b/src/components/IPTV.vue @@ -142,7 +142,7 @@ export default { this.$message.success('已保存成功') } else { const arr = [...this.iptvList] - const str = JSON.stringify(arr, null, 4) + const str = JSON.stringify(arr, null, 2) fs.writeFileSync(result.filePath, str) this.$message.success('已保存成功') } @@ -161,6 +161,7 @@ export default { remote.dialog.showOpenDialog(options).then(result => { if (!result.canceled) { var docs = this.iptvList + var id = docs.length result.filePaths.forEach(file => { const parser = require('iptv-playlist-parser') const playlist = fs.readFileSync(file, { encoding: 'utf-8' }) @@ -168,9 +169,12 @@ export default { result.items.forEach(ele => { if (ele.name && ele.url && ele.url.includes('.m3u8')) { var doc = { + id: id, name: ele.name, - url: ele.url + url: ele.url, + group: this.determineGroup(ele) } + id += 1 docs.push(doc) } }) @@ -186,6 +190,17 @@ export default { } }) }, + determineGroup (ele) { + if (ele.group === null || ele.group === 'undefined') { + return ele.group + } else if (ele.name.toLowerCase().includes('cctv')) { + return '央视' + } else if (ele.name.includes('卫视')) { + return '卫视' + } else { + return '其他' + } + }, resetSitesEvent () { this.resetSites(defaultSites) }, diff --git a/src/lib/dexie/dexie.js b/src/lib/dexie/dexie.js index d83609d..43a239a 100644 --- a/src/lib/dexie/dexie.js +++ b/src/lib/dexie/dexie.js @@ -12,7 +12,7 @@ db.version(3).stores({ sites: '++id, key, name, json, xml, down, level', history: '++id, site, ids, name, type, year, index, time', mini: 'id, site, ids, name, index, time', - iptv: '++id, name, url' + iptv: '++id, name, url, group' }) db.on('populate', () => { diff --git a/src/lib/dexie/initData.js b/src/lib/dexie/initData.js index 0e58005..5fd8830 100644 --- a/src/lib/dexie/initData.js +++ b/src/lib/dexie/initData.js @@ -293,1429 +293,1714 @@ const getSite = (key) => { const iptv = [ { + id: 0, name: 'CCTV1-1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv1hd/4000000/mnf.m3u8', - id: 16912 + group: '央视' }, { + id: 1, name: 'CCTV-1HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv1hd/2300000/mnf.m3u8', - id: 16913 + group: '央视' }, { + id: 2, name: 'CCTV1 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225924/1.m3u8', - id: 16914 + group: '央视' }, { + id: 3, name: 'CCTV1 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226154/1.m3u8', - id: 16915 + group: '央视' }, { + id: 4, name: 'CCTV1 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226155/1.m3u8', - id: 16916 + group: '央视' }, { + id: 5, name: 'CCTV1 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226226/1.m3u8', - id: 16917 + group: '央视' }, { + id: 6, name: 'CCTV1 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226346/1.m3u8', - id: 16918 + group: '央视' }, { + id: 7, name: 'CCTV1 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226431/1.m3u8', - id: 16919 + group: '央视' }, { + id: 8, name: 'CCTV2 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226230/1.m3u8', - id: 16920 + group: '央视' }, { + id: 9, name: 'CCTV2 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226371/1.m3u8', - id: 16921 + group: '央视' }, { + id: 10, name: 'CCTV2 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226472/1.m3u8', - id: 16922 + group: '央视' }, { + id: 11, name: 'CCTV3 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226471/1.m3u8', - id: 16923 + group: '央视' }, { + id: 12, name: 'CCTV4 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226314/1.m3u8', - id: 16924 + group: '央视' }, { + id: 13, name: 'CCTV4 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226335/1.m3u8', - id: 16925 + group: '央视' }, { + id: 14, name: 'CCTV4 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226470/1.m3u8', - id: 16926 + group: '央视' }, { + id: 15, name: 'CCTV5 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226469/1.m3u8', - id: 16927 + group: '央视' }, { + id: 16, name: 'CCTV5+ HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226225/1.m3u8', - id: 16928 + group: '央视' }, { + id: 17, name: 'CCTV5+ CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226349/1.m3u8', - id: 16929 + group: '央视' }, { + id: 18, name: 'CCTV5+ CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226458/1.m3u8', - id: 16930 + group: '央视' }, { + id: 19, name: 'CCTV6 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226468/1.m3u8', - id: 16931 + group: '央视' }, { + id: 20, name: 'CCTV7 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226234/1.m3u8', - id: 16932 + group: '央视' }, { + id: 21, name: 'CCTV7 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226467/1.m3u8', - id: 16933 + group: '央视' }, { + id: 22, name: 'CCTV8 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226485/1.m3u8', - id: 16934 + group: '央视' }, { + id: 23, name: 'CCTV9 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226236/1.m3u8', - id: 16935 + group: '央视' }, { + id: 24, name: 'CCTV9 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226465/1.m3u8', - id: 16936 + group: '央视' }, { + id: 25, name: 'CCTV10 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226227/1.m3u8', - id: 16937 + group: '央视' }, { + id: 26, name: 'CCTV10 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226464/1.m3u8', - id: 16938 + group: '央视' }, { + id: 27, name: 'CCTV11 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226334/1.m3u8', - id: 16939 + group: '央视' }, { + id: 28, name: 'CCTV11 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226315/1.m3u8', - id: 16940 + group: '央视' }, { + id: 29, name: 'CCTV11 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226463/1.m3u8', - id: 16941 + group: '央视' }, { + id: 30, name: 'CCTV12 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226228/1.m3u8', - id: 16942 + group: '央视' }, { + id: 31, name: 'CCTV12 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226462/1.m3u8', - id: 16943 + group: '央视' }, { + id: 32, name: 'CCTV13 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226316/1.m3u8', - id: 16944 + group: '央视' }, { + id: 33, name: 'CCTV14 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226229/1.m3u8', - id: 16945 + group: '央视' }, { + id: 34, name: 'CCTV14 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226461/1.m3u8', - id: 16946 + group: '央视' }, { + id: 35, name: 'CCTV15 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226460/1.m3u8', - id: 16947 + group: '央视' }, { + id: 36, name: 'CCTV15 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226317/1.m3u8', - id: 16948 + group: '央视' }, { + id: 37, name: 'CCTV15 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226333/1.m3u8', - id: 16949 + group: '央视' }, { + id: 38, name: 'CCTV17 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226318/1.m3u8', - id: 16950 + group: '央视' }, { + id: 39, name: 'CCTV17 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226459/1.m3u8', - id: 16951 + group: '央视' }, { + id: 40, name: 'CCTV-4K', url: 'http://112.17.40.12/PLTV/88888888/224/3221226758/1.m3u8', - id: 16952 + group: '央视' }, { + id: 41, name: 'CCTV-4K', url: 'http://112.17.40.140/PLTV/88888888/224/3221226758/index.m3u8', - id: 16953 + group: '央视' }, { + id: 42, name: 'CCTV-4K', url: 'http://39.134.176.148/PLTV/88888888/224/3221226758/index.m3u8', - id: 16954 + group: '央视' }, { + id: 43, name: 'CCTV-4K', url: 'http://117.148.187.83/PLTV/88888888/224/3221226758/index.m3u8', - id: 16955 + group: '央视' }, { + id: 44, name: '北京卫视1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/bjwshd/4000000/mnf.m3u8', - id: 16956 + group: '卫视' }, { + id: 45, name: '江苏卫视1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jswshd/4000000/mnf.m3u8', - id: 16957 + group: '卫视' }, { + id: 46, name: '浙江卫视1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/zjwshd/4000000/mnf.m3u8', - id: 16958 + group: '卫视' }, { + id: 47, name: '深圳卫视1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/szwshd/4000000/mnf.m3u8', - id: 16959 + group: '卫视' }, { + id: 48, name: '山东卫视1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/sdwshd/4000000/mnf.m3u8', - id: 16960 + group: '卫视' }, { + id: 49, name: '湖北卫视1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hbwshd/4000000/mnf.m3u8', - id: 16961 + group: '卫视' }, { + id: 50, name: '广东卫视1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/gdwshd/4000000/mnf.m3u8', - id: 16962 + group: '卫视' }, { + id: 51, name: '东方卫视1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hddfws/4000000/mnf.m3u8', - id: 16963 + group: '卫视' }, { + id: 52, name: '黑龙江卫视1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hljwshd/4000000/mnf.m3u8', - id: 16964 + group: '卫视' }, { + id: 53, name: '五星体育1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/ssty/4000000/mnf.m3u8', - id: 16965 + group: '其他' }, { + id: 54, name: '北京卫视高清', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/bjwshd/1300000/mnf.m3u8', - id: 16966 + group: '卫视' }, { + id: 55, name: '东方卫视高清', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hddfws/1300000/mnf.m3u8', - id: 16967 + group: '卫视' }, { + id: 56, name: '浙江卫视高清', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/zjwshd/1300000/mnf.m3u8', - id: 16968 + group: '卫视' }, { + id: 57, name: '湖北卫视高清', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hbwshd/1300000/mnf.m3u8', - id: 16969 + group: '卫视' }, { + id: 58, name: '湖南卫视高清', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hnwshd/1300000/mnf.m3u8', - id: 16970 + group: '卫视' }, { + id: 59, name: '山东卫视高清', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/sdwshd/1300000/mnf.m3u8', - id: 16971 + group: '卫视' }, { + id: 60, name: '江苏卫视高清', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jswshd/1300000/mnf.m3u8', - id: 16972 + group: '卫视' }, { + id: 61, name: '深圳卫视高清', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/szwshd/1300000/mnf.m3u8', - id: 16973 + group: '卫视' }, { + id: 62, name: '广东卫视高清', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/gdwshd/1300000/mnf.m3u8', - id: 16974 + group: '卫视' }, { + id: 63, name: '黑龙江卫视高清', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hljwshd/1300000/mnf.m3u8', - id: 16975 + group: '卫视' }, { + id: 64, name: '湖南卫视HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hnwshd/2300000/mnf.m3u8', - id: 16976 + group: '卫视' }, { + id: 65, name: '北京卫视HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/bjwshd/2300000/mnf.m3u8', - id: 16977 + group: '卫视' }, { + id: 66, name: '江苏卫视HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jswshd/2300000/mnf.m3u8', - id: 16978 + group: '卫视' }, { + id: 67, name: '浙江卫视HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/zjwshd/2300000/mnf.m3u8', - id: 16979 + group: '卫视' }, { + id: 68, name: '深圳卫视HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/szwshd/2300000/mnf.m3u8', - id: 16980 + group: '卫视' }, { + id: 69, name: '山东卫视HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/sdwshd/2300000/mnf.m3u8', - id: 16981 + group: '卫视' }, { + id: 70, name: '湖北卫视HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hbwshd/2300000/mnf.m3u8', - id: 16982 + group: '卫视' }, { + id: 71, name: '广东卫视HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/gdwshd/2300000/mnf.m3u8', - id: 16983 + group: '卫视' }, { + id: 72, name: '黑龙江卫视HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hljwshd/2300000/mnf.m3u8', - id: 16984 + group: '卫视' }, { + id: 73, name: '五星体育HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/ssty/2300000/mnf.m3u8', - id: 16985 + group: '其他' }, { + id: 74, name: '中国教育1 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226494/1.m3u8', - id: 16986 + group: '其他' }, { + id: 75, name: '东南卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226406/1.m3u8', - id: 16987 + group: '卫视' }, { + id: 76, name: '东南卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226496/1.m3u8', - id: 16988 + group: '卫视' }, { + id: 77, name: '东方卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226237/1.m3u8', - id: 16989 + group: '卫视' }, { + id: 78, name: '东方卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226364/1.m3u8', - id: 16990 + group: '卫视' }, { + id: 79, name: '东方卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226505/1.m3u8', - id: 16991 + group: '卫视' }, { + id: 80, name: '北京卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226224/1.m3u8', - id: 16992 + group: '卫视' }, { + id: 81, name: '北京卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226367/1.m3u8', - id: 16993 + group: '卫视' }, { + id: 82, name: '北京卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226441/1.m3u8', - id: 16994 + group: '卫视' }, { + id: 83, name: '天津卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226246/1.m3u8', - id: 16995 + group: '卫视' }, { + id: 84, name: '天津卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226502/1.m3u8', - id: 16996 + group: '卫视' }, { + id: 85, name: '安徽卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226223/1.m3u8', - id: 16997 + group: '卫视' }, { + id: 86, name: '安徽卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226499/1.m3u8', - id: 16998 + group: '卫视' }, { + id: 87, name: '山东卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225894/1.m3u8', - id: 16999 + group: '卫视' }, { + id: 88, name: '山东卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226244/1.m3u8', - id: 17000 + group: '卫视' }, { + id: 89, name: '山东卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226308/1.m3u8', - id: 17001 + group: '卫视' }, { + id: 90, name: '山东卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226501/1.m3u8', - id: 17002 + group: '卫视' }, { + id: 91, name: '广东卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225878/1.m3u8', - id: 17003 + group: '卫视' }, { + id: 92, name: '广东卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226238/1.m3u8', - id: 17004 + group: '卫视' }, { + id: 93, name: '广东卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226508/1.m3u8', - id: 17005 + group: '卫视' }, { + id: 94, name: '江苏卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226242/1.m3u8', - id: 17006 + group: '卫视' }, { + id: 95, name: '江苏卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226366/1.m3u8', - id: 17007 + group: '卫视' }, { + id: 96, name: '江苏卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226506/1.m3u8', - id: 17008 + group: '卫视' }, { + id: 97, name: '江西卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226243/1.m3u8', - id: 17009 + group: '卫视' }, { + id: 98, name: '河北卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226507/1.m3u8', - id: 17010 + group: '卫视' }, { + id: 99, name: '浙江卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226247/1.m3u8', - id: 17011 + group: '卫视' }, { + id: 100, name: '浙江卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226365/1.m3u8', - id: 17012 + group: '卫视' }, { + id: 101, name: '浙江卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226504/1.m3u8', - id: 17013 + group: '卫视' }, { + id: 102, name: '深圳卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225897/1.m3u8', - id: 17014 + group: '卫视' }, { + id: 103, name: '深圳卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226245/1.m3u8', - id: 17015 + group: '卫视' }, { + id: 104, name: '深圳卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226495/1.m3u8', - id: 17016 + group: '卫视' }, { + id: 105, name: '湖北卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226240/1.m3u8', - id: 17017 + group: '卫视' }, { + id: 106, name: '湖北卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226310/1.m3u8', - id: 17018 + group: '卫视' }, { + id: 107, name: '湖北卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226503/1.m3u8', - id: 17019 + group: '卫视' }, { + id: 108, name: '湖南卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226241/1.m3u8', - id: 17020 + group: '卫视' }, { + id: 109, name: '湖南卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226509/1.m3u8', - id: 17021 + group: '卫视' }, { + id: 110, name: '贵州卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226497/1.m3u8', - id: 17022 + group: '卫视' }, { + id: 111, name: '辽宁卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226500/1.m3u8', - id: 17023 + group: '卫视' }, { + id: 112, name: '黑龙江卫视 HD', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226239/1.m3u8', - id: 17024 + group: '卫视' }, { + id: 113, name: '黑龙江卫视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226498/1.m3u8', - id: 17025 + group: '卫视' }, { + id: 114, name: '北京冬奥纪实 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226438/1.m3u8', - id: 17026 + group: '其他' }, { + id: 115, name: '北京影视 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226486/1.m3u8', - id: 17027 + group: '其他' }, { + id: 116, name: '北京文艺 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226440/1.m3u8', - id: 17028 + group: '其他' }, { + id: 117, name: '北京新闻 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226437/1.m3u8', - id: 17029 + group: '其他' }, { + id: 118, name: '安徽卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/ahws/1300000/mnf.m3u8', - id: 17030 + group: '卫视' }, { + id: 119, name: '兵团卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/btws/1300000/mnf.m3u8', - id: 17031 + group: '卫视' }, { + id: 120, name: '甘肃卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/gsws/1300000/mnf.m3u8', - id: 17032 + group: '卫视' }, { + id: 121, name: '陕西卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/sxws/1300000/mnf.m3u8', - id: 17033 + group: '卫视' }, { + id: 122, name: '山西卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/shanxiws/1300000/mnf.m3u8', - id: 17034 + group: '卫视' }, { + id: 123, name: '吉林卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jlws/1300000/mnf.m3u8', - id: 17035 + group: '卫视' }, { + id: 124, name: '河北卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hbws/1300000/mnf.m3u8', - id: 17036 + group: '卫视' }, { + id: 125, name: '四川卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/scws/1300000/mnf.m3u8', - id: 17037 + group: '卫视' }, { + id: 126, name: '贵州卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/gzws/1300000/mnf.m3u8', - id: 17038 + group: '卫视' }, { + id: 127, name: '云南卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/ynws/1300000/mnf.m3u8', - id: 17039 + group: '卫视' }, { + id: 128, name: '辽宁卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/lnws/1300000/mnf.m3u8', - id: 17040 + group: '卫视' }, { + id: 129, name: '旅游卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/lyws/1300000/mnf.m3u8', - id: 17041 + group: '卫视' }, { + id: 130, name: '东南卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/dnws/1300000/mnf.m3u8', - id: 17042 + group: '卫视' }, { + id: 131, name: '重庆卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/cqws/1300000/mnf.m3u8', - id: 17043 + group: '卫视' }, { + id: 132, name: '广西卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/gxws/1300000/mnf.m3u8', - id: 17044 + group: '卫视' }, { + id: 133, name: '青海卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/qhws/1300000/mnf.m3u8', - id: 17045 + group: '卫视' }, { + id: 134, name: '江西卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jxws/1300000/mnf.m3u8', - id: 17046 + group: '卫视' }, { + id: 135, name: '内蒙古卫视', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/nmgws/1300000/mnf.m3u8', - id: 17047 + group: '卫视' }, { + id: 136, name: '天津卫视', url: 'http://112.17.40.140/PLTV/88888888/224/3221226412/index.m3u8', - id: 17048 + group: '卫视' }, { + id: 137, name: '河北卫视超清1', url: 'http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225840/index.m3u8', - id: 17049 + group: '卫视' }, { + id: 138, name: '湖南卫视', url: 'http://112.17.40.140/PLTV/88888888/224/3221226553/index.m3u8', - id: 17050 + group: '卫视' }, { + id: 139, name: '浙江卫视', url: 'http://223.110.243.173/PLTV/3/224/3221227215/index.m3u8', - id: 17051 + group: '卫视' }, { + id: 140, name: '江苏卫视', url: 'http://112.17.40.140/PLTV/88888888/224/3221226414/index.m3u8', - id: 17052 + group: '卫视' }, { + id: 141, name: '东南卫视', url: 'http://117.169.124.37:6610/ysten-businessmobile/live/dongnanstv/yst.m3u8', - id: 17053 + group: '卫视' }, { + id: 142, name: '湖北卫视', url: 'http://223.110.243.171/PLTV/3/224/3221227211/index.m3u8', - id: 17054 + group: '卫视' }, { + id: 143, name: '广东卫视', url: 'http://112.17.40.140/PLTV/88888888/224/3221226225/index.m3u8', - id: 17055 + group: '卫视' }, { + id: 144, name: '深圳卫视', url: 'http://223.110.243.171/PLTV/3/224/3221227217/index.m3u8', - id: 17056 + group: '卫视' }, { + id: 145, name: '辽宁卫视', url: 'http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221227410/index.m3u8', - id: 17057 + group: '卫视' }, { + id: 146, name: '龙江卫视', url: 'http://112.17.40.140/PLTV/88888888/224/3221226555/index.m3u8', - id: 17058 + group: '卫视' }, { + id: 147, name: '江西卫视', url: 'http://112.17.40.140/PLTV/88888888/224/3221226557/index.m3u8', - id: 17059 + group: '卫视' }, { + id: 148, name: '四川卫视', url: 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221227006/1.m3u8', - id: 17060 + group: '卫视' }, { + id: 149, name: '重庆卫视', url: 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225949/1.m3u8', - id: 17061 + group: '卫视' }, { + id: 150, name: '重庆卫视', url: 'http://ivi.bupt.edu.cn/hls/cqhd.m3u8', - id: 17062 + group: '卫视' }, { + id: 151, name: '河南卫视超清2', url: 'http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221225815/index.m3u8', - id: 17063 + group: '卫视' }, { + id: 152, name: '贵州卫视超清2', url: 'http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225787/index.m3u8', - id: 17064 + group: '卫视' }, { + id: 153, name: '海南卫视', url: 'http://112.50.243.8/PLTV/88888888/224/3221225855/1.m3u8', - id: 17065 + group: '卫视' }, { + id: 154, name: '云南卫视超清1', url: 'http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225838/index.m3u8', - id: 17066 + group: '卫视' }, { + id: 155, name: '宁夏卫视超清1', url: 'http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225842/index.m3u8', - id: 17067 + group: '卫视' }, { + id: 156, name: '内蒙卫视超清1', url: 'http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221225836/index.m3u8', - id: 17068 + group: '卫视' }, { + id: 157, name: '广西卫视', url: 'http://112.50.243.8/PLTV/88888888/224/3221225836/1.m3u8', - id: 17069 + group: '卫视' }, { + id: 158, name: '五星体育HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/ssty/1300000/mnf.m3u8', - id: 17070 + group: '其他' }, { + id: 159, name: '北京卡酷少儿 CQ', url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226558/1.m3u8', - id: 17071 + group: '其他' }, { + id: 160, name: '法治天地HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/fztd/1300000/mnf.m3u8', - id: 17072 + group: '其他' }, { + id: 161, name: '欢笑剧场HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hxjc/1300000/mnf.m3u8', - id: 17073 + group: '其他' }, { + id: 162, name: '都市剧场HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/dsjc/1300000/mnf.m3u8', - id: 17074 + group: '其他' }, { + id: 163, name: '七彩戏剧HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/qcxj/1300000/mnf.m3u8', - id: 17075 + group: '其他' }, { + id: 164, name: '动漫秀场HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/dmxc/1300000/mnf.m3u8', - id: 17076 + group: '其他' }, { + id: 165, name: '劲爆体育HD', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jbty/1300000/mnf.m3u8', - id: 17077 + group: '其他' }, { + id: 166, name: '极速汽车', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jsqc/1300000/mnf.m3u8', - id: 17078 + group: '其他' }, { + id: 167, name: '游戏风云', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/yxfy/1300000/mnf.m3u8', - id: 17079 + group: '其他' }, { + id: 168, name: '金鹰卡通', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jykt/1300000/mnf.m3u8', - id: 17080 + group: '其他' }, { + id: 169, name: '炫动卡通', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/xdkt/1300000/mnf.m3u8', - id: 17081 + group: '其他' }, { + id: 170, name: '嘉佳卡通', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jjkt/1300000/mnf.m3u8', - id: 17082 + group: '其他' }, { + id: 171, name: '星尚', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/shss/1300000/mnf.m3u8', - id: 17083 + group: '其他' }, { + id: 172, name: '上海纪实', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jspd/1300000/mnf.m3u8', - id: 17084 + group: '其他' }, { + id: 173, name: '上海新闻', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/xwzh/1300000/mnf.m3u8', - id: 17085 + group: '其他' }, { + id: 174, name: '上海娱乐', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/ylpd/1300000/mnf.m3u8', - id: 17086 + group: '其他' }, { + id: 175, name: '上海电视剧', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/dsjpd/1300000/mnf.m3u8', - id: 17087 + group: '其他' }, { + id: 176, name: '上海ICS外语频道', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/wypd/1300000/mnf.m3u8', - id: 17088 + group: '其他' }, { + id: 177, name: '上海艺术人文', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/ysrw/1300000/mnf.m3u8', - id: 17089 + group: '其他' }, { + id: 178, name: '东方财经浦东', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/dfcj/1300000/mnf.m3u8', - id: 17090 + group: '其他' }, { + id: 179, name: '第一财经', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/dycj/1300000/mnf.m3u8', - id: 17091 + group: '其他' }, { + id: 180, name: '直播1-1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba1/4000000/mnf.m3u8', - id: 17092 + group: '其他' }, { + id: 181, name: '直播2-1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba2/4000000/mnf.m3u8', - id: 17093 + group: '其他' }, { + id: 182, name: '直播3-1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba3/4000000/mnf.m3u8', - id: 17094 + group: '其他' }, { + id: 183, name: '直播4-1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba4/4000000/mnf.m3u8', - id: 17095 + group: '其他' }, { + id: 184, name: '直播5-1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba5/4000000/mnf.m3u8', - id: 17096 + group: '其他' }, { + id: 185, name: '直播6-1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba6/4000000/mnf.m3u8', - id: 17097 + group: '其他' }, { + id: 186, name: '直播7-1080P', url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba7/4000000/mnf.m3u8', - id: 17098 + group: '其他' }, { + id: 187, name: '纯享4K源码1', url: 'http://112.50.243.8/PLTV/88888888/224/3221226825/1.m3u8', - id: 17099 + group: '其他' }, { + id: 188, name: '百事4K频道', url: 'http://112.17.40.145/PLTV/88888888/224/3221226718/index.m3u8', - id: 17100 + group: '其他' }, { + id: 189, name: '凤凰资讯', url: 'http://112.17.40.140/PLTV/88888888/224/3221226491/index.m3u8', - id: 17101 + group: '其他' }, { + id: 190, name: '凤凰资讯', url: 'http://117.169.124.37:6610/ysten-businessmobile/live/fhzixun/1.m3u8', - id: 17102 + group: '其他' }, { + id: 191, name: '凤凰中文', url: 'http://117.169.124.37:6610/ysten-businessmobile/live/fhchinese/1.m3u8', - id: 17103 + group: '其他' }, { + id: 192, name: '凤凰中文', url: 'http://117.169.120.138:8080/live/fhchinese/index.m3u8', - id: 17104 + group: '其他' }, { + id: 193, name: '高清影视1台', url: 'http://112.50.243.8/PLTV/88888888/224/3221226736/1.m3u8', - id: 17105 + group: '其他' }, { + id: 194, name: '高清影视2台', url: 'http://112.50.243.8/PLTV/88888888/224/3221225881/1.m3u8', - id: 17106 + group: '其他' }, { + id: 195, name: '高清影视3台', url: 'http://112.50.243.8/PLTV/88888888/224/3221226708/1.m3u8', - id: 17107 + group: '其他' }, { + id: 196, name: '高清影视4台', url: 'http://112.50.243.8/PLTV/88888888/224/3221226712/1.m3u8', - id: 17108 + group: '其他' }, { + id: 197, name: '高清影视5台', url: 'http://112.50.243.8/PLTV/88888888/224/3221225893/1.m3u8', - id: 17109 + group: '其他' }, { + id: 198, name: '高清影视6台', url: 'http://112.50.243.8/PLTV/88888888/224/3221226692/1.m3u8', - id: 17110 + group: '其他' }, { + id: 199, name: '高清影视7台', url: 'http://112.50.243.8/PLTV/88888888/224/3221226754/1.m3u8', - id: 17111 + group: '其他' }, { + id: 200, name: '高清影视8台', url: 'http://112.17.40.145/PLTV/88888888/224/3221226608/index.m3u8', - id: 17112 + group: '其他' }, { + id: 201, name: '高清影视9台', url: 'http://112.17.40.145/PLTV/88888888/224/3221226606/index.m3u8', - id: 17113 + group: '其他' }, { + id: 202, name: '高清影视10台', url: 'http://112.17.40.145/PLTV/88888888/224/3221226360/index.m3u8', - id: 17114 + group: '其他' }, { + id: 203, name: '高清动画11台', url: 'http://112.50.243.8/PLTV/88888888/224/3221226732/1.m3u8', - id: 17115 + group: '其他' }, { + id: 204, name: '高清动画12台', url: 'http://112.50.243.8/PLTV/88888888/224/3221226741/1.m3u8', - id: 17116 + group: '其他' }, { + id: 205, name: '高清动漫13台', url: 'http://112.50.243.8/PLTV/88888888/224/3221226743/1.m3u8', - id: 17117 + group: '其他' }, { + id: 206, name: '高清影视14台', url: 'http://ivi.bupt.edu.cn/hls/chchd.m3u8', - id: 17118 + group: '其他' }, { + id: 207, name: '北京纪实高清', url: 'http://112.50.243.8/PLTV/88888888/224/3221225944/1.m3u8', - id: 17119 + group: '其他' }, { + id: 208, name: '峨眉电影高清', url: 'http://scgctvshow.sctv.com/hdlive/emei/1.m3u8', - id: 17120 + group: '其他' }, { + id: 209, name: '欢笑剧场高清', url: 'http://112.50.243.8/PLTV/88888888/224/3221226729/1.m3u8', - id: 17121 + group: '其他' }, { + id: 210, name: '纪实频道高清', url: 'http://112.50.243.8/PLTV/88888888/224/3221225946/1.m3u8', - id: 17122 + group: '其他' }, { + id: 211, name: '极速汽车高清', url: 'http://112.50.243.8/PLTV/88888888/224/3221226140/1.m3u8', - id: 17123 + group: '其他' }, { + id: 212, name: '动漫秀场高清', url: 'http://112.50.243.8/PLTV/88888888/224/3221226141/1.m3u8', - id: 17124 + group: '其他' }, { + id: 213, name: '求索纪录', url: 'http://112.17.40.145/PLTV/88888888/224/3221226610/index.m3u8', - id: 17125 + group: '其他' }, { + id: 214, name: '求索科学', url: 'http://125.210.152.18:9090/live/QSKX_1200.m3u8', - id: 17126 + group: '其他' }, { + id: 215, name: '求索动物', url: 'http://125.210.152.18:9090/live/QSDW_1200.m3u8', - id: 17127 + group: '其他' }, { + id: 216, name: '求索生活', url: 'http://125.210.152.18:9090/live/QSSH_1200.m3u8', - id: 17128 + group: '其他' }, { + id: 217, name: '日本天気预报', url: 'http://movie.mcas.jp/mcas/wn1_2/master.m3u8', - id: 17129 + group: '其他' }, { + id: 218, name: '奥林匹克高清', url: 'http://ott-live.olympicchannel.com/out/u/OC1_2.m3u8?fluxustv.m3u8', - id: 17130 + group: '其他' }, { + id: 219, name: '奥铃匹克高清', url: 'http://ott-live.olympicchannel.com/out/u/OC1_1.m3u8?fluxustv.m3u8', - id: 17131 + group: '其他' }, { + id: 220, name: '爱青春', url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230130/index.m3u8', - id: 17132 + group: '其他' }, { + id: 221, name: '爱家庭', url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230118/index.m3u8', - id: 17133 + group: '其他' }, { + id: 222, name: '爱探索', url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230112/index.m3u8', - id: 17134 + group: '其他' }, { + id: 223, name: '爱科学', url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230106/index.m3u8', - id: 17135 + group: '其他' }, { + id: 224, name: '爱猎奇', url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230097/index.m3u8', - id: 17136 + group: '其他' }, { + id: 225, name: '爱谍战', url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230092/index.m3u8', - id: 17137 + group: '其他' }, { + id: 226, name: '爱娱乐', url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230077/index.m3u8', - id: 17138 + group: '其他' }, { + id: 227, name: '爱旅行', url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230052/index.m3u8', - id: 17139 + group: '其他' }, { + id: 228, name: '爱怀旧', url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230049/index.m3u8', - id: 17140 + group: '其他' }, { + id: 229, name: '爱体育', url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230034/index.m3u8', - id: 17141 + group: '其他' }, { + id: 230, name: '爱赛车', url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230032/index.m3u8', - id: 17142 + group: '其他' }, { + id: 231, name: '北京少儿', url: 'http://ivi.bupt.edu.cn/hls/btv10.m3u8', - id: 17143 + group: '其他' }, { + id: 232, name: '动漫电影', url: 'http://112.17.40.140/PLTV/88888888/224/3221226178/index.m3u8', - id: 17144 + group: '其他' }, { + id: 233, name: '重庆少儿', url: 'http://219.153.252.50/PLTV/88888888/224/3221225646/1.m3u8', - id: 17145 + group: '其他' }, { + id: 234, name: '嘉佳卡通', url: 'http://112.17.40.140/PLTV/88888888/224/3221226461/index.m3u8', - id: 17146 + group: '其他' }, { + id: 235, name: '耀才财经', url: 'http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8', - id: 17147 + group: '其他' }, { + id: 236, name: '亚旅卫视', url: 'http://hls.jingchangkan.tv/jingchangkan/156722438_0HaM/index.m3u8', - id: 17148 + group: '卫视' }, { + id: 237, name: '信吉电视', url: 'http://220.130.241.203:1935/sjtv/livestream_360p/playlist.m3u8', - id: 17149 + group: '其他' }, { + id: 238, name: '唯心電視', url: 'http://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/chunklist_w1177047531.m3u8', - id: 17150 + group: '其他' }, { + id: 239, name: '百事通台', url: 'http://112.17.40.145/PLTV/88888888/224/3221226596/index.m3u8', - id: 17151 + group: '其他' }, { + id: 240, name: 'HBO2台', url: 'http://161.0.157.5/PLTV/88888888/224/3221227026/03.m3u8?fluxustv.m3u8', - id: 17152 + group: '其他' }, { + id: 241, name: '点掌财经', url: 'http://cclive2.aniu.tv/live/anzb.m3u8', - id: 17153 + group: '其他' }, { + id: 242, name: '日本NHK华语', url: 'https://nhkw-zh-hlscomp.akamaized.net/ixxemlzk1vqvy44o/playlist.m3u8', - id: 17154 + group: '其他' }, { + id: 243, name: '日本NHK英语', url: 'https://nhkwlive-ojp.akamaized.net/hls/live/2003459/nhkwlive-ojp/index_1M.m3u8', - id: 17155 + group: '其他' }, { + id: 244, name: '日本Japan News 24', url: 'http://www.news24.jp/livestream/index.m3u8', - id: 17156 + group: '其他' }, { + id: 245, name: '日本JapanetChannelDX', url: 'http://bcsecurelivehls-i.akamaihd.net/hls/live/265320/5043843989001/140130JTDX/index_1200.m3u8', - id: 17157 + group: '其他' }, { + id: 246, name: '日本QVC', url: 'http://cdn-live1.qvc.jp/iPhone/800/800.m3u8', - id: 17158 + group: '其他' }, { + id: 247, name: '韩国EBS 第一频道', url: 'http://ebsonairios.ebs.co.kr/groundwavetablet500k/tablet500k/playlist.m3u8', - id: 17159 + group: '其他' }, { + id: 248, name: '韩国EBS 少儿频道', url: 'http://ebsonairios.ebs.co.kr/ebsutablet500k/tablet500k/playlist.m3u8', - id: 17160 + group: '其他' }, { + id: 249, name: '韩国KCTV', url: 'http://119.77.96.184:1935/chn21/chn21/chunklist_w252131137.m3u8', - id: 17161 + group: '其他' }, { + id: 250, name: '朝鲜中央台', url: 'http://119.77.96.184:1935/chn05/chn05/chunklist_w644291506.m3u8', - id: 17162 + group: '其他' }, { + id: 251, name: '韩国KTV 韩国电视', url: 'http://218.38.152.31:1935/klive/klive.stream/playlist.m3u8', - id: 17163 + group: '其他' }, { + id: 252, name: '韩国EBS 儿童频道', url: 'http://ebsonairios.ebs.co.kr/ebsutablet500k/_definst_/tablet500k/chunklist_w1965791004.m3u8', - id: 17164 + group: '其他' }, { + id: 253, name: '韩国阿里郎WORLDworld', url: 'http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8', - id: 17165 + group: '其他' }, { + id: 254, name: '韩国阿里郎WORLD', url: 'http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch/master.m3u8', - id: 17166 + group: '其他' }, { + id: 255, name: 'KOREA YTN Science', url: 'http://slive.sciencetv.kr:1935/science/yslive_20140419_1/playlist.m3u8', - id: 17167 + group: '其他' }, { + id: 256, name: 'Luxury World', url: 'http://nano.teleservice.su:8080/hls/luxury.m3u8', - id: 17168 + group: '其他' }, { + id: 257, name: '韩国BBS佛教广播', url: 'http://bbstv.clouducs.com:1935/bbstv-live/livestream/chunklist_w1403706733.m3u8', - id: 17169 + group: '其他' }, { + id: 258, name: 'CPAC', url: 'http://bcoveliveios-i.akamaihd.net/hls/live/248519/1242843915001_1/master.m3u8', - id: 17170 + group: '其他' }, { + id: 259, name: '中国环球', url: 'http://live.cgtn.com/1000/prog_index.m3u8', - id: 17171 + group: '其他' }, { + id: 260, name: '狗狗宠物', url: 'http://video.blivenyc.com/broadcast/prod/2061/22/file-3192k.m3u8', - id: 17172 + group: '其他' }, { + id: 261, name: '法国时尚', url: 'http://lb.streaming.sk/fashiontv/stream/chunklist_w1702070444.m3u8', - id: 17173 + group: '其他' }, { + id: 262, name: '亚洲新闻', url: 'http://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_4.m3u8', - id: 17174 + group: '其他' }, { + id: 263, name: '越南人民报', url: 'http://vietcago.net/vstv/thnd.m3u8', - id: 17175 + group: '其他' }, { + id: 264, name: '印度音乐电视', url: 'http://104.237.60.234/live/gabruutv.m3u8?dsjtv.m3u8', - id: 17176 + group: '其他' }, { + id: 265, name: '法国第五世界台', url: 'http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877-b/v3plusinfo247hls/v3plusinfo247hls_1_1.m3u8', - id: 17177 + group: '其他' }, { + id: 266, name: '俄罗斯HD时尚频道', url: 'http://95.67.47.115/hls/hdfashion_ua_hi/index.m3u8', - id: 17178 + group: '其他' }, { + id: 267, name: '乌克兰M2 音乐频道', url: 'http://live.m2.tv/hls3/stream.m3u8', - id: 17179 + group: '其他' }, { + id: 268, name: '西班牙中国环球', url: 'http://livees.cgtn.com/1000e/prog_index.m3u8', - id: 17180 + group: '其他' }, { + id: 269, name: '意大利意大利电台', url: 'http://radioitaliatv-lh.akamaihd.net/i/radioitaliatv_1@329645/index_720x480_av-p.m3u8', - id: 17181 + group: '其他' }, { + id: 270, name: '意大利V2 音乐频道', url: 'http://de1se01.v2beat.live/playlist.m3u8', - id: 17182 + group: '其他' }, { + id: 271, name: '墨西哥墨西哥电视', url: 'http://bcoveliveios-i.akamaihd.net/hls/live/201661/57828478001/milenio_center_512k@51752.m3u8', - id: 17183 + group: '其他' }, { + id: 272, name: '音乐20TV', url: 'http://m2otv-lh.akamaihd.net/i/m2oTv_1@186074/index_600_av-p.m3u8', - id: 17184 + group: '其他' }, { + id: 273, name: '当红MTV', url: 'http://unilivemtveu-lh.akamaihd.net/i/mtvno_1@346424/index_3500_av-b.m3u8', - id: 17185 + group: '其他' }, { + id: 274, name: '酷酷频道', url: 'http://edge1.tikilive.com:1935/unrestricted_tikilive/25947/amlst:NWKlw6jwyXpz/chunklist_w981409619_b1105254.m3u8?fluxustv.m3u8', - id: 17186 + group: '其他' }, { + id: 275, name: '红牛电视', url: 'http://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master_1660.m3u8', - id: 17187 + group: '其他' }, { + id: 276, name: 'NBC电视', url: 'http://161.0.157.51/PLTV/88888888/224/3221227040/index.m3u8?fluxustv.m3u8', - id: 17188 + group: '其他' }, { + id: 277, name: 'Jewelry电视', url: 'http://wowzaprod134-i.akamaihd.net/hls/live/577814/ccddaf02/playlist.m3u8', - id: 17189 + group: '其他' }, { + id: 278, name: 'Darcizzle电视', url: 'http://30a-tv.com/darcizzle.m3u8', - id: 17190 + group: '其他' }, { + id: 279, name: 'CBS新闻', url: 'http://cbsnewshd-lh.akamaihd.net/i/CBSNHD_7@199302/master.m3u8', - id: 17191 + group: '其他' }, { + id: 280, name: '美国Deutsche Welle', url: 'http://dwstream4-lh.akamaihd.net/i/dwstream4_live@131329/master.m3u8', - id: 17192 + group: '其他' }, { + id: 281, name: '美国360 North', url: 'http://wowzaprod3-i.akamaihd.net/hls/live/252236/2147483647_360north_247/playlist.m3u8', - id: 17193 + group: '其他' }, { + id: 282, name: '美国Fox News Talk Radio', url: 'http://fnurtmp-f.akamaihd.net/i/FNRADIO_1@92141/master.m3u8', - id: 17194 + group: '其他' }, { + id: 283, name: '日本cgntv', url: 'http://cgntv-glive.ofsdelivery.net/live/_definst_/cgntv_jp/playlist.m3u8', - id: 17195 + group: '其他' }, { + id: 284, name: '日本Japanet Channel DX', url: 'http://bcsecurelivehls-i.akamaihd.net/hls/live/265320/5043843989001/140130JTDX/index_600.m3u8', - id: 17196 + group: '其他' } ]